Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Before making changes, verifies they match what was actually requested. Catches scope creep before it happens - no "while I'm here" improvements. Use when about to modify files, add features, or refactor code beyond what the user asked for.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 381% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 464% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 798% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 517% | 0% |
Helpful instincts cause scope creep. User asks to fix a typo, the agent refactors the function. User asks for one feature, agent adds three. This skill forces a scope check before every change: "Was this asked for?"
Ask yourself:
markdown## Scope Check **User asked for:** [restate the request in one sentence] **I'm about to:** [describe the change] **Match?** [Yes / No / Adjacent]
| Match | Action | |-------|--------| | Yes | Proceed | | No | Stop. Don't do it. | | Adjacent | Ask first OR note it for later |
"Adjacent" means related but not requested:
For adjacent work:
The Helpful Refactor: > User: "Fix the typo in the error message" > Agent: rewrites entire error handling system
The Preemptive Feature: > User: "Add a save button" > Agent: adds save, autosave, save-as, and export
The Drive-By Cleanup: > User: "Update the API endpoint" > Agent: also reformats file, adds types, updates imports
The Future-Proofing: > User: "Add user authentication" > Agent: builds role-based permissions, audit logging, SSO
For significant changes, show scope alignment:
markdown## Changes Made **Requested:** [what user asked] **Delivered:** - [x] [matches request] - [x] [matches request] **Not done (out of scope):** - [ ] [thing you resisted doing]
User: "Change the button color from blue to green"
Scope Check: > User asked for: Change button color blue to green > I'm about to: Change the color value in the CSS > Match? Yes
What to resist:
Correct response: > Changed the button color from blue to green in styles.css:47. > > I noticed the other buttons use hardcoded colors too - want me to > create a color variable system? (separate change)
Other measured skills in the registry, with their headline benchmark lift.