gsd-code-first 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (238) hide show
  1. package/LICENSE +21 -0
  2. package/README.ja-JP.md +834 -0
  3. package/README.ko-KR.md +823 -0
  4. package/README.md +937 -0
  5. package/README.pt-BR.md +452 -0
  6. package/README.zh-CN.md +800 -0
  7. package/agents/gsd-advisor-researcher.md +104 -0
  8. package/agents/gsd-annotator.md +148 -0
  9. package/agents/gsd-arc-executor.md +537 -0
  10. package/agents/gsd-arc-planner.md +374 -0
  11. package/agents/gsd-assumptions-analyzer.md +105 -0
  12. package/agents/gsd-code-planner.md +155 -0
  13. package/agents/gsd-codebase-mapper.md +770 -0
  14. package/agents/gsd-debugger.md +1373 -0
  15. package/agents/gsd-executor.md +509 -0
  16. package/agents/gsd-integration-checker.md +443 -0
  17. package/agents/gsd-nyquist-auditor.md +176 -0
  18. package/agents/gsd-phase-researcher.md +698 -0
  19. package/agents/gsd-plan-checker.md +773 -0
  20. package/agents/gsd-planner.md +1354 -0
  21. package/agents/gsd-project-researcher.md +654 -0
  22. package/agents/gsd-prototyper.md +161 -0
  23. package/agents/gsd-research-synthesizer.md +247 -0
  24. package/agents/gsd-roadmapper.md +679 -0
  25. package/agents/gsd-ui-auditor.md +439 -0
  26. package/agents/gsd-ui-checker.md +300 -0
  27. package/agents/gsd-ui-researcher.md +357 -0
  28. package/agents/gsd-user-profiler.md +171 -0
  29. package/agents/gsd-verifier.md +700 -0
  30. package/bin/install.js +5009 -0
  31. package/commands/gsd/add-backlog.md +76 -0
  32. package/commands/gsd/add-phase.md +43 -0
  33. package/commands/gsd/add-tests.md +41 -0
  34. package/commands/gsd/add-todo.md +47 -0
  35. package/commands/gsd/annotate.md +54 -0
  36. package/commands/gsd/audit-milestone.md +36 -0
  37. package/commands/gsd/audit-uat.md +24 -0
  38. package/commands/gsd/autonomous.md +41 -0
  39. package/commands/gsd/check-todos.md +45 -0
  40. package/commands/gsd/cleanup.md +18 -0
  41. package/commands/gsd/complete-milestone.md +136 -0
  42. package/commands/gsd/debug.md +173 -0
  43. package/commands/gsd/deep-plan.md +52 -0
  44. package/commands/gsd/discuss-phase.md +64 -0
  45. package/commands/gsd/do.md +30 -0
  46. package/commands/gsd/execute-phase.md +59 -0
  47. package/commands/gsd/extract-plan.md +35 -0
  48. package/commands/gsd/fast.md +30 -0
  49. package/commands/gsd/forensics.md +56 -0
  50. package/commands/gsd/health.md +22 -0
  51. package/commands/gsd/help.md +22 -0
  52. package/commands/gsd/insert-phase.md +32 -0
  53. package/commands/gsd/iterate.md +124 -0
  54. package/commands/gsd/join-discord.md +18 -0
  55. package/commands/gsd/list-phase-assumptions.md +46 -0
  56. package/commands/gsd/list-workspaces.md +19 -0
  57. package/commands/gsd/manager.md +39 -0
  58. package/commands/gsd/map-codebase.md +71 -0
  59. package/commands/gsd/milestone-summary.md +51 -0
  60. package/commands/gsd/new-milestone.md +44 -0
  61. package/commands/gsd/new-project.md +42 -0
  62. package/commands/gsd/new-workspace.md +44 -0
  63. package/commands/gsd/next.md +24 -0
  64. package/commands/gsd/note.md +34 -0
  65. package/commands/gsd/pause-work.md +38 -0
  66. package/commands/gsd/plan-milestone-gaps.md +34 -0
  67. package/commands/gsd/plan-phase.md +47 -0
  68. package/commands/gsd/plant-seed.md +28 -0
  69. package/commands/gsd/pr-branch.md +25 -0
  70. package/commands/gsd/profile-user.md +46 -0
  71. package/commands/gsd/progress.md +24 -0
  72. package/commands/gsd/prototype.md +56 -0
  73. package/commands/gsd/quick.md +47 -0
  74. package/commands/gsd/reapply-patches.md +123 -0
  75. package/commands/gsd/remove-phase.md +31 -0
  76. package/commands/gsd/remove-workspace.md +26 -0
  77. package/commands/gsd/research-phase.md +195 -0
  78. package/commands/gsd/resume-work.md +40 -0
  79. package/commands/gsd/review-backlog.md +61 -0
  80. package/commands/gsd/review.md +37 -0
  81. package/commands/gsd/session-report.md +19 -0
  82. package/commands/gsd/set-mode.md +41 -0
  83. package/commands/gsd/set-profile.md +12 -0
  84. package/commands/gsd/settings.md +36 -0
  85. package/commands/gsd/ship.md +23 -0
  86. package/commands/gsd/stats.md +18 -0
  87. package/commands/gsd/thread.md +127 -0
  88. package/commands/gsd/ui-phase.md +34 -0
  89. package/commands/gsd/ui-review.md +32 -0
  90. package/commands/gsd/update.md +37 -0
  91. package/commands/gsd/validate-phase.md +35 -0
  92. package/commands/gsd/verify-work.md +38 -0
  93. package/commands/gsd/workstreams.md +63 -0
  94. package/get-shit-done/bin/gsd-tools.cjs +946 -0
  95. package/get-shit-done/bin/lib/arc-scanner.cjs +341 -0
  96. package/get-shit-done/bin/lib/commands.cjs +959 -0
  97. package/get-shit-done/bin/lib/config.cjs +466 -0
  98. package/get-shit-done/bin/lib/core.cjs +1230 -0
  99. package/get-shit-done/bin/lib/frontmatter.cjs +336 -0
  100. package/get-shit-done/bin/lib/init.cjs +1442 -0
  101. package/get-shit-done/bin/lib/milestone.cjs +252 -0
  102. package/get-shit-done/bin/lib/model-profiles.cjs +68 -0
  103. package/get-shit-done/bin/lib/phase.cjs +888 -0
  104. package/get-shit-done/bin/lib/profile-output.cjs +952 -0
  105. package/get-shit-done/bin/lib/profile-pipeline.cjs +539 -0
  106. package/get-shit-done/bin/lib/roadmap.cjs +329 -0
  107. package/get-shit-done/bin/lib/security.cjs +382 -0
  108. package/get-shit-done/bin/lib/state.cjs +1031 -0
  109. package/get-shit-done/bin/lib/template.cjs +222 -0
  110. package/get-shit-done/bin/lib/uat.cjs +282 -0
  111. package/get-shit-done/bin/lib/verify.cjs +888 -0
  112. package/get-shit-done/bin/lib/workstream.cjs +491 -0
  113. package/get-shit-done/commands/gsd/workstreams.md +63 -0
  114. package/get-shit-done/references/arc-standard.md +315 -0
  115. package/get-shit-done/references/checkpoints.md +778 -0
  116. package/get-shit-done/references/continuation-format.md +249 -0
  117. package/get-shit-done/references/decimal-phase-calculation.md +64 -0
  118. package/get-shit-done/references/git-integration.md +295 -0
  119. package/get-shit-done/references/git-planning-commit.md +38 -0
  120. package/get-shit-done/references/model-profile-resolution.md +36 -0
  121. package/get-shit-done/references/model-profiles.md +139 -0
  122. package/get-shit-done/references/phase-argument-parsing.md +61 -0
  123. package/get-shit-done/references/planning-config.md +202 -0
  124. package/get-shit-done/references/questioning.md +162 -0
  125. package/get-shit-done/references/tdd.md +263 -0
  126. package/get-shit-done/references/ui-brand.md +160 -0
  127. package/get-shit-done/references/user-profiling.md +681 -0
  128. package/get-shit-done/references/verification-patterns.md +612 -0
  129. package/get-shit-done/references/workstream-flag.md +58 -0
  130. package/get-shit-done/templates/DEBUG.md +164 -0
  131. package/get-shit-done/templates/UAT.md +265 -0
  132. package/get-shit-done/templates/UI-SPEC.md +100 -0
  133. package/get-shit-done/templates/VALIDATION.md +76 -0
  134. package/get-shit-done/templates/claude-md.md +122 -0
  135. package/get-shit-done/templates/codebase/architecture.md +255 -0
  136. package/get-shit-done/templates/codebase/concerns.md +310 -0
  137. package/get-shit-done/templates/codebase/conventions.md +307 -0
  138. package/get-shit-done/templates/codebase/integrations.md +280 -0
  139. package/get-shit-done/templates/codebase/stack.md +186 -0
  140. package/get-shit-done/templates/codebase/structure.md +285 -0
  141. package/get-shit-done/templates/codebase/testing.md +480 -0
  142. package/get-shit-done/templates/config.json +44 -0
  143. package/get-shit-done/templates/context.md +352 -0
  144. package/get-shit-done/templates/continue-here.md +78 -0
  145. package/get-shit-done/templates/copilot-instructions.md +7 -0
  146. package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
  147. package/get-shit-done/templates/dev-preferences.md +21 -0
  148. package/get-shit-done/templates/discovery.md +146 -0
  149. package/get-shit-done/templates/discussion-log.md +63 -0
  150. package/get-shit-done/templates/milestone-archive.md +123 -0
  151. package/get-shit-done/templates/milestone.md +115 -0
  152. package/get-shit-done/templates/phase-prompt.md +610 -0
  153. package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
  154. package/get-shit-done/templates/project.md +186 -0
  155. package/get-shit-done/templates/requirements.md +231 -0
  156. package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
  157. package/get-shit-done/templates/research-project/FEATURES.md +147 -0
  158. package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
  159. package/get-shit-done/templates/research-project/STACK.md +120 -0
  160. package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
  161. package/get-shit-done/templates/research.md +552 -0
  162. package/get-shit-done/templates/retrospective.md +54 -0
  163. package/get-shit-done/templates/roadmap.md +202 -0
  164. package/get-shit-done/templates/state.md +176 -0
  165. package/get-shit-done/templates/summary-complex.md +59 -0
  166. package/get-shit-done/templates/summary-minimal.md +41 -0
  167. package/get-shit-done/templates/summary-standard.md +48 -0
  168. package/get-shit-done/templates/summary.md +248 -0
  169. package/get-shit-done/templates/user-profile.md +146 -0
  170. package/get-shit-done/templates/user-setup.md +311 -0
  171. package/get-shit-done/templates/verification-report.md +322 -0
  172. package/get-shit-done/workflows/add-phase.md +112 -0
  173. package/get-shit-done/workflows/add-tests.md +351 -0
  174. package/get-shit-done/workflows/add-todo.md +158 -0
  175. package/get-shit-done/workflows/audit-milestone.md +340 -0
  176. package/get-shit-done/workflows/audit-uat.md +109 -0
  177. package/get-shit-done/workflows/autonomous.md +891 -0
  178. package/get-shit-done/workflows/check-todos.md +177 -0
  179. package/get-shit-done/workflows/cleanup.md +152 -0
  180. package/get-shit-done/workflows/complete-milestone.md +767 -0
  181. package/get-shit-done/workflows/diagnose-issues.md +231 -0
  182. package/get-shit-done/workflows/discovery-phase.md +289 -0
  183. package/get-shit-done/workflows/discuss-phase-assumptions.md +653 -0
  184. package/get-shit-done/workflows/discuss-phase.md +1049 -0
  185. package/get-shit-done/workflows/do.md +104 -0
  186. package/get-shit-done/workflows/execute-phase.md +846 -0
  187. package/get-shit-done/workflows/execute-plan.md +514 -0
  188. package/get-shit-done/workflows/fast.md +105 -0
  189. package/get-shit-done/workflows/forensics.md +265 -0
  190. package/get-shit-done/workflows/health.md +181 -0
  191. package/get-shit-done/workflows/help.md +634 -0
  192. package/get-shit-done/workflows/insert-phase.md +130 -0
  193. package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
  194. package/get-shit-done/workflows/list-workspaces.md +56 -0
  195. package/get-shit-done/workflows/manager.md +362 -0
  196. package/get-shit-done/workflows/map-codebase.md +377 -0
  197. package/get-shit-done/workflows/milestone-summary.md +223 -0
  198. package/get-shit-done/workflows/new-milestone.md +486 -0
  199. package/get-shit-done/workflows/new-project.md +1250 -0
  200. package/get-shit-done/workflows/new-workspace.md +237 -0
  201. package/get-shit-done/workflows/next.md +97 -0
  202. package/get-shit-done/workflows/node-repair.md +92 -0
  203. package/get-shit-done/workflows/note.md +156 -0
  204. package/get-shit-done/workflows/pause-work.md +176 -0
  205. package/get-shit-done/workflows/plan-milestone-gaps.md +273 -0
  206. package/get-shit-done/workflows/plan-phase.md +859 -0
  207. package/get-shit-done/workflows/plant-seed.md +169 -0
  208. package/get-shit-done/workflows/pr-branch.md +129 -0
  209. package/get-shit-done/workflows/profile-user.md +450 -0
  210. package/get-shit-done/workflows/progress.md +507 -0
  211. package/get-shit-done/workflows/quick.md +757 -0
  212. package/get-shit-done/workflows/remove-phase.md +155 -0
  213. package/get-shit-done/workflows/remove-workspace.md +90 -0
  214. package/get-shit-done/workflows/research-phase.md +82 -0
  215. package/get-shit-done/workflows/resume-project.md +326 -0
  216. package/get-shit-done/workflows/review.md +228 -0
  217. package/get-shit-done/workflows/session-report.md +146 -0
  218. package/get-shit-done/workflows/settings.md +283 -0
  219. package/get-shit-done/workflows/ship.md +228 -0
  220. package/get-shit-done/workflows/stats.md +60 -0
  221. package/get-shit-done/workflows/transition.md +671 -0
  222. package/get-shit-done/workflows/ui-phase.md +302 -0
  223. package/get-shit-done/workflows/ui-review.md +165 -0
  224. package/get-shit-done/workflows/update.md +323 -0
  225. package/get-shit-done/workflows/validate-phase.md +174 -0
  226. package/get-shit-done/workflows/verify-phase.md +254 -0
  227. package/get-shit-done/workflows/verify-work.md +637 -0
  228. package/hooks/dist/gsd-check-update.js +114 -0
  229. package/hooks/dist/gsd-context-monitor.js +156 -0
  230. package/hooks/dist/gsd-prompt-guard.js +96 -0
  231. package/hooks/dist/gsd-statusline.js +119 -0
  232. package/hooks/dist/gsd-workflow-guard.js +94 -0
  233. package/package.json +52 -0
  234. package/scripts/base64-scan.sh +262 -0
  235. package/scripts/build-hooks.js +82 -0
  236. package/scripts/prompt-injection-scan.sh +198 -0
  237. package/scripts/run-tests.cjs +29 -0
  238. package/scripts/secret-scan.sh +227 -0
