/quick
For well-understood changes that don’t need the full workflow.
When to use
Section titled “When to use”- Config changes, renames, small fixes
- Under ~50 lines of non-test code
- No ambiguity about what to do
What it does
Section titled “What it does”- Read context (ARCHITECTURE.md, DECISIONS.md, LEARNINGS.md, CONSTITUTION.md)
- Scope check — bail if too big
- TDD if testable
- Make the change
- Run all checks
- Scope re-check — if it grew past 50 lines, stash and redirect to
/feature - Self-review
- Commit
Scope gate
Section titled “Scope gate”If the change grows beyond ~50 lines during implementation, /quick stops, stashes the partial work, and tells you to run /feature instead.
Output
Section titled “Output”A committed change with conventional prefix (fix:, chore:, refactor:, tweak:, docs:).