@bhargavvc/sdd-cc 1.30.1 → 1.35.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 (242) hide show
  1. package/README.ja-JP.md +144 -110
  2. package/README.ko-KR.md +143 -107
  3. package/README.md +183 -112
  4. package/README.pt-BR.md +90 -52
  5. package/README.zh-CN.md +141 -101
  6. package/agents/sdd-advisor-researcher.md +23 -0
  7. package/agents/sdd-ai-researcher.md +133 -0
  8. package/agents/sdd-code-fixer.md +516 -0
  9. package/agents/sdd-code-reviewer.md +355 -0
  10. package/agents/sdd-codebase-mapper.md +3 -3
  11. package/agents/sdd-debugger.md +17 -5
  12. package/agents/sdd-doc-verifier.md +201 -0
  13. package/agents/sdd-doc-writer.md +602 -0
  14. package/agents/sdd-domain-researcher.md +153 -0
  15. package/agents/sdd-eval-auditor.md +164 -0
  16. package/agents/sdd-eval-planner.md +154 -0
  17. package/agents/sdd-executor.md +87 -4
  18. package/agents/sdd-framework-selector.md +160 -0
  19. package/agents/sdd-intel-updater.md +314 -0
  20. package/agents/sdd-nyquist-auditor.md +1 -1
  21. package/agents/sdd-phase-researcher.md +71 -4
  22. package/agents/sdd-plan-checker.md +100 -6
  23. package/agents/sdd-planner.md +145 -206
  24. package/agents/sdd-project-researcher.md +25 -2
  25. package/agents/sdd-research-synthesizer.md +3 -3
  26. package/agents/sdd-roadmapper.md +6 -6
  27. package/agents/sdd-security-auditor.md +128 -0
  28. package/agents/sdd-ui-auditor.md +43 -3
  29. package/agents/sdd-ui-checker.md +5 -5
  30. package/agents/sdd-ui-researcher.md +27 -4
  31. package/agents/sdd-user-profiler.md +2 -2
  32. package/agents/sdd-verifier.md +142 -22
  33. package/bin/install.js +2145 -545
  34. package/commands/sdd/add-backlog.md +5 -5
  35. package/commands/sdd/add-tests.md +2 -2
  36. package/commands/sdd/ai-integration-phase.md +36 -0
  37. package/commands/sdd/analyze-dependencies.md +34 -0
  38. package/commands/sdd/audit-fix.md +33 -0
  39. package/commands/sdd/autonomous.md +7 -2
  40. package/commands/sdd/cleanup.md +5 -0
  41. package/commands/sdd/code-review-fix.md +52 -0
  42. package/commands/sdd/code-review.md +55 -0
  43. package/commands/sdd/complete-milestone.md +6 -6
  44. package/commands/sdd/debug.md +22 -9
  45. package/commands/sdd/discuss-phase.md +7 -2
  46. package/commands/sdd/do.md +1 -1
  47. package/commands/sdd/docs-update.md +48 -0
  48. package/commands/sdd/eval-review.md +32 -0
  49. package/commands/sdd/execute-phase.md +4 -0
  50. package/commands/sdd/explore.md +27 -0
  51. package/commands/sdd/fast.md +2 -2
  52. package/commands/sdd/from-sdd2.md +45 -0
  53. package/commands/sdd/help.md +2 -0
  54. package/commands/sdd/import.md +36 -0
  55. package/commands/sdd/intel.md +179 -0
  56. package/commands/sdd/join-discord.md +2 -1
  57. package/commands/sdd/manager.md +1 -0
  58. package/commands/sdd/map-codebase.md +3 -3
  59. package/commands/sdd/new-milestone.md +1 -1
  60. package/commands/sdd/new-project.md +5 -1
  61. package/commands/sdd/new-workspace.md +1 -1
  62. package/commands/sdd/next.md +2 -0
  63. package/commands/sdd/plan-milestone-gaps.md +2 -2
  64. package/commands/sdd/plan-phase.md +6 -1
  65. package/commands/sdd/plant-seed.md +1 -1
  66. package/commands/sdd/profile-user.md +1 -1
  67. package/commands/sdd/quick.md +5 -3
  68. package/commands/sdd/reapply-patches.md +230 -42
  69. package/commands/sdd/research-phase.md +3 -3
  70. package/commands/sdd/review-backlog.md +1 -0
  71. package/commands/sdd/review.md +6 -3
  72. package/commands/sdd/scan.md +26 -0
  73. package/commands/sdd/secure-phase.md +35 -0
  74. package/commands/sdd/ship.md +1 -1
  75. package/commands/sdd/thread.md +5 -5
  76. package/commands/sdd/undo.md +34 -0
  77. package/commands/sdd/verify-work.md +1 -1
  78. package/commands/sdd/workstreams.md +17 -11
  79. package/hooks/dist/sdd-check-update.js +33 -8
  80. package/hooks/dist/sdd-context-monitor.js +17 -8
  81. package/hooks/dist/sdd-phase-boundary.sh +27 -0
  82. package/hooks/dist/sdd-prompt-guard.js +1 -0
  83. package/hooks/dist/sdd-read-guard.js +82 -0
  84. package/hooks/dist/sdd-session-state.sh +33 -0
  85. package/hooks/dist/sdd-statusline.js +137 -15
  86. package/hooks/dist/sdd-validate-commit.sh +47 -0
  87. package/hooks/dist/sdd-workflow-guard.js +4 -4
  88. package/hooks/sdd-check-update.js +139 -0
  89. package/hooks/sdd-context-monitor.js +165 -0
  90. package/hooks/sdd-phase-boundary.sh +27 -0
  91. package/hooks/sdd-prompt-guard.js +97 -0
  92. package/hooks/sdd-read-guard.js +82 -0
  93. package/hooks/sdd-session-state.sh +33 -0
  94. package/hooks/sdd-statusline.js +241 -0
  95. package/hooks/sdd-validate-commit.sh +47 -0
  96. package/hooks/sdd-workflow-guard.js +94 -0
  97. package/package.json +3 -3
  98. package/scripts/build-hooks.js +18 -7
  99. package/scripts/prompt-injection-scan.sh +1 -0
  100. package/scripts/rebrand-gsd-to-sdd.sh +221 -220
  101. package/scripts/run-tests.cjs +5 -1
  102. package/scripts/sync-upstream.sh +1 -1
  103. package/sdd/bin/lib/commands.cjs +79 -17
  104. package/sdd/bin/lib/config.cjs +90 -48
  105. package/sdd/bin/lib/core.cjs +452 -87
  106. package/sdd/bin/lib/docs.cjs +267 -0
  107. package/sdd/bin/lib/frontmatter.cjs +381 -336
  108. package/sdd/bin/lib/init.cjs +110 -16
  109. package/sdd/bin/lib/intel.cjs +660 -0
  110. package/sdd/bin/lib/learnings.cjs +378 -0
  111. package/sdd/bin/lib/milestone.cjs +42 -11
  112. package/sdd/bin/lib/model-profiles.cjs +17 -15
  113. package/sdd/bin/lib/phase.cjs +367 -288
  114. package/sdd/bin/lib/profile-output.cjs +106 -10
  115. package/sdd/bin/lib/roadmap.cjs +146 -115
  116. package/sdd/bin/lib/schema-detect.cjs +238 -0
  117. package/sdd/bin/lib/sdd2-import.cjs +511 -0
  118. package/sdd/bin/lib/security.cjs +124 -3
  119. package/sdd/bin/lib/state.cjs +648 -264
  120. package/sdd/bin/lib/template.cjs +8 -4
  121. package/sdd/bin/lib/verify.cjs +209 -28
  122. package/sdd/bin/lib/workstream.cjs +7 -3
  123. package/sdd/bin/sdd-tools.cjs +184 -12
  124. package/sdd/contexts/dev.md +21 -0
  125. package/sdd/contexts/research.md +22 -0
  126. package/sdd/contexts/review.md +22 -0
  127. package/sdd/references/agent-contracts.md +79 -0
  128. package/sdd/references/ai-evals.md +156 -0
  129. package/sdd/references/ai-frameworks.md +186 -0
  130. package/sdd/references/artifact-types.md +113 -0
  131. package/sdd/references/common-bug-patterns.md +114 -0
  132. package/sdd/references/context-budget.md +49 -0
  133. package/sdd/references/continuation-format.md +25 -25
  134. package/sdd/references/domain-probes.md +125 -0
  135. package/sdd/references/few-shot-examples/plan-checker.md +73 -0
  136. package/sdd/references/few-shot-examples/verifier.md +109 -0
  137. package/sdd/references/gate-prompts.md +100 -0
  138. package/sdd/references/gates.md +70 -0
  139. package/sdd/references/git-integration.md +1 -1
  140. package/sdd/references/ios-scaffold.md +123 -0
  141. package/sdd/references/model-profile-resolution.md +2 -0
  142. package/sdd/references/model-profiles.md +24 -18
  143. package/sdd/references/planner-gap-closure.md +62 -0
  144. package/sdd/references/planner-reviews.md +39 -0
  145. package/sdd/references/planner-revision.md +87 -0
  146. package/sdd/references/planning-config.md +252 -0
  147. package/sdd/references/revision-loop.md +97 -0
  148. package/sdd/references/thinking-models-debug.md +44 -0
  149. package/sdd/references/thinking-models-execution.md +50 -0
  150. package/sdd/references/thinking-models-planning.md +62 -0
  151. package/sdd/references/thinking-models-research.md +50 -0
  152. package/sdd/references/thinking-models-verification.md +55 -0
  153. package/sdd/references/thinking-partner.md +96 -0
  154. package/sdd/references/ui-brand.md +4 -4
  155. package/sdd/references/universal-anti-patterns.md +63 -0
  156. package/sdd/references/verification-overrides.md +227 -0
  157. package/sdd/references/workstream-flag.md +56 -3
  158. package/sdd/templates/AI-SPEC.md +246 -0
  159. package/sdd/templates/DEBUG.md +1 -1
  160. package/sdd/templates/SECURITY.md +61 -0
  161. package/sdd/templates/UAT.md +4 -4
  162. package/sdd/templates/VALIDATION.md +4 -4
  163. package/sdd/templates/claude-md.md +32 -9
  164. package/sdd/templates/config.json +4 -0
  165. package/sdd/templates/debug-subagent-prompt.md +1 -1
  166. package/sdd/templates/dev-preferences.md +1 -1
  167. package/sdd/templates/discovery.md +2 -2
  168. package/sdd/templates/phase-prompt.md +1 -1
  169. package/sdd/templates/planner-subagent-prompt.md +3 -3
  170. package/sdd/templates/project.md +1 -1
  171. package/sdd/templates/research.md +1 -1
  172. package/sdd/templates/state.md +2 -2
  173. package/sdd/workflows/add-phase.md +8 -8
  174. package/sdd/workflows/add-tests.md +12 -9
  175. package/sdd/workflows/add-todo.md +5 -3
  176. package/sdd/workflows/ai-integration-phase.md +284 -0
  177. package/sdd/workflows/analyze-dependencies.md +96 -0
  178. package/sdd/workflows/audit-fix.md +157 -0
  179. package/sdd/workflows/audit-milestone.md +11 -11
  180. package/sdd/workflows/audit-uat.md +2 -2
  181. package/sdd/workflows/autonomous.md +195 -27
  182. package/sdd/workflows/check-todos.md +12 -10
  183. package/sdd/workflows/cleanup.md +2 -0
  184. package/sdd/workflows/code-review-fix.md +497 -0
  185. package/sdd/workflows/code-review.md +515 -0
  186. package/sdd/workflows/complete-milestone.md +56 -22
  187. package/sdd/workflows/diagnose-issues.md +10 -3
  188. package/sdd/workflows/discovery-phase.md +5 -3
  189. package/sdd/workflows/discuss-phase-assumptions.md +24 -6
  190. package/sdd/workflows/discuss-phase-power.md +291 -0
  191. package/sdd/workflows/discuss-phase.md +173 -21
  192. package/sdd/workflows/do.md +23 -21
  193. package/sdd/workflows/docs-update.md +1155 -0
  194. package/sdd/workflows/eval-review.md +155 -0
  195. package/sdd/workflows/execute-phase.md +594 -38
  196. package/sdd/workflows/execute-plan.md +67 -96
  197. package/sdd/workflows/explore.md +139 -0
  198. package/sdd/workflows/fast.md +5 -5
  199. package/sdd/workflows/forensics.md +2 -2
  200. package/sdd/workflows/health.md +4 -4
  201. package/sdd/workflows/help.md +122 -119
  202. package/sdd/workflows/import.md +276 -0
  203. package/sdd/workflows/inbox.md +387 -0
  204. package/sdd/workflows/insert-phase.md +7 -7
  205. package/sdd/workflows/list-phase-assumptions.md +4 -4
  206. package/sdd/workflows/list-workspaces.md +2 -2
  207. package/sdd/workflows/manager.md +35 -32
  208. package/sdd/workflows/map-codebase.md +7 -5
  209. package/sdd/workflows/milestone-summary.md +2 -2
  210. package/sdd/workflows/new-milestone.md +17 -9
  211. package/sdd/workflows/new-project.md +50 -25
  212. package/sdd/workflows/new-workspace.md +7 -5
  213. package/sdd/workflows/next.md +67 -11
  214. package/sdd/workflows/note.md +9 -7
  215. package/sdd/workflows/pause-work.md +75 -12
  216. package/sdd/workflows/plan-milestone-gaps.md +8 -8
  217. package/sdd/workflows/plan-phase.md +294 -42
  218. package/sdd/workflows/plant-seed.md +6 -3
  219. package/sdd/workflows/pr-branch.md +42 -14
  220. package/sdd/workflows/profile-user.md +9 -7
  221. package/sdd/workflows/progress.md +45 -45
  222. package/sdd/workflows/quick.md +195 -47
  223. package/sdd/workflows/remove-phase.md +6 -6
  224. package/sdd/workflows/remove-workspace.md +3 -1
  225. package/sdd/workflows/research-phase.md +2 -2
  226. package/sdd/workflows/resume-project.md +12 -12
  227. package/sdd/workflows/review.md +109 -9
  228. package/sdd/workflows/scan.md +102 -0
  229. package/sdd/workflows/secure-phase.md +166 -0
  230. package/sdd/workflows/session-report.md +2 -2
  231. package/sdd/workflows/settings.md +38 -12
  232. package/sdd/workflows/ship.md +21 -9
  233. package/sdd/workflows/stats.md +1 -1
  234. package/sdd/workflows/transition.md +23 -23
  235. package/sdd/workflows/ui-phase.md +15 -7
  236. package/sdd/workflows/ui-review.md +29 -4
  237. package/sdd/workflows/undo.md +314 -0
  238. package/sdd/workflows/update.md +171 -20
  239. package/sdd/workflows/validate-phase.md +6 -4
  240. package/sdd/workflows/verify-phase.md +210 -6
  241. package/sdd/workflows/verify-work.md +83 -9
  242. package/sdd/commands/sdd/workstreams.md +0 -63
