quick
Installation
SKILL.md
/quick - Tracked Lightweight Execution
Quick covers the full lightweight tier from zero-ceremony inline fixes (≤3 edits, --trivial mode) through contained multi-file changes. Full-ceremony Simple+ tasks (task_plan.md, agent routing, quality gates) belong in /do. The key design principle is composable rigor: the base mode is minimal (plan + execute), and users add process incrementally via flags.
Flags (all OFF by default):
| Flag | Effect |
|---|---|
--trivial |
Zero-ceremony inline mode for ≤3 file edits: no plan display, no branch, direct commit. Scope-gates strictly — escalates automatically if the task needs more than 3 edits. Use for typo fixes, one-line constant changes, renaming a variable, fixing an import. |
--discuss |
Add a pre-planning discussion phase to resolve ambiguities (breadth-first — surfaces all gray areas at once) |
--interview |
Add a depth-first decision-tree interview before the edit phase. One question at a time with a recommendation per question. Sibling to --discuss — pick --interview when decisions are interdependent and answer A constrains valid options for B. |
--research |
Add a research phase before planning to build context on unfamiliar code |
--full |
Add plan verification + full quality gates (tests, lint, diff review) |
--no-branch |
Skip feature branch creation, work on current branch |
--no-commit |
Skip the commit step (for batching multiple quick tasks) |