Install
$ agentstack add skill-rune-kit-rune-scope-guard ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
scope-guard
Purpose
Passive scope monitor. Reads the original task plan, inspects current git diff to see what files have changed, and compares them against the planned scope. Flags any unplanned additions as scope creep with specific file-level detail.
Called By (inbound)
cook(L1): Phase 6.6 scope drift detection when files touched > plannedteam(L1): after each parallel workstream completes, before mergerescue(L1): during safeguard phase to detect unplanned changesplan(L2): optional scope validation after plan acceptance
Calls (outbound)
None — pure L3 monitoring utility.
Executable Instructions
Step 1: Load Plan
Read the original task/plan from one of these sources (check in order):
- TodoWrite task list — read active todos as the planned scope
.rune/progress.md— useReadonD:\Project\.rune\progress.md(or equivalent path)- If neither exists, ask the calling skill to provide the plan as a text description
Extract from the plan:
- List of files/directories expected to be changed
- List of features/tasks planned
- Any explicitly out-of-scope items mentioned
Step 2: Assess Current Work
Run Bash with git diff to see what has actually changed:
git diff --stat HEAD
Also check staged changes:
git diff --stat --cached
Parse the output to extract the list of changed files.
Step 3: Compare
For each changed file, determine if it is:
- IN_SCOPE: file matches a planned file/directory or is a natural dependency of planned work
- OUTOFSCOPE: file is not mentioned in the plan and is not a direct dependency
Rules for "natural dependency" (counts as IN_SCOPE):
- Test files for planned source files
- Config files modified as a side-effect of adding a planned feature
- Lock files (package-lock.json, yarn.lock, Cargo.lock) — always IN_SCOPE
Rules for OUTOFSCOPE (counts as creep):
- New features not mentioned in the plan
- Refactoring of files unrelated to the task
- New dependencies added without a planned feature requiring them
- Documentation files for unplanned features
Step 4: Quantify Drift
Compute Drift Percentage — the ratio of out-of-scope changes to total changes:
drift_pct = (out_of_scope_files / total_files_changed) × 100
Classify drift into a 4-tier system:
| Drift % | Level | Status | Action | |---------|-------|--------|--------| | 50% | OUT OF CONTROL | OUT_OF_CONTROL | Block. More unplanned work than planned. Escalate to orchestrator. Require re-alignment before ANY further work. |
Edge case: If total planned files = 0 (no plan loaded), use file count thresholds instead:
- 0 out-of-scope → ON_TRACK
- 1-2 out-of-scope → MINOR_DRIFT
- 3-5 out-of-scope → SIGNIFICANT_DRIFT
- 6+ out-of-scope → OUTOFCONTROL
Step 5: Report
Output the following structure:
## Scope Report
- **Planned files**: [count from plan]
- **Actual files changed**: [count from git diff]
- **Out-of-scope files**: [count]
- **Drift**: [X]% ([level])
- **Status**: ON_TRACK | MINOR_DRIFT | SIGNIFICANT_DRIFT | OUT_OF_CONTROL
### In-Scope Changes
- [file] — [matches planned task]
### Out-of-Scope Changes
- [file] — [reason: unplanned feature | unrelated refactor | unplanned dep]
### Recommendations
- [ON_TRACK]: No action needed. Proceed.
- [MINOR_DRIFT]: Review [file] — consider reverting or acknowledging as intentional.
- [SIGNIFICANT_DRIFT]: PAUSE. Drift is [X]%. Re-align scope with original plan. Suggested cuts: [files to revert]
- [OUT_OF_CONTROL]: STOP. [X]% of changes are unplanned — more drift than planned work. Present full report to user/orchestrator. Do NOT continue until re-scoped.
Output Format
## Scope Report
- Planned files: 3 | Actual: 5 | Out-of-scope: 2
- Drift: 40% (SIGNIFICANT_DRIFT)
### Out-of-Scope Changes
- src/components/NewWidget.tsx — unplanned feature
- docs/new-feature.md — documentation for unplanned feature
### Recommendations
- PAUSE. Drift is 40%. Re-align scope with original plan.
- Suggested cuts: revert src/components/NewWidget.tsx + docs/new-feature.md (reduces drift to 0%)
Constraints
- MUST compare actual changes against stated scope — not just file count
- MUST flag files modified outside scope with specific paths
- MUST allow user override — advisory, not authoritarian
Sharp Edges
Known failure modes for this skill. Check these before declaring done.
| Failure Mode | Severity | Mitigation | |---|---|---| | Classifying test files for planned code as out-of-scope | MEDIUM | Test files for planned source files are always INSCOPE — natural dependency | | Classifying lock file changes as out-of-scope | LOW | package-lock.json, yarn.lock, Cargo.lock are always INSCOPE | | Over-escalating drift (e.g., 1 extra file = OUTOFCONTROL) | LOW | Use drift percentage, not gut feeling. 1 extra file out of 10 = 10% = MINOR_DRIFT, not panic | | Plan not loadable (no TodoWrite, no progress.md) | MEDIUM | Ask calling skill for plan as text description before proceeding | | Scope check against plan but not against stated intent | MEDIUM | Plan-based scope guard catches file drift; review Step 6.6 (Scope Drift Detection) catches intent drift. Both should run for full coverage |
Done When
- Plan loaded from TodoWrite active tasks or .rune/progress.md
- git diff --stat and --cached output parsed for all changed files
- Each changed file classified INSCOPE or OUTOF_SCOPE with reasoning
- Drift percentage computed and classified (ONTRACK / MINORDRIFT / SIGNIFICANTDRIFT / OUTOF_CONTROL)
- Scope Report emitted with drift %, level, and actionable recommendations
Returns
| Artifact | Format | Location | |----------|--------|----------| | Scope Report | Markdown (drift %, 4-tier level, recommendations) | inline | | In-scope file list | Classified list | inline | | Out-of-scope drift report | File list with reasons | inline | | Recommendations | Actionable list | inline |
Cost Profile
~200-500 tokens input, ~100-300 tokens output. Haiku. Lightweight monitor.
Scope guardrail: scope-guard reports drift and advises — it does not revert files, block commits, or modify code. Override decisions belong to the calling orchestrator or the user.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Rune-kit
- Source: Rune-kit/rune
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.