@@ -30,6 +30,8 @@ PROFILE_PATH="$HOME/.claude/sdd/USER-PROFILE.md"
30
30
 
31
31
  **If profile exists AND --refresh NOT set AND --questionnaire NOT set:**
32
32
 
33
+
34
+ **Text mode (`workflow.text_mode: true` in config or `--text` flag):** Set `TEXT_MODE=true` if `--text` is present in `$ARGUMENTS` OR `text_mode` from init JSON is `true`. When TEXT_MODE is active, replace every `AskUserQuestion` call with a plain-text numbered list and ask the user to type their choice number. This is required for non-Claude runtimes (OpenAI Codex, Gemini CLI, etc.) where `AskUserQuestion` is not available.
33
35
  Use AskUserQuestion:
34
36
  - header: "Existing Profile"
35
37
  - question: "You already have a profile. What would you like to do?"
@@ -46,7 +48,7 @@ If "Cancel": Display "No changes made." and exit.
46
48
 
47
49
  Backup existing profile:
48
50
  ```bash
49
- cp "$HOME/.claude/sdd/USER-PROFILE.md" "$HOME/.claude/sdd/USER-PROFILE.backup.md"
51
+ cp "$HOME/.claude/sdd/USER-PROFILE.md" "$HOME/.claude/USER-PROFILE.backup.md"
50
52
  ```