@@ -0,0 +1,757 @@
1
+ <purpose>
2
+ Execute small, ad-hoc tasks with GSD guarantees (atomic commits, STATE.md tracking). Quick mode spawns gsd-planner (quick mode) + gsd-executor(s), tracks tasks in `.planning/quick/`, and updates STATE.md's "Quick Tasks Completed" table.
3
+
4
+ With `--discuss` flag: lightweight discussion phase before planning. Surfaces assumptions, clarifies gray areas, captures decisions in CONTEXT.md so the planner treats them as locked.
5
+
6
+ With `--full` flag: enables plan-checking (max 2 iterations) and post-execution verification for quality guarantees without full milestone ceremony.
7
+
8
+ With `--research` flag: spawns a focused research agent before planning. Investigates implementation approaches, library options, and pitfalls. Use when you're unsure how to approach a task.
9
+
10
+ Flags are composable: `--discuss --research --full` gives discussion + research + plan-checking + verification.
11
+ </purpose>
12
+
13
+ <required_reading>
14
+ Read all files referenced by the invoking prompt's execution_context before starting.
15
+ </required_reading>
16
+
17
+ <available_agent_types>
18
+ Valid GSD subagent types (use exact names — do not fall back to 'general-purpose'):
19
+ - gsd-phase-researcher — Researches technical approaches for a phase
20
+ - gsd-planner — Creates detailed plans from phase scope
21
+ - gsd-plan-checker — Reviews plan quality before execution
22
+ - gsd-executor — Executes plan tasks, commits, creates SUMMARY.md
23
+ - gsd-verifier — Verifies phase completion, checks quality gates
24
+ </available_agent_types>
25
+
26
+ <process>
27
+ **Step 1: Parse arguments and get task description**
28
+
29
+ Parse `$ARGUMENTS` for:
30
+ - `--full` flag → store as `$FULL_MODE` (true/false)
31
+ - `--discuss` flag → store as `$DISCUSS_MODE` (true/false)
32
+ - `--research` flag → store as `$RESEARCH_MODE` (true/false)
33
+ - Remaining text → use as `$DESCRIPTION` if non-empty
34
+
35
+ If `$DESCRIPTION` is empty after parsing, prompt user interactively:
36
+
37
+ ```
38
+ AskUserQuestion(
39
+ header: "Quick Task",
40
+ question: "What do you want to do?",
41
+ followUp: null
42
+ )
43
+ ```
44
+
45
+ Store response as `$DESCRIPTION`.
46
+
47
+ If still empty, re-prompt: "Please provide a task description."
48
+
49
+ Display banner based on active flags:
50
+
51
+ If `$DISCUSS_MODE` and `$RESEARCH_MODE` and `$FULL_MODE`:
52
+ ```
53
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
54
+ GSD ► QUICK TASK (DISCUSS + RESEARCH + FULL)
55
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
56
+
57
+ ◆ Discussion + research + plan checking + verification enabled
58
+ ```
59
+
60
+ If `$DISCUSS_MODE` and `$FULL_MODE` (no research):
61
+ ```
62
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
63
+ GSD ► QUICK TASK (DISCUSS + FULL)
64
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
65
+
66
+ ◆ Discussion + plan checking + verification enabled
67
+ ```
68
+
69
+ If `$DISCUSS_MODE` and `$RESEARCH_MODE` (no full):
70
+ ```
71
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
72
+ GSD ► QUICK TASK (DISCUSS + RESEARCH)
73
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
74
+
75
+ ◆ Discussion + research enabled
76
+ ```
77
+
78
+ If `$RESEARCH_MODE` and `$FULL_MODE` (no discuss):
79
+ ```
80
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
81
+ GSD ► QUICK TASK (RESEARCH + FULL)
82
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
83
+
84
+ ◆ Research + plan checking + verification enabled
85
+ ```
86
+
87
+ If `$DISCUSS_MODE` only:
88
+ ```
89
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
90
+ GSD ► QUICK TASK (DISCUSS)
91
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
92
+
93
+ ◆ Discussion phase enabled — surfacing gray areas before planning
94
+ ```
95
+
96
+ If `$RESEARCH_MODE` only:
97
+ ```
98
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
99
+ GSD ► QUICK TASK (RESEARCH)
100
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
101
+
102
+ ◆ Research phase enabled — investigating approaches before planning
103
+ ```
104
+
105
+ If `$FULL_MODE` only:
106
+ ```
107
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
108
+ GSD ► QUICK TASK (FULL MODE)
109
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
110
+
111
+ ◆ Plan checking + verification enabled
112
+ ```
113
+
114
+ ---
115
+
116
+ **Step 2: Initialize**
117
+
118
+ ```bash
119
+ INIT=$(node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" init quick "$DESCRIPTION")
120
+ if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
121
+ AGENT_SKILLS_PLANNER=$(node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-planner 2>/dev/null)
122
+ AGENT_SKILLS_EXECUTOR=$(node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-executor 2>/dev/null)
123
+ AGENT_SKILLS_CHECKER=$(node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-checker 2>/dev/null)
124
+ AGENT_SKILLS_VERIFIER=$(node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-verifier 2>/dev/null)
125
+ ```
126
+
127
+ Parse JSON for: `planner_model`, `executor_model`, `checker_model`, `verifier_model`, `commit_docs`, `branch_name`, `quick_id`, `slug`, `date`, `timestamp`, `quick_dir`, `task_dir`, `roadmap_exists`, `planning_exists`.
128
+
129
+ **If `roadmap_exists` is false:** Error — Quick mode requires an active project with ROADMAP.md. Run `/gsd:new-project` first.
130
+
131
+ Quick tasks can run mid-phase - validation only checks ROADMAP.md exists, not phase status.
132
+
133
+ ---
134
+
135
+ **Step 2.5: Handle quick-task branching**
136
+
137
+ **If `branch_name` is empty/null:** Skip and continue on the current branch.
138
+
139
+ **If `branch_name` is set:** Check out the quick-task branch before any planning commits:
140
+
141
+ ```bash
142
+ git checkout -b "$branch_name" 2>/dev/null || git checkout "$branch_name"
143
+ ```
144
+
145
+ All quick-task commits for this run stay on that branch. User handles merge/rebase afterward.
146
+
147
+ ---
148
+
149
+ **Step 3: Create task directory**
150
+
151
+ ```bash
152
+ mkdir -p "${task_dir}"
153
+ ```
154
+
155
+ ---
156
+
157
+ **Step 4: Create quick task directory**
158
+
159
+ Create the directory for this quick task:
160
+
161
+ ```bash
162
+ QUICK_DIR=".planning/quick/${quick_id}-${slug}"
163
+ mkdir -p "$QUICK_DIR"
164
+ ```
165
+
166
+ Report to user:
167
+ ```
168
+ Creating quick task ${quick_id}: ${DESCRIPTION}
169
+ Directory: ${QUICK_DIR}
170
+ ```
171
+
172
+ Store `$QUICK_DIR` for use in orchestration.
173
+
174
+ ---
175
+
176
+ **Step 4.5: Discussion phase (only when `$DISCUSS_MODE`)**
177
+
178
+ Skip this step entirely if NOT `$DISCUSS_MODE`.
179
+
180
+ Display banner:
181
+ ```
182
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
183
+ GSD ► DISCUSSING QUICK TASK
184
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
185
+
186
+ ◆ Surfacing gray areas for: ${DESCRIPTION}
187
+ ```
188
+
189
+ **4.5a. Identify gray areas**
190
+
191
+ Analyze `$DESCRIPTION` to identify 2-4 gray areas — implementation decisions that would change the outcome and that the user should weigh in on.
192
+
193
+ Use the domain-aware heuristic to generate phase-specific (not generic) gray areas:
194
+ - Something users **SEE** → layout, density, interactions, states
195
+ - Something users **CALL** → responses, errors, auth, versioning
196
+ - Something users **RUN** → output format, flags, modes, error handling
197
+ - Something users **READ** → structure, tone, depth, flow
198
+ - Something being **ORGANIZED** → criteria, grouping, naming, exceptions
199
+
200
+ Each gray area should be a concrete decision point, not a vague category. Example: "Loading behavior" not "UX".
201
+
202
+ **4.5b. Present gray areas**
203
+
204
+ ```
205
+ AskUserQuestion(
206
+ header: "Gray Areas",
207
+ question: "Which areas need clarification before planning?",
208
+ options: [
209
+ { label: "${area_1}", description: "${why_it_matters_1}" },
210
+ { label: "${area_2}", description: "${why_it_matters_2}" },
211
+ { label: "${area_3}", description: "${why_it_matters_3}" },
212
+ { label: "All clear", description: "Skip discussion — I know what I want" }
213
+ ],
214
+ multiSelect: true
215
+ )
216
+ ```
217
+
218
+ If user selects "All clear" → skip to Step 5 (no CONTEXT.md written).
219
+
220
+ **4.5c. Discuss selected areas**
221
+
222
+ For each selected area, ask 1-2 focused questions via AskUserQuestion:
223
+
224
+ ```
225
+ AskUserQuestion(
226
+ header: "${area_name}",
227
+ question: "${specific_question_about_this_area}",
228
+ options: [
229
+ { label: "${concrete_choice_1}", description: "${what_this_means}" },
230
+ { label: "${concrete_choice_2}", description: "${what_this_means}" },
231
+ { label: "${concrete_choice_3}", description: "${what_this_means}" },
232
+ { label: "You decide", description: "Claude's discretion" }
233
+ ],
234
+ multiSelect: false
235
+ )
236
+ ```
237
+
238
+ Rules:
239
+ - Options must be concrete choices, not abstract categories
240
+ - Highlight recommended choice where you have a clear opinion
241
+ - If user selects "Other" with freeform text, switch to plain text follow-up (per questioning.md freeform rule)
242
+ - If user selects "You decide", capture as Claude's Discretion in CONTEXT.md
243
+ - Max 2 questions per area — this is lightweight, not a deep dive
244
+
245
+ Collect all decisions into `$DECISIONS`.
246
+
247
+ **4.5d. Write CONTEXT.md**
248
+
249
+ Write `${QUICK_DIR}/${quick_id}-CONTEXT.md` using the standard context template structure:
250
+
251
+ ```markdown
252
+ # Quick Task ${quick_id}: ${DESCRIPTION} - Context
253
+
254
+ **Gathered:** ${date}
255
+ **Status:** Ready for planning
256
+
257
+ <domain>
258
+ ## Task Boundary
259
+
260
+ ${DESCRIPTION}
261
+
262
+ </domain>
263
+
264
+ <decisions>
265
+ ## Implementation Decisions
266
+
267
+ ### ${area_1_name}
268
+ - ${decision_from_discussion}
269
+
270
+ ### ${area_2_name}
271
+ - ${decision_from_discussion}
272
+
273
+ ### Claude's Discretion
274
+ ${areas_where_user_said_you_decide_or_areas_not_discussed}
275
+
276
+ </decisions>
277
+
278
+ <specifics>
279
+ ## Specific Ideas
280
+
281
+ ${any_specific_references_or_examples_from_discussion}
282
+
283
+ [If none: "No specific requirements — open to standard approaches"]
284
+
285
+ </specifics>
286
+
287
+ <canonical_refs>
288
+ ## Canonical References
289
+
290
+ ${any_specs_adrs_or_docs_referenced_during_discussion}
291
+
292
+ [If none: "No external specs — requirements fully captured in decisions above"]
293
+
294
+ </canonical_refs>
295
+ ```
296
+
297
+ Note: Quick task CONTEXT.md omits `<code_context>` and `<deferred>` sections (no codebase scouting, no phase scope to defer to). Keep it lean. The `<canonical_refs>` section is included when external docs were referenced — omit it only if no external docs apply.
298
+
299
+ Report: `Context captured: ${QUICK_DIR}/${quick_id}-CONTEXT.md`
300
+
301
+ ---
302
+
303
+ **Step 4.75: Research phase (only when `$RESEARCH_MODE`)**
304
+
305
+ Skip this step entirely if NOT `$RESEARCH_MODE`.
306
+
307
+ Display banner:
308
+ ```
309
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
310
+ GSD ► RESEARCHING QUICK TASK
311
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
312
+
313
+ ◆ Investigating approaches for: ${DESCRIPTION}
314
+ ```
315
+
316
+ Spawn a single focused researcher (not 4 parallel researchers like full phases — quick tasks need targeted research, not broad domain surveys):
317
+
318
+ ```
319
+ Task(
320
+ prompt="
321
+ <research_context>
322
+
323
+ **Mode:** quick-task
324
+ **Task:** ${DESCRIPTION}
325
+ **Output:** ${QUICK_DIR}/${quick_id}-RESEARCH.md
326
+
327
+ <files_to_read>
328
+ - .planning/STATE.md (Project state — what's already built)
329
+ - .planning/PROJECT.md (Project context)
330
+ - ./CLAUDE.md (if exists — project-specific guidelines)
331
+ ${DISCUSS_MODE ? '- ' + QUICK_DIR + '/' + quick_id + '-CONTEXT.md (User decisions — research should align with these)' : ''}
332
+ </files_to_read>
333
+
334
+ ${AGENT_SKILLS_PLANNER}
335
+
336
+ </research_context>
337
+
338
+ <focus>
339
+ This is a quick task, not a full phase. Research should be concise and targeted:
340
+ 1. Best libraries/patterns for this specific task
341
+ 2. Common pitfalls and how to avoid them
342
+ 3. Integration points with existing codebase
343
+ 4. Any constraints or gotchas worth knowing before planning
344
+
345
+ Do NOT produce a full domain survey. Target 1-2 pages of actionable findings.
346
+ </focus>
347
+
348
+ <output>
349
+ Write research to: ${QUICK_DIR}/${quick_id}-RESEARCH.md
350
+ Use standard research format but keep it lean — skip sections that don't apply.
351
+ Return: ## RESEARCH COMPLETE with file path
352
+ </output>
353
+ ",
354
+ subagent_type="gsd-phase-researcher",
355
+ model="{planner_model}",
356
+ description="Research: ${DESCRIPTION}"
357
+ )
358
+ ```
359
+
360
+ After researcher returns:
361
+ 1. Verify research exists at `${QUICK_DIR}/${quick_id}-RESEARCH.md`
362
+ 2. Report: "Research complete: ${QUICK_DIR}/${quick_id}-RESEARCH.md"
363
+
364
+ If research file not found, warn but continue: "Research agent did not produce output — proceeding to planning without research."
365
+
366
+ ---
367
+
368
+ **Step 5: Spawn planner (quick mode)**
369
+
370
+ **If `$FULL_MODE`:** Use `quick-full` mode with stricter constraints.
371
+
372
+ **If NOT `$FULL_MODE`:** Use standard `quick` mode.
373
+
374
+ ```
375
+ Task(
376
+ prompt="
377
+ <planning_context>
378
+
379
+ **Mode:** ${FULL_MODE ? 'quick-full' : 'quick'}
380
+ **Directory:** ${QUICK_DIR}
381
+ **Description:** ${DESCRIPTION}
382
+
383
+ <files_to_read>
384
+ - .planning/STATE.md (Project State)
385
+ - ./CLAUDE.md (if exists — follow project-specific guidelines)
386
+ ${DISCUSS_MODE ? '- ' + QUICK_DIR + '/' + quick_id + '-CONTEXT.md (User decisions — locked, do not revisit)' : ''}
387
+ ${RESEARCH_MODE ? '- ' + QUICK_DIR + '/' + quick_id + '-RESEARCH.md (Research findings — use to inform implementation choices)' : ''}
388
+ </files_to_read>
389
+
390
+ ${AGENT_SKILLS_PLANNER}
391
+
392
+ **Project skills:** Check .claude/skills/ or .agents/skills/ directory (if either exists) — read SKILL.md files, plans should account for project skill rules
393
+
394
+ </planning_context>
395
+
396
+ <constraints>
397
+ - Create a SINGLE plan with 1-3 focused tasks
398
+ - Quick tasks should be atomic and self-contained
399
+ ${RESEARCH_MODE ? '- Research findings are available — use them to inform library/pattern choices' : '- No research phase'}
400
+ ${FULL_MODE ? '- Target ~40% context usage (structured for verification)' : '- Target ~30% context usage (simple, focused)'}
401
+ ${FULL_MODE ? '- MUST generate `must_haves` in plan frontmatter (truths, artifacts, key_links)' : ''}
402
+ ${FULL_MODE ? '- Each task MUST have `files`, `action`, `verify`, `done` fields' : ''}
403
+ </constraints>
404
+
405
+ <output>
406
+ Write plan to: ${QUICK_DIR}/${quick_id}-PLAN.md
407
+ Return: ## PLANNING COMPLETE with plan path
408
+ </output>
409
+ ",
410
+ subagent_type="gsd-planner",
411
+ model="{planner_model}",
412
+ description="Quick plan: ${DESCRIPTION}"
413
+ )
414
+ ```
415
+
416
+ After planner returns:
417
+ 1. Verify plan exists at `${QUICK_DIR}/${quick_id}-PLAN.md`
418
+ 2. Extract plan count (typically 1 for quick tasks)
419
+ 3. Report: "Plan created: ${QUICK_DIR}/${quick_id}-PLAN.md"
420
+
421
+ If plan not found, error: "Planner failed to create ${quick_id}-PLAN.md"
422
+
423
+ ---
424
+
425
+ **Step 5.5: Plan-checker loop (only when `$FULL_MODE`)**
426
+
427
+ Skip this step entirely if NOT `$FULL_MODE`.
428
+
429
+ Display banner:
430
+ ```
431
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
432
+ GSD ► CHECKING PLAN
433
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
434
+
435
+ ◆ Spawning plan checker...
436
+ ```
437
+
438
+ Checker prompt:
439
+
440
+ ```markdown
441
+ <verification_context>
442
+ **Mode:** quick-full
443
+ **Task Description:** ${DESCRIPTION}
444
+
445
+ <files_to_read>
446
+ - ${QUICK_DIR}/${quick_id}-PLAN.md (Plan to verify)
447
+ </files_to_read>
448
+
449
+ ${AGENT_SKILLS_CHECKER}
450
+
451
+ **Scope:** This is a quick task, not a full phase. Skip checks that require a ROADMAP phase goal.
452
+ </verification_context>
453
+
454
+ <check_dimensions>
455
+ - Requirement coverage: Does the plan address the task description?
456
+ - Task completeness: Do tasks have files, action, verify, done fields?
457
+ - Key links: Are referenced files real?
458
+ - Scope sanity: Is this appropriately sized for a quick task (1-3 tasks)?
459
+ - must_haves derivation: Are must_haves traceable to the task description?
460
+
461
+ Skip: cross-plan deps (single plan), ROADMAP alignment
462
+ ${DISCUSS_MODE ? '- Context compliance: Does the plan honor locked decisions from CONTEXT.md?' : '- Skip: context compliance (no CONTEXT.md)'}
463
+ </check_dimensions>
464
+
465
+ <expected_output>
466
+ - ## VERIFICATION PASSED — all checks pass
467
+ - ## ISSUES FOUND — structured issue list
468
+ </expected_output>
469
+ ```
470
+
471
+ ```
472
+ Task(
473
+ prompt=checker_prompt,
474
+ subagent_type="gsd-plan-checker",
475
+ model="{checker_model}",
476
+ description="Check quick plan: ${DESCRIPTION}"
477
+ )
478
+ ```
479
+
480
+ **Handle checker return:**
481
+
482
+ - **`## VERIFICATION PASSED`:** Display confirmation, proceed to step 6.
483
+ - **`## ISSUES FOUND`:** Display issues, check iteration count, enter revision loop.
484
+
485
+ **Revision loop (max 2 iterations):**
486
+
487
+ Track `iteration_count` (starts at 1 after initial plan + check).
488
+
489
+ **If iteration_count < 2:**
490
+
491
+ Display: `Sending back to planner for revision... (iteration ${N}/2)`
492
+
493
+ Revision prompt:
494
+
495
+ ```markdown
496
+ <revision_context>
497
+ **Mode:** quick-full (revision)
498
+
499
+ <files_to_read>
500
+ - ${QUICK_DIR}/${quick_id}-PLAN.md (Existing plan)
501
+ </files_to_read>
502
+
503
+ ${AGENT_SKILLS_PLANNER}
504
+
505
+ **Checker issues:** ${structured_issues_from_checker}
506
+
507
+ </revision_context>
508
+
509
+ <instructions>
510
+ Make targeted updates to address checker issues.
511
+ Do NOT replan from scratch unless issues are fundamental.
512
+ Return what changed.
513
+ </instructions>
514
+ ```
515
+
516
+ ```
517
+ Task(
518
+ prompt=revision_prompt,
519
+ subagent_type="gsd-planner",
520
+ model="{planner_model}",
521
+ description="Revise quick plan: ${DESCRIPTION}"
522
+ )
523
+ ```
524
+
525
+ After planner returns → spawn checker again, increment iteration_count.
526
+
527
+ **If iteration_count >= 2:**
528
+
529
+ Display: `Max iterations reached. ${N} issues remain:` + issue list
530
+
531
+ Offer: 1) Force proceed, 2) Abort
532
+
533
+ ---
534
+
535
+ **Step 6: Spawn executor**
536
+
537
+ Spawn gsd-executor with plan reference:
538
+
539
+ ```
540
+ Task(
541
+ prompt="
542
+ Execute quick task ${quick_id}.
543
+
544
+ <files_to_read>
545
+ - ${QUICK_DIR}/${quick_id}-PLAN.md (Plan)
546
+ - .planning/STATE.md (Project state)
547
+ - ./CLAUDE.md (Project instructions, if exists)
548
+ - .claude/skills/ or .agents/skills/ (Project skills, if either exists — list skills, read SKILL.md for each, follow relevant rules during implementation)
549
+ </files_to_read>
550
+
551
+ ${AGENT_SKILLS_EXECUTOR}
552
+
553
+ <constraints>
554
+ - Execute all tasks in the plan
555
+ - Commit each task atomically
556
+ - Create summary at: ${QUICK_DIR}/${quick_id}-SUMMARY.md
557
+ - Do NOT update ROADMAP.md (quick tasks are separate from planned phases)
558
+ </constraints>
559
+ ",
560
+ subagent_type="gsd-executor",
561
+ model="{executor_model}",
562
+ isolation="worktree",
563
+ description="Execute: ${DESCRIPTION}"
564
+ )
565
+ ```
566
+
567
+ After executor returns:
568
+ 1. Verify summary exists at `${QUICK_DIR}/${quick_id}-SUMMARY.md`
569
+ 2. Extract commit hash from executor output
570
+ 3. Report completion status
571
+
572
+ **Known Claude Code bug (classifyHandoffIfNeeded):** If executor reports "failed" with error `classifyHandoffIfNeeded is not defined`, this is a Claude Code runtime bug — not a real failure. Check if summary file exists and git log shows commits. If so, treat as successful.
573
+
574
+ If summary not found, error: "Executor failed to create ${quick_id}-SUMMARY.md"
575
+
576
+ Note: For quick tasks producing multiple plans (rare), spawn executors in parallel waves per execute-phase patterns.
577
+
578
+ ---
579
+
580
+ **Step 6.5: Verification (only when `$FULL_MODE`)**
581
+
582
+ Skip this step entirely if NOT `$FULL_MODE`.
583
+
584
+ Display banner:
585
+ ```
586
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
587
+ GSD ► VERIFYING RESULTS
588
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
589
+
590
+ ◆ Spawning verifier...
591
+ ```
592
+
593
+ ```
594
+ Task(
595
+ prompt="Verify quick task goal achievement.
596
+ Task directory: ${QUICK_DIR}
597
+ Task goal: ${DESCRIPTION}
598
+
599
+ <files_to_read>
600
+ - ${QUICK_DIR}/${quick_id}-PLAN.md (Plan)
601
+ </files_to_read>
602
+
603
+ ${AGENT_SKILLS_VERIFIER}
604
+
605
+ Check must_haves against actual codebase. Create VERIFICATION.md at ${QUICK_DIR}/${quick_id}-VERIFICATION.md.",
606
+ subagent_type="gsd-verifier",
607
+ model="{verifier_model}",
608
+ description="Verify: ${DESCRIPTION}"
609
+ )
610
+ ```
611
+
612
+ Read verification status:
613
+ ```bash
614
+ grep "^status:" "${QUICK_DIR}/${quick_id}-VERIFICATION.md" | cut -d: -f2 | tr -d ' '
615
+ ```
616
+
617
+ Store as `$VERIFICATION_STATUS`.
618
+
619
+ | Status | Action |
620
+ |--------|--------|
621
+ | `passed` | Store `$VERIFICATION_STATUS = "Verified"`, continue to step 7 |
622
+ | `human_needed` | Display items needing manual check, store `$VERIFICATION_STATUS = "Needs Review"`, continue |
623
+ | `gaps_found` | Display gap summary, offer: 1) Re-run executor to fix gaps, 2) Accept as-is. Store `$VERIFICATION_STATUS = "Gaps"` |
624
+
625
+ ---
626
+
627
+ **Step 7: Update STATE.md**
628
+
629
+ Update STATE.md with quick task completion record.
630
+
631
+ **7a. Check if "Quick Tasks Completed" section exists:**
632
+
633
+ Read STATE.md and check for `### Quick Tasks Completed` section.
634
+
635
+ **7b. If section doesn't exist, create it:**
636
+
637
+ Insert after `### Blockers/Concerns` section:
638
+
639
+ **If `$FULL_MODE`:**
640
+ ```markdown
641
+ ### Quick Tasks Completed
642
+
643
+ | # | Description | Date | Commit | Status | Directory |
644
+ |---|-------------|------|--------|--------|-----------|
645
+ ```
646
+
647
+ **If NOT `$FULL_MODE`:**
648
+ ```markdown
649
+ ### Quick Tasks Completed
650
+
651
+ | # | Description | Date | Commit | Directory |
652
+ |---|-------------|------|--------|-----------|
653
+ ```
654
+
655
+ **Note:** If the table already exists, match its existing column format. If adding `--full` to a project that already has quick tasks without a Status column, add the Status column to the header and separator rows, and leave Status empty for the new row's predecessors.
656
+
657
+ **7c. Append new row to table:**
658
+
659
+ Use `date` from init:
660
+
661
+ **If `$FULL_MODE` (or table has Status column):**
662
+ ```markdown
663
+ | ${quick_id} | ${DESCRIPTION} | ${date} | ${commit_hash} | ${VERIFICATION_STATUS} | [${quick_id}-${slug}](./quick/${quick_id}-${slug}/) |
664
+ ```
665
+
666
+ **If NOT `$FULL_MODE` (and table has no Status column):**
667
+ ```markdown
668
+ | ${quick_id} | ${DESCRIPTION} | ${date} | ${commit_hash} | [${quick_id}-${slug}](./quick/${quick_id}-${slug}/) |
669
+ ```
670
+
671
+ **7d. Update "Last activity" line:**
672
+
673
+ Use `date` from init:
674
+ ```
675
+ Last activity: ${date} - Completed quick task ${quick_id}: ${DESCRIPTION}
676
+ ```
677
+
678
+ Use Edit tool to make these changes atomically
679
+
680
+ ---
681
+
682
+ **Step 8: Final commit and completion**
683
+
684
+ Stage and commit quick task artifacts:
685
+
686
+ Build file list:
687
+ - `${QUICK_DIR}/${quick_id}-PLAN.md`
688
+ - `${QUICK_DIR}/${quick_id}-SUMMARY.md`
689
+ - `.planning/STATE.md`
690
+ - If `$DISCUSS_MODE` and context file exists: `${QUICK_DIR}/${quick_id}-CONTEXT.md`
691
+ - If `$RESEARCH_MODE` and research file exists: `${QUICK_DIR}/${quick_id}-RESEARCH.md`
692
+ - If `$FULL_MODE` and verification file exists: `${QUICK_DIR}/${quick_id}-VERIFICATION.md`
693
+
694
+ ```bash
695
+ node "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" commit "docs(quick-${quick_id}): ${DESCRIPTION}" --files ${file_list}
696
+ ```
697
+
698
+ Get final commit hash:
699
+ ```bash
700
+ commit_hash=$(git rev-parse --short HEAD)
701
+ ```
702
+
703
+ Display completion output:
704
+
705
+ **If `$FULL_MODE`:**
706
+ ```
707
+ ---
708
+
709
+ GSD > QUICK TASK COMPLETE (FULL MODE)
710
+
711
+ Quick Task ${quick_id}: ${DESCRIPTION}
712
+
713
+ ${RESEARCH_MODE ? 'Research: ' + QUICK_DIR + '/' + quick_id + '-RESEARCH.md' : ''}
714
+ Summary: ${QUICK_DIR}/${quick_id}-SUMMARY.md
715
+ Verification: ${QUICK_DIR}/${quick_id}-VERIFICATION.md (${VERIFICATION_STATUS})
716
+ Commit: ${commit_hash}
717
+
718
+ ---
719
+
720
+ Ready for next task: /gsd:quick ${GSD_WS}
721
+ ```
722
+
723
+ **If NOT `$FULL_MODE`:**
724
+ ```
725
+ ---
726
+
727
+ GSD > QUICK TASK COMPLETE
728
+
729
+ Quick Task ${quick_id}: ${DESCRIPTION}
730
+
731
+ ${RESEARCH_MODE ? 'Research: ' + QUICK_DIR + '/' + quick_id + '-RESEARCH.md' : ''}
732
+ Summary: ${QUICK_DIR}/${quick_id}-SUMMARY.md
733
+ Commit: ${commit_hash}
734
+
735
+ ---
736
+
737
+ Ready for next task: /gsd:quick ${GSD_WS}
738
+ ```
739
+
740
+ </process>
741
+
742
+ <success_criteria>
743
+ - [ ] ROADMAP.md validation passes
744
+ - [ ] User provides task description
745
+ - [ ] `--full`, `--discuss`, and `--research` flags parsed from arguments when present
746
+ - [ ] Slug generated (lowercase, hyphens, max 40 chars)
747
+ - [ ] Quick ID generated (YYMMDD-xxx format, 2s Base36 precision)
748
+ - [ ] Directory created at `.planning/quick/YYMMDD-xxx-slug/`
749
+ - [ ] (--discuss) Gray areas identified and presented, decisions captured in `${quick_id}-CONTEXT.md`
750
+ - [ ] (--research) Research agent spawned, `${quick_id}-RESEARCH.md` created
751
+ - [ ] `${quick_id}-PLAN.md` created by planner (honors CONTEXT.md decisions when --discuss, uses RESEARCH.md findings when --research)
752
+ - [ ] (--full) Plan checker validates plan, revision loop capped at 2
753
+ - [ ] `${quick_id}-SUMMARY.md` created by executor
754
+ - [ ] (--full) `${quick_id}-VERIFICATION.md` created by verifier
755
+ - [ ] STATE.md updated with quick task row (Status column when --full)
756
+ - [ ] Artifacts committed
757
+ </success_criteria>