| name | quick |
| description | Implement a clear, tightly scoped change with no design, dependency, or schema decision. Route uncertainty elsewhere. |
| argument-hint | [small change] |
Quick change
Use this path only when the desired behavior and implementation approach are clear.
Gate
Inspect the target and confirm:
- the change is coherent and tightly coupled;
- no new dependency, migration, or expensive-to-reverse choice is required;
- acceptance can be verified with existing commands or a small focused test.
If not, route to $brainstorm, $investigate, $spec, or $write-plan as appropriate.
Execute
- State the intended change and file scope in one sentence.
- Preserve unrelated edits and implement the smallest complete solution.
- Add or update focused tests for changed behavior when applicable.
- Run the narrowest relevant check. For code, configuration, generated artifacts, or shipping readiness, also run:
./scripts/lint.sh
./scripts/test.sh
For documentation-only changes, run the applicable documentation or structural check and explicitly report why the broader test suite was not needed.
- Review the diff for scope, acceptance coverage, and accidental generated files.
- Report the outcome and verification evidence.
Do not commit, push, open a PR, deploy, or modify an external system unless the user explicitly requests that action.