51
53
 
52
54
  Display: "Re-analyzing your sessions to update your profile."
@@ -118,7 +120,7 @@ Use AskUserQuestion:
118
120
  - options:
119
121
  - "Let's go" -- Proceed to step 3 (session analysis)
120
122
  - "Use questionnaire instead" -- Jump to step 4b (questionnaire path)
121
- - "Not now" -- Display "No worries. Run /sdd:profile-user when ready." and exit
123
+ - "Not now" -- Display "No worries. Run /sdd-profile-user when ready." and exit
122
124
 
123
125
  ---
124
126
 
@@ -333,7 +335,7 @@ Use AskUserQuestion with multiSelect:
333
335
  - header: "Artifacts"
334
336
  - question: "Which artifacts should I generate?"
335
337
  - options (ALL pre-selected by default):
336
- - "/sdd:dev-preferences command file" -- "Load your preferences in any session"
338
+ - "/sdd-dev-preferences command file" -- "Load your preferences in any session"
337
339
  - "CLAUDE.md profile section" -- "Add profile to this project's CLAUDE.md"
338
340
  - "Global CLAUDE.md" -- "Add profile to $HOME/.claude/CLAUDE.md for all projects"
339
341
 
@@ -345,13 +347,13 @@ Use AskUserQuestion with multiSelect:
345
347
 
346
348
  Generate selected artifacts sequentially (file I/O is fast, no benefit from parallel agents):
347
349
 
348
- **For /sdd:dev-preferences (if selected):**
350
+ **For /sdd-dev-preferences (if selected):**
349
351
 
350
352
  ```bash
351
353
  node $HOME/.claude/sdd/bin/sdd-tools.cjs generate-dev-preferences --analysis "$ANALYSIS_PATH" --json 2>/dev/null
352
354
  ```
353
355
 
354
- Display: "✓ Generated /sdd:dev-preferences at $HOME/.claude/commands/sdd/dev-preferences.md"
356
+ Display: "✓ Generated /sdd-dev-preferences at $HOME/.claude/commands/sdd/dev-preferences.md"
355
357
 
356
358
  **For CLAUDE.md profile section (if selected):**
357
359
 
@@ -381,7 +383,7 @@ Read both old backup and new analysis to compare dimension ratings/confidence.
381
383
 
382
384
  Read the backed-up profile:
383
385
  ```bash
384
- BACKUP_PATH="$HOME/.claude/sdd/USER-PROFILE.backup.md"
386
+ BACKUP_PATH="$HOME/.claude/USER-PROFILE.backup.md"
385
387
  ```
386
388
 
387
389
  Compare each dimension's rating and confidence between old and new. Display diff table showing only changed dimensions:
@@ -410,7 +412,7 @@ Your profile: $HOME/.claude/sdd/USER-PROFILE.md
410
412
  Then list paths for each generated artifact:
411
413
  ```
412
414
  Artifacts:
413
- ✓ /sdd:dev-preferences $HOME/.claude/commands/sdd/dev-preferences.md
415
+ ✓ /sdd-dev-preferences $HOME/.claude/commands/sdd/dev-preferences.md
414
416
  ✓ CLAUDE.md section ./CLAUDE.md
415
417
  ✓ Global CLAUDE.md $HOME/.claude/CLAUDE.md
416
418
  ```
@@ -27,18 +27,18 @@ If `project_exists` is false (no `.planning/` directory):
27
27
  ```
28
28
  No planning structure found.
29
29
 
30
- Run /sdd:new-project to start a new project.
30
+ Run /sdd-new-project to start a new project.
31
31
  ```
32
32
 
33
33
  Exit.
34
34
 
35
- If missing STATE.md: suggest `/sdd:new-project`.
35
+ If missing STATE.md: suggest `/sdd-new-project`.
36
36
 
37
37
  **If ROADMAP.md missing but PROJECT.md exists:**
38
38
 
39
39
  This means a milestone was completed and archived. Go to **Route F** (between milestones).
40
40
 
41
- If missing both ROADMAP.md and PROJECT.md: suggest `/sdd:new-project`.
41
+ If missing both ROADMAP.md and PROJECT.md: suggest `/sdd-new-project`.
42
42
  </step>
43
43
 
44
44
  <step name="load">
@@ -123,10 +123,10 @@ CONTEXT: [✓ if has_context | - if not]
123
123
  - [e.g. jq -r '.blockers[].text' from state-snapshot]
124
124
 
125
125
  ## Pending Todos
126
- - [count] pending — /sdd:check-todos to review
126
+ - [count] pending — /sdd-check-todos to review
127
127
 
128
128
  ## Active Debug Sessions
129
- - [count] active — /sdd:debug to continue
129
+ - [count] active — /sdd-debug to continue
130
130
  (Only show this section if count > 0)
131
131
 
132
132
  ## What's Next
@@ -185,8 +185,8 @@ Track: `outstanding_debt` — `summary.total_items` from the audit.
185
185
  | {phase} | {filename} | {pending_count} pending, {skipped_count} skipped, {blocked_count} blocked |
186
186
  | {phase} | {filename} | human_needed — {count} items |
187
187
 
188
- Review: `/sdd:audit-uat ${SDD_WS}` — full cross-phase audit
189
- Resume testing: `/sdd:verify-work {phase} ${SDD_WS}` — retest specific phase
188
+ Review: `/sdd-audit-uat ${SDD_WS}` — full cross-phase audit
189
+ Resume testing: `/sdd-verify-work {phase} ${SDD_WS}` — retest specific phase
190
190
  ```
191
191
 
192
192
  This is a WARNING, not a blocker — routing proceeds normally. The debt is visible so the user can make an informed choice.
@@ -215,9 +215,9 @@ Read its `<objective>` section.
215
215
 
216
216
  **{phase}-{plan}: [Plan Name]** — [objective summary from PLAN.md]
217
217
 
218
- `/sdd:execute-phase {phase} ${SDD_WS}`
218
+ `/clear` then:
219
219
 
220
- <sub>`/clear` first → fresh context window</sub>
220
+ `/sdd-execute-phase {phase} ${SDD_WS}`
221
221
 
222
222
  ---
223
223
  ```
@@ -245,9 +245,9 @@ PHASE_HAS_UI=$(echo "$PHASE_SECTION" | grep -qi "UI hint.*yes" && echo "true" ||
245
245
  **Phase {N}: {Name}** — {Goal from ROADMAP.md}
246
246
  <sub>✓ Context gathered, ready to plan</sub>
247
247
 
248
- `/sdd:plan-phase {phase-number} ${SDD_WS}`
248
+ `/clear` then:
249
249
 
250
- <sub>`/clear` first → fresh context window</sub>
250
+ `/sdd-plan-phase {phase-number} ${SDD_WS}`
251
251
 
252
252
  ---
253
253
  ```
@@ -261,16 +261,16 @@ PHASE_HAS_UI=$(echo "$PHASE_SECTION" | grep -qi "UI hint.*yes" && echo "true" ||
261
261
 
262
262
  **Phase {N}: {Name}** — {Goal from ROADMAP.md}
263
263
 
264
- `/sdd:discuss-phase {phase}` — gather context and clarify approach
264
+ `/clear` then:
265
265
 
266
- <sub>`/clear` first fresh context window</sub>
266
+ `/sdd-discuss-phase {phase}` gather context and clarify approach
267
267
 
268
268
  ---
269
269
 
270
270
  **Also available:**
271
- - `/sdd:ui-phase {phase}` — generate UI design contract (recommended for frontend phases)
272
- - `/sdd:plan-phase {phase}` — skip discussion, plan directly
273
- - `/sdd:list-phase-assumptions {phase}` — see Claude's assumptions
271
+ - `/sdd-ui-phase {phase}` — generate UI design contract (recommended for frontend phases)
272
+ - `/sdd-plan-phase {phase}` — skip discussion, plan directly
273
+ - `/sdd-list-phase-assumptions {phase}` — see Claude's assumptions
274
274
 
275
275
  ---
276
276
  ```
@@ -284,15 +284,15 @@ PHASE_HAS_UI=$(echo "$PHASE_SECTION" | grep -qi "UI hint.*yes" && echo "true" ||
284
284
 
285
285
  **Phase {N}: {Name}** — {Goal from ROADMAP.md}
286
286
 
287
- `/sdd:discuss-phase {phase} ${SDD_WS}` — gather context and clarify approach
287
+ `/clear` then:
288
288
 
289
- <sub>`/clear` first fresh context window</sub>
289
+ `/sdd-discuss-phase {phase} ${SDD_WS}` gather context and clarify approach
290
290
 
291
291
  ---
292
292
 
293
293
  **Also available:**
294
- - `/sdd:plan-phase {phase} ${SDD_WS}` — skip discussion, plan directly
295
- - `/sdd:list-phase-assumptions {phase} ${SDD_WS}` — see Claude's assumptions
294
+ - `/sdd-plan-phase {phase} ${SDD_WS}` — skip discussion, plan directly
295
+ - `/sdd-list-phase-assumptions {phase} ${SDD_WS}` — see Claude's assumptions
296
296
 
297
297
  ---
298
298
  ```
@@ -310,15 +310,15 @@ UAT.md exists with gaps (diagnosed issues). User needs to plan fixes.
310
310
 
311
311
  **{phase_num}-UAT.md** has {N} gaps requiring fixes.
312
312
 
313
- `/sdd:plan-phase {phase} --gaps ${SDD_WS}`
313
+ `/clear` then:
314
314
 
315
- <sub>`/clear` first fresh context window</sub>
315
+ `/sdd-plan-phase {phase} --gaps ${SDD_WS}`
316
316
 
317
317
  ---
318
318
 
319
319
  **Also available:**
320
- - `/sdd:execute-phase {phase} ${SDD_WS}` — execute phase plans
321
- - `/sdd:verify-work {phase} ${SDD_WS}` — run more UAT testing
320
+ - `/sdd-execute-phase {phase} ${SDD_WS}` — execute phase plans
321
+ - `/sdd-verify-work {phase} ${SDD_WS}` — run more UAT testing
322
322
 
323
323
  ---
324
324
  ```
@@ -336,15 +336,15 @@ UAT.md exists with `status: partial` — testing session ended before all items
336
336
 
337
337
  **{phase_num}-UAT.md** has {N} unresolved tests (pending, blocked, or skipped).
338
338
 
339
- `/sdd:verify-work {phase} ${SDD_WS}` — resume testing from where you left off
339
+ `/clear` then:
340
340
 
341
- <sub>`/clear` first fresh context window</sub>
341
+ `/sdd-verify-work {phase} ${SDD_WS}` resume testing from where you left off
342
342
 
343
343
  ---
344
344
 
345
345
  **Also available:**
346
- - `/sdd:audit-uat ${SDD_WS}` — full cross-phase UAT audit
347
- - `/sdd:execute-phase {phase} ${SDD_WS}` — execute phase plans
346
+ - `/sdd-audit-uat ${SDD_WS}` — full cross-phase UAT audit
347
+ - `/sdd-execute-phase {phase} ${SDD_WS}` — execute phase plans
348
348
 
349
349
  ---
350
350
  ```
@@ -392,16 +392,16 @@ NEXT_HAS_UI=$(echo "$NEXT_PHASE_SECTION" | grep -qi "UI hint.*yes" && echo "true
392
392
 
393
393
  **Phase {Z+1}: {Name}** — {Goal from ROADMAP.md}
394
394
 
395
- `/sdd:discuss-phase {Z+1}` — gather context and clarify approach
395
+ `/clear` then:
396
396
 
397
- <sub>`/clear` first fresh context window</sub>
397
+ `/sdd-discuss-phase {Z+1}` gather context and clarify approach
398
398
 
399
399
  ---
400
400
 
401
401
  **Also available:**
402
- - `/sdd:ui-phase {Z+1}` — generate UI design contract (recommended for frontend phases)
403
- - `/sdd:plan-phase {Z+1}` — skip discussion, plan directly
404
- - `/sdd:verify-work {Z}` — user acceptance test before continuing
402
+ - `/sdd-ui-phase {Z+1}` — generate UI design contract (recommended for frontend phases)
403
+ - `/sdd-plan-phase {Z+1}` — skip discussion, plan directly
404
+ - `/sdd-verify-work {Z}` — user acceptance test before continuing
405
405
 
406
406
  ---
407
407
  ```
@@ -417,15 +417,15 @@ NEXT_HAS_UI=$(echo "$NEXT_PHASE_SECTION" | grep -qi "UI hint.*yes" && echo "true
417
417
 
418
418
  **Phase {Z+1}: {Name}** — {Goal from ROADMAP.md}
419
419
 
420
- `/sdd:discuss-phase {Z+1} ${SDD_WS}` — gather context and clarify approach
420
+ `/clear` then:
421
421
 
422
- <sub>`/clear` first fresh context window</sub>
422
+ `/sdd-discuss-phase {Z+1} ${SDD_WS}` gather context and clarify approach
423
423
 
424
424
  ---
425
425
 
426
426
  **Also available:**
427
- - `/sdd:plan-phase {Z+1} ${SDD_WS}` — skip discussion, plan directly
428
- - `/sdd:verify-work {Z} ${SDD_WS}` — user acceptance test before continuing
427
+ - `/sdd-plan-phase {Z+1} ${SDD_WS}` — skip discussion, plan directly
428
+ - `/sdd-verify-work {Z} ${SDD_WS}` — user acceptance test before continuing
429
429
 
430
430
  ---
431
431
  ```
@@ -445,14 +445,14 @@ All {N} phases finished!
445
445
 
446
446
  **Complete Milestone** — archive and prepare for next
447
447
 
448
- `/sdd:complete-milestone ${SDD_WS}`
448
+ `/clear` then:
449
449
 
450
- <sub>`/clear` first → fresh context window</sub>
450
+ `/sdd-complete-milestone ${SDD_WS}`
451
451
 
452
452
  ---
453
453
 
454
454
  **Also available:**
455
- - `/sdd:verify-work ${SDD_WS}` — user acceptance test before completing milestone
455
+ - `/sdd-verify-work ${SDD_WS}` — user acceptance test before completing milestone
456
456
 
457
457
  ---
458
458
  ```
@@ -476,9 +476,9 @@ Ready to plan the next milestone.
476
476
 
477
477
  **Start Next Milestone** — questioning → research → requirements → roadmap
478
478
 
479
- `/sdd:new-milestone ${SDD_WS}`
479
+ `/clear` then:
480
480
 
481
- <sub>`/clear` first → fresh context window</sub>
481
+ `/sdd-new-milestone ${SDD_WS}`
482
482
 
483
483
  ---
484
484
  ```
@@ -488,10 +488,10 @@ Ready to plan the next milestone.
488
488
  <step name="edge_cases">
489
489
  **Handle edge cases:**
490
490
 
491
- - Phase complete but next phase not planned → offer `/sdd:plan-phase [next] ${SDD_WS}`
491
+ - Phase complete but next phase not planned → offer `/sdd-plan-phase [next] ${SDD_WS}`
492
492
  - All work complete → offer milestone completion
493
493
  - Blockers present → highlight before offering to continue
494
- - Handoff file exists → mention it, offer `/sdd:resume-work ${SDD_WS}`
494
+ - Handoff file exists → mention it, offer `/sdd-resume-work ${SDD_WS}`
495
495
  </step>
496
496
 
497
497
  </process>
@@ -501,7 +501,7 @@ Ready to plan the next milestone.
501
501
  - [ ] Rich context provided (recent work, decisions, issues)
502
502
  - [ ] Current position clear with visual progress
503
503
  - [ ] What's next clearly explained
504
- - [ ] Smart routing: /sdd:execute-phase if plans exist, /sdd:plan-phase if not
504
+ - [ ] Smart routing: /sdd-execute-phase if plans exist, /sdd-plan-phase if not
505
505
  - [ ] User confirms before any action
506
506
  - [ ] Seamless handoff to appropriate sdd command
507
507
  </success_criteria>