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,1442 @@
1
+ /**
2
+ * Init — Compound init commands for workflow bootstrapping
3
+ */
4
+
5
+ const fs = require('fs');
6
+ const path = require('path');
7
+ const { execSync } = require('child_process');
8
+ const { loadConfig, resolveModelInternal, findPhaseInternal, getRoadmapPhaseInternal, pathExistsInternal, generateSlugInternal, getMilestoneInfo, getMilestonePhaseFilter, stripShippedMilestones, extractCurrentMilestone, normalizePhaseName, planningPaths, planningDir, planningRoot, toPosixPath, output, error, checkAgentsInstalled } = require('./core.cjs');
9
+
10
+ function getLatestCompletedMilestone(cwd) {
11
+ const milestonesPath = path.join(planningRoot(cwd), 'MILESTONES.md');
12
+ if (!fs.existsSync(milestonesPath)) return null;
13
+
14
+ try {
15
+ const content = fs.readFileSync(milestonesPath, 'utf-8');
16
+ const match = content.match(/^##\s+(v[\d.]+)\s+(.+?)\s+\(Shipped:/m);
17
+ if (!match) return null;
18
+ return {
19
+ version: match[1],
20
+ name: match[2].trim(),
21
+ };
22
+ } catch {
23
+ return null;
24
+ }
25
+ }
26
+
27
+ /**
28
+ * Inject `project_root` into an init result object.
29
+ * Workflows use this to prefix `.planning/` paths correctly when Claude's CWD
30
+ * differs from the project root (e.g., inside a sub-repo).
31
+ */
32
+ function withProjectRoot(cwd, result) {
33
+ result.project_root = cwd;
34
+ // Inject agent installation status into all init outputs (#1371).
35
+ // Workflows that spawn named subagents use this to detect when agents
36
+ // are missing and would silently fall back to general-purpose.
37
+ const agentStatus = checkAgentsInstalled();
38
+ result.agents_installed = agentStatus.agents_installed;
39
+ result.missing_agents = agentStatus.missing_agents;
40
+ return result;
41
+ }
42
+
43
+ function cmdInitExecutePhase(cwd, phase, raw) {
44
+ if (!phase) {
45
+ error('phase required for init execute-phase');
46
+ }
47
+
48
+ const config = loadConfig(cwd);
49
+ let phaseInfo = findPhaseInternal(cwd, phase);
50
+ const milestone = getMilestoneInfo(cwd);
51
+
52
+ const roadmapPhase = getRoadmapPhaseInternal(cwd, phase);
53
+
54
+ // Fallback to ROADMAP.md if no phase directory exists yet
55
+ if (!phaseInfo && roadmapPhase?.found) {
56
+ const phaseName = roadmapPhase.phase_name;
57
+ phaseInfo = {
58
+ found: true,
59
+ directory: null,
60
+ phase_number: roadmapPhase.phase_number,
61
+ phase_name: phaseName,
62
+ phase_slug: phaseName ? phaseName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') : null,
63
+ plans: [],
64
+ summaries: [],
65
+ incomplete_plans: [],
66
+ has_research: false,
67
+ has_context: false,
68
+ has_verification: false,
69
+ has_reviews: false,
70
+ };
71
+ }
72
+ const reqMatch = roadmapPhase?.section?.match(/^\*\*Requirements\*\*:[^\S\n]*([^\n]*)$/m);
73
+ const reqExtracted = reqMatch
74
+ ? reqMatch[1].replace(/[\[\]]/g, '').split(',').map(s => s.trim()).filter(Boolean).join(', ')
75
+ : null;
76
+ const phase_req_ids = (reqExtracted && reqExtracted !== 'TBD') ? reqExtracted : null;
77
+
78
+ const result = {
79
+ // Models
80
+ executor_model: resolveModelInternal(cwd, 'gsd-executor'),
81
+ verifier_model: resolveModelInternal(cwd, 'gsd-verifier'),
82
+
83
+ // Config flags
84
+ commit_docs: config.commit_docs,
85
+ sub_repos: config.sub_repos,
86
+ parallelization: config.parallelization,
87
+ context_window: config.context_window,
88
+ branching_strategy: config.branching_strategy,
89
+ phase_branch_template: config.phase_branch_template,
90
+ milestone_branch_template: config.milestone_branch_template,
91
+ verifier_enabled: config.verifier,
92
+
93
+ // Phase info
94
+ phase_found: !!phaseInfo,
95
+ phase_dir: phaseInfo?.directory || null,
96
+ phase_number: phaseInfo?.phase_number || null,
97
+ phase_name: phaseInfo?.phase_name || null,
98
+ phase_slug: phaseInfo?.phase_slug || null,
99
+ phase_req_ids,
100
+
101
+ // Plan inventory
102
+ plans: phaseInfo?.plans || [],
103
+ summaries: phaseInfo?.summaries || [],
104
+ incomplete_plans: phaseInfo?.incomplete_plans || [],
105
+ plan_count: phaseInfo?.plans?.length || 0,
106
+ incomplete_count: phaseInfo?.incomplete_plans?.length || 0,
107
+
108
+ // Branch name (pre-computed)
109
+ branch_name: config.branching_strategy === 'phase' && phaseInfo
110
+ ? config.phase_branch_template
111
+ .replace('{phase}', phaseInfo.phase_number)
112
+ .replace('{slug}', phaseInfo.phase_slug || 'phase')
113
+ : config.branching_strategy === 'milestone'
114
+ ? config.milestone_branch_template
115
+ .replace('{milestone}', milestone.version)
116
+ .replace('{slug}', generateSlugInternal(milestone.name) || 'milestone')
117
+ : null,
118
+
119
+ // Milestone info
120
+ milestone_version: milestone.version,
121
+ milestone_name: milestone.name,
122
+ milestone_slug: generateSlugInternal(milestone.name),
123
+
124
+ // File existence
125
+ state_exists: fs.existsSync(path.join(planningDir(cwd), 'STATE.md')),
126
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
127
+ config_exists: fs.existsSync(path.join(planningDir(cwd), 'config.json')),
128
+ // File paths
129
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
130
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
131
+ config_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'config.json'))),
132
+ };
133
+
134
+ output(withProjectRoot(cwd, result), raw);
135
+ }
136
+
137
+ function cmdInitPlanPhase(cwd, phase, raw) {
138
+ if (!phase) {
139
+ error('phase required for init plan-phase');
140
+ }
141
+
142
+ const config = loadConfig(cwd);
143
+ let phaseInfo = findPhaseInternal(cwd, phase);
144
+
145
+ const roadmapPhase = getRoadmapPhaseInternal(cwd, phase);
146
+
147
+ // Fallback to ROADMAP.md if no phase directory exists yet
148
+ if (!phaseInfo && roadmapPhase?.found) {
149
+ const phaseName = roadmapPhase.phase_name;
150
+ phaseInfo = {
151
+ found: true,
152
+ directory: null,
153
+ phase_number: roadmapPhase.phase_number,
154
+ phase_name: phaseName,
155
+ phase_slug: phaseName ? phaseName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') : null,
156
+ plans: [],
157
+ summaries: [],
158
+ incomplete_plans: [],
159
+ has_research: false,
160
+ has_context: false,
161
+ has_verification: false,
162
+ has_reviews: false,
163
+ };
164
+ }
165
+ const reqMatch = roadmapPhase?.section?.match(/^\*\*Requirements\*\*:[^\S\n]*([^\n]*)$/m);
166
+ const reqExtracted = reqMatch
167
+ ? reqMatch[1].replace(/[\[\]]/g, '').split(',').map(s => s.trim()).filter(Boolean).join(', ')
168
+ : null;
169
+ const phase_req_ids = (reqExtracted && reqExtracted !== 'TBD') ? reqExtracted : null;
170
+
171
+ const result = {
172
+ // Models
173
+ researcher_model: resolveModelInternal(cwd, 'gsd-phase-researcher'),
174
+ planner_model: resolveModelInternal(cwd, 'gsd-planner'),
175
+ checker_model: resolveModelInternal(cwd, 'gsd-plan-checker'),
176
+
177
+ // Workflow flags
178
+ research_enabled: config.research,
179
+ plan_checker_enabled: config.plan_checker,
180
+ nyquist_validation_enabled: config.nyquist_validation,
181
+ commit_docs: config.commit_docs,
182
+ text_mode: config.text_mode,
183
+
184
+ // Phase info
185
+ phase_found: !!phaseInfo,
186
+ phase_dir: phaseInfo?.directory || null,
187
+ phase_number: phaseInfo?.phase_number || null,
188
+ phase_name: phaseInfo?.phase_name || null,
189
+ phase_slug: phaseInfo?.phase_slug || null,
190
+ padded_phase: phaseInfo?.phase_number ? normalizePhaseName(phaseInfo.phase_number) : null,
191
+ phase_req_ids,
192
+
193
+ // Existing artifacts
194
+ has_research: phaseInfo?.has_research || false,
195
+ has_context: phaseInfo?.has_context || false,
196
+ has_reviews: phaseInfo?.has_reviews || false,
197
+ has_plans: (phaseInfo?.plans?.length || 0) > 0,
198
+ plan_count: phaseInfo?.plans?.length || 0,
199
+
200
+ // Environment
201
+ planning_exists: fs.existsSync(planningDir(cwd)),
202
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
203
+
204
+ // File paths
205
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
206
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
207
+ requirements_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'REQUIREMENTS.md'))),
208
+ };
209
+
210
+ if (phaseInfo?.directory) {
211
+ // Find *-CONTEXT.md in phase directory
212
+ const phaseDirFull = path.join(cwd, phaseInfo.directory);
213
+ try {
214
+ const files = fs.readdirSync(phaseDirFull);
215
+ const contextFile = files.find(f => f.endsWith('-CONTEXT.md') || f === 'CONTEXT.md');
216
+ if (contextFile) {
217
+ result.context_path = toPosixPath(path.join(phaseInfo.directory, contextFile));
218
+ }
219
+ const researchFile = files.find(f => f.endsWith('-RESEARCH.md') || f === 'RESEARCH.md');
220
+ if (researchFile) {
221
+ result.research_path = toPosixPath(path.join(phaseInfo.directory, researchFile));
222
+ }
223
+ const verificationFile = files.find(f => f.endsWith('-VERIFICATION.md') || f === 'VERIFICATION.md');
224
+ if (verificationFile) {
225
+ result.verification_path = toPosixPath(path.join(phaseInfo.directory, verificationFile));
226
+ }
227
+ const uatFile = files.find(f => f.endsWith('-UAT.md') || f === 'UAT.md');
228
+ if (uatFile) {
229
+ result.uat_path = toPosixPath(path.join(phaseInfo.directory, uatFile));
230
+ }
231
+ const reviewsFile = files.find(f => f.endsWith('-REVIEWS.md') || f === 'REVIEWS.md');
232
+ if (reviewsFile) {
233
+ result.reviews_path = toPosixPath(path.join(phaseInfo.directory, reviewsFile));
234
+ }
235
+ } catch { /* intentionally empty */ }
236
+ }
237
+
238
+ output(withProjectRoot(cwd, result), raw);
239
+ }
240
+
241
+ function cmdInitNewProject(cwd, raw) {
242
+ const config = loadConfig(cwd);
243
+
244
+ // Detect Brave Search API key availability
245
+ const homedir = require('os').homedir();
246
+ const braveKeyFile = path.join(homedir, '.gsd', 'brave_api_key');
247
+ const hasBraveSearch = !!(process.env.BRAVE_API_KEY || fs.existsSync(braveKeyFile));
248
+
249
+ // Detect Firecrawl API key availability
250
+ const firecrawlKeyFile = path.join(homedir, '.gsd', 'firecrawl_api_key');
251
+ const hasFirecrawl = !!(process.env.FIRECRAWL_API_KEY || fs.existsSync(firecrawlKeyFile));
252
+
253
+ // Detect Exa API key availability
254
+ const exaKeyFile = path.join(homedir, '.gsd', 'exa_api_key');
255
+ const hasExaSearch = !!(process.env.EXA_API_KEY || fs.existsSync(exaKeyFile));
256
+
257
+ // Detect existing code (cross-platform — no Unix `find` dependency)
258
+ let hasCode = false;
259
+ let hasPackageFile = false;
260
+ try {
261
+ const codeExtensions = new Set([
262
+ '.ts', '.js', '.py', '.go', '.rs', '.swift', '.java',
263
+ '.kt', '.kts', // Kotlin (Android, server-side)
264
+ '.c', '.cpp', '.h', // C/C++
265
+ '.cs', // C#
266
+ '.rb', // Ruby
267
+ '.php', // PHP
268
+ '.dart', // Dart (Flutter)
269
+ '.m', '.mm', // Objective-C / Objective-C++
270
+ '.scala', // Scala
271
+ '.groovy', // Groovy (Gradle build scripts)
272
+ '.lua', // Lua
273
+ '.r', '.R', // R
274
+ '.zig', // Zig
275
+ '.ex', '.exs', // Elixir
276
+ '.clj', // Clojure
277
+ ]);
278
+ const skipDirs = new Set(['node_modules', '.git', '.planning', '.claude', '__pycache__', 'target', 'dist', 'build']);
279
+ function findCodeFiles(dir, depth) {
280
+ if (depth > 3) return false;
281
+ let entries;
282
+ try { entries = fs.readdirSync(dir, { withFileTypes: true }); } catch { return false; }
283
+ for (const entry of entries) {
284
+ if (entry.isFile() && codeExtensions.has(path.extname(entry.name))) return true;
285
+ if (entry.isDirectory() && !skipDirs.has(entry.name)) {
286
+ if (findCodeFiles(path.join(dir, entry.name), depth + 1)) return true;
287
+ }
288
+ }
289
+ return false;
290
+ }
291
+ hasCode = findCodeFiles(cwd, 0);
292
+ } catch { /* intentionally empty — best-effort detection */ }
293
+
294
+ hasPackageFile = pathExistsInternal(cwd, 'package.json') ||
295
+ pathExistsInternal(cwd, 'requirements.txt') ||
296
+ pathExistsInternal(cwd, 'Cargo.toml') ||
297
+ pathExistsInternal(cwd, 'go.mod') ||
298
+ pathExistsInternal(cwd, 'Package.swift') ||
299
+ pathExistsInternal(cwd, 'build.gradle') ||
300
+ pathExistsInternal(cwd, 'build.gradle.kts') ||
301
+ pathExistsInternal(cwd, 'pom.xml') ||
302
+ pathExistsInternal(cwd, 'Gemfile') ||
303
+ pathExistsInternal(cwd, 'composer.json') ||
304
+ pathExistsInternal(cwd, 'pubspec.yaml') ||
305
+ pathExistsInternal(cwd, 'CMakeLists.txt') ||
306
+ pathExistsInternal(cwd, 'Makefile') ||
307
+ pathExistsInternal(cwd, 'build.zig') ||
308
+ pathExistsInternal(cwd, 'mix.exs') ||
309
+ pathExistsInternal(cwd, 'project.clj');
310
+
311
+ const result = {
312
+ // Models
313
+ researcher_model: resolveModelInternal(cwd, 'gsd-project-researcher'),
314
+ synthesizer_model: resolveModelInternal(cwd, 'gsd-research-synthesizer'),
315
+ roadmapper_model: resolveModelInternal(cwd, 'gsd-roadmapper'),
316
+
317
+ // Config
318
+ commit_docs: config.commit_docs,
319
+
320
+ // Existing state
321
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
322
+ has_codebase_map: pathExistsInternal(cwd, '.planning/codebase'),
323
+ planning_exists: pathExistsInternal(cwd, '.planning'),
324
+
325
+ // Brownfield detection
326
+ has_existing_code: hasCode,
327
+ has_package_file: hasPackageFile,
328
+ is_brownfield: hasCode || hasPackageFile,
329
+ needs_codebase_map: (hasCode || hasPackageFile) && !pathExistsInternal(cwd, '.planning/codebase'),
330
+
331
+ // Git state
332
+ has_git: pathExistsInternal(cwd, '.git'),
333
+
334
+ // Enhanced search
335
+ brave_search_available: hasBraveSearch,
336
+ firecrawl_available: hasFirecrawl,
337
+ exa_search_available: hasExaSearch,
338
+
339
+ // File paths
340
+ project_path: '.planning/PROJECT.md',
341
+ };
342
+
343
+ output(withProjectRoot(cwd, result), raw);
344
+ }
345
+
346
+ function cmdInitNewMilestone(cwd, raw) {
347
+ const config = loadConfig(cwd);
348
+ const milestone = getMilestoneInfo(cwd);
349
+ const latestCompleted = getLatestCompletedMilestone(cwd);
350
+ const phasesDir = path.join(planningDir(cwd), 'phases');
351
+ let phaseDirCount = 0;
352
+
353
+ try {
354
+ if (fs.existsSync(phasesDir)) {
355
+ phaseDirCount = fs.readdirSync(phasesDir, { withFileTypes: true })
356
+ .filter(entry => entry.isDirectory())
357
+ .length;
358
+ }
359
+ } catch {}
360
+
361
+ const result = {
362
+ // Models
363
+ researcher_model: resolveModelInternal(cwd, 'gsd-project-researcher'),
364
+ synthesizer_model: resolveModelInternal(cwd, 'gsd-research-synthesizer'),
365
+ roadmapper_model: resolveModelInternal(cwd, 'gsd-roadmapper'),
366
+
367
+ // Config
368
+ commit_docs: config.commit_docs,
369
+ research_enabled: config.research,
370
+
371
+ // Current milestone
372
+ current_milestone: milestone.version,
373
+ current_milestone_name: milestone.name,
374
+ latest_completed_milestone: latestCompleted?.version || null,
375
+ latest_completed_milestone_name: latestCompleted?.name || null,
376
+ phase_dir_count: phaseDirCount,
377
+ phase_archive_path: latestCompleted ? toPosixPath(path.relative(cwd, path.join(planningRoot(cwd), 'milestones', `${latestCompleted.version}-phases`))) : null,
378
+
379
+ // File existence
380
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
381
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
382
+ state_exists: fs.existsSync(path.join(planningDir(cwd), 'STATE.md')),
383
+
384
+ // File paths
385
+ project_path: '.planning/PROJECT.md',
386
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
387
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
388
+ };
389
+
390
+ output(withProjectRoot(cwd, result), raw);
391
+ }
392
+
393
+ function cmdInitQuick(cwd, description, raw) {
394
+ const config = loadConfig(cwd);
395
+ const now = new Date();
396
+ const slug = description ? generateSlugInternal(description)?.substring(0, 40) : null;
397
+
398
+ // Generate collision-resistant quick task ID: YYMMDD-xxx
399
+ // xxx = 2-second precision blocks since midnight, encoded as 3-char Base36 (lowercase)
400
+ // Range: 000 (00:00:00) to xbz (23:59:58), guaranteed 3 chars for any time of day.
401
+ // Provides ~2s uniqueness window per user — practically collision-free across a team.
402
+ const yy = String(now.getFullYear()).slice(-2);
403
+ const mm = String(now.getMonth() + 1).padStart(2, '0');
404
+ const dd = String(now.getDate()).padStart(2, '0');
405
+ const dateStr = yy + mm + dd;
406
+ const secondsSinceMidnight = now.getHours() * 3600 + now.getMinutes() * 60 + now.getSeconds();
407
+ const timeBlocks = Math.floor(secondsSinceMidnight / 2);
408
+ const timeEncoded = timeBlocks.toString(36).padStart(3, '0');
409
+ const quickId = dateStr + '-' + timeEncoded;
410
+ const branchSlug = slug || 'quick';
411
+ const quickBranchName = config.quick_branch_template
412
+ ? config.quick_branch_template
413
+ .replace('{num}', quickId)
414
+ .replace('{quick}', quickId)
415
+ .replace('{slug}', branchSlug)
416
+ : null;
417
+
418
+ const result = {
419
+ // Models
420
+ planner_model: resolveModelInternal(cwd, 'gsd-planner'),
421
+ executor_model: resolveModelInternal(cwd, 'gsd-executor'),
422
+ checker_model: resolveModelInternal(cwd, 'gsd-plan-checker'),
423
+ verifier_model: resolveModelInternal(cwd, 'gsd-verifier'),
424
+
425
+ // Config
426
+ commit_docs: config.commit_docs,
427
+ branch_name: quickBranchName,
428
+
429
+ // Quick task info
430
+ quick_id: quickId,
431
+ slug: slug,
432
+ description: description || null,
433
+
434
+ // Timestamps
435
+ date: now.toISOString().split('T')[0],
436
+ timestamp: now.toISOString(),
437
+
438
+ // Paths
439
+ quick_dir: '.planning/quick',
440
+ task_dir: slug ? `.planning/quick/${quickId}-${slug}` : null,
441
+
442
+ // File existence
443
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
444
+ planning_exists: fs.existsSync(planningRoot(cwd)),
445
+
446
+ };
447
+
448
+ output(withProjectRoot(cwd, result), raw);
449
+ }
450
+
451
+ function cmdInitResume(cwd, raw) {
452
+ const config = loadConfig(cwd);
453
+
454
+ // Check for interrupted agent
455
+ let interruptedAgentId = null;
456
+ try {
457
+ interruptedAgentId = fs.readFileSync(path.join(planningRoot(cwd), 'current-agent-id.txt'), 'utf-8').trim();
458
+ } catch { /* intentionally empty */ }
459
+
460
+ const result = {
461
+ // File existence
462
+ state_exists: fs.existsSync(path.join(planningDir(cwd), 'STATE.md')),
463
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
464
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
465
+ planning_exists: fs.existsSync(planningRoot(cwd)),
466
+
467
+ // File paths
468
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
469
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
470
+ project_path: '.planning/PROJECT.md',
471
+
472
+ // Agent state
473
+ has_interrupted_agent: !!interruptedAgentId,
474
+ interrupted_agent_id: interruptedAgentId,
475
+
476
+ // Config
477
+ commit_docs: config.commit_docs,
478
+ };
479
+
480
+ output(withProjectRoot(cwd, result), raw);
481
+ }
482
+
483
+ function cmdInitVerifyWork(cwd, phase, raw) {
484
+ if (!phase) {
485
+ error('phase required for init verify-work');
486
+ }
487
+
488
+ const config = loadConfig(cwd);
489
+ let phaseInfo = findPhaseInternal(cwd, phase);
490
+
491
+ // Fallback to ROADMAP.md if no phase directory exists yet
492
+ if (!phaseInfo) {
493
+ const roadmapPhase = getRoadmapPhaseInternal(cwd, phase);
494
+ if (roadmapPhase?.found) {
495
+ const phaseName = roadmapPhase.phase_name;
496
+ phaseInfo = {
497
+ found: true,
498
+ directory: null,
499
+ phase_number: roadmapPhase.phase_number,
500
+ phase_name: phaseName,
501
+ phase_slug: phaseName ? phaseName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') : null,
502
+ plans: [],
503
+ summaries: [],
504
+ incomplete_plans: [],
505
+ has_research: false,
506
+ has_context: false,
507
+ has_verification: false,
508
+ };
509
+ }
510
+ }
511
+
512
+ const result = {
513
+ // Models
514
+ planner_model: resolveModelInternal(cwd, 'gsd-planner'),
515
+ checker_model: resolveModelInternal(cwd, 'gsd-plan-checker'),
516
+
517
+ // Config
518
+ commit_docs: config.commit_docs,
519
+
520
+ // Phase info
521
+ phase_found: !!phaseInfo,
522
+ phase_dir: phaseInfo?.directory || null,
523
+ phase_number: phaseInfo?.phase_number || null,
524
+ phase_name: phaseInfo?.phase_name || null,
525
+
526
+ // Existing artifacts
527
+ has_verification: phaseInfo?.has_verification || false,
528
+ };
529
+
530
+ output(withProjectRoot(cwd, result), raw);
531
+ }
532
+
533
+ function cmdInitPhaseOp(cwd, phase, raw) {
534
+ const config = loadConfig(cwd);
535
+ let phaseInfo = findPhaseInternal(cwd, phase);
536
+
537
+ // If the only disk match comes from an archived milestone, prefer the
538
+ // current milestone's ROADMAP entry so discuss-phase and similar flows
539
+ // don't attach to shipped work that reused the same phase number.
540
+ if (phaseInfo?.archived) {
541
+ const roadmapPhase = getRoadmapPhaseInternal(cwd, phase);
542
+ if (roadmapPhase?.found) {
543
+ const phaseName = roadmapPhase.phase_name;
544
+ phaseInfo = {
545
+ found: true,
546
+ directory: null,
547
+ phase_number: roadmapPhase.phase_number,
548
+ phase_name: phaseName,
549
+ phase_slug: phaseName ? phaseName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') : null,
550
+ plans: [],
551
+ summaries: [],
552
+ incomplete_plans: [],
553
+ has_research: false,
554
+ has_context: false,
555
+ has_verification: false,
556
+ };
557
+ }
558
+ }
559
+
560
+ // Fallback to ROADMAP.md if no directory exists (e.g., Plans: TBD)
561
+ if (!phaseInfo) {
562
+ const roadmapPhase = getRoadmapPhaseInternal(cwd, phase);
563
+ if (roadmapPhase?.found) {
564
+ const phaseName = roadmapPhase.phase_name;
565
+ phaseInfo = {
566
+ found: true,
567
+ directory: null,
568
+ phase_number: roadmapPhase.phase_number,
569
+ phase_name: phaseName,
570
+ phase_slug: phaseName ? phaseName.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, '') : null,
571
+ plans: [],
572
+ summaries: [],
573
+ incomplete_plans: [],
574
+ has_research: false,
575
+ has_context: false,
576
+ has_verification: false,
577
+ };
578
+ }
579
+ }
580
+
581
+ const result = {
582
+ // Config
583
+ commit_docs: config.commit_docs,
584
+ brave_search: config.brave_search,
585
+ firecrawl: config.firecrawl,
586
+ exa_search: config.exa_search,
587
+
588
+ // Phase info
589
+ phase_found: !!phaseInfo,
590
+ phase_dir: phaseInfo?.directory || null,
591
+ phase_number: phaseInfo?.phase_number || null,
592
+ phase_name: phaseInfo?.phase_name || null,
593
+ phase_slug: phaseInfo?.phase_slug || null,
594
+ padded_phase: phaseInfo?.phase_number ? normalizePhaseName(phaseInfo.phase_number) : null,
595
+
596
+ // Existing artifacts
597
+ has_research: phaseInfo?.has_research || false,
598
+ has_context: phaseInfo?.has_context || false,
599
+ has_plans: (phaseInfo?.plans?.length || 0) > 0,
600
+ has_verification: phaseInfo?.has_verification || false,
601
+ has_reviews: phaseInfo?.has_reviews || false,
602
+ plan_count: phaseInfo?.plans?.length || 0,
603
+
604
+ // File existence
605
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
606
+ planning_exists: fs.existsSync(planningDir(cwd)),
607
+
608
+ // File paths
609
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
610
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
611
+ requirements_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'REQUIREMENTS.md'))),
612
+ };
613
+
614
+ if (phaseInfo?.directory) {
615
+ const phaseDirFull = path.join(cwd, phaseInfo.directory);
616
+ try {
617
+ const files = fs.readdirSync(phaseDirFull);
618
+ const contextFile = files.find(f => f.endsWith('-CONTEXT.md') || f === 'CONTEXT.md');
619
+ if (contextFile) {
620
+ result.context_path = toPosixPath(path.join(phaseInfo.directory, contextFile));
621
+ }
622
+ const researchFile = files.find(f => f.endsWith('-RESEARCH.md') || f === 'RESEARCH.md');
623
+ if (researchFile) {
624
+ result.research_path = toPosixPath(path.join(phaseInfo.directory, researchFile));
625
+ }
626
+ const verificationFile = files.find(f => f.endsWith('-VERIFICATION.md') || f === 'VERIFICATION.md');
627
+ if (verificationFile) {
628
+ result.verification_path = toPosixPath(path.join(phaseInfo.directory, verificationFile));
629
+ }
630
+ const uatFile = files.find(f => f.endsWith('-UAT.md') || f === 'UAT.md');
631
+ if (uatFile) {
632
+ result.uat_path = toPosixPath(path.join(phaseInfo.directory, uatFile));
633
+ }
634
+ const reviewsFile = files.find(f => f.endsWith('-REVIEWS.md') || f === 'REVIEWS.md');
635
+ if (reviewsFile) {
636
+ result.reviews_path = toPosixPath(path.join(phaseInfo.directory, reviewsFile));
637
+ }
638
+ } catch { /* intentionally empty */ }
639
+ }
640
+
641
+ output(withProjectRoot(cwd, result), raw);
642
+ }
643
+
644
+ function cmdInitTodos(cwd, area, raw) {
645
+ const config = loadConfig(cwd);
646
+ const now = new Date();
647
+
648
+ // List todos (reuse existing logic)
649
+ const pendingDir = path.join(planningDir(cwd), 'todos', 'pending');
650
+ let count = 0;
651
+ const todos = [];
652
+
653
+ try {
654
+ const files = fs.readdirSync(pendingDir).filter(f => f.endsWith('.md'));
655
+ for (const file of files) {
656
+ try {
657
+ const content = fs.readFileSync(path.join(pendingDir, file), 'utf-8');
658
+ const createdMatch = content.match(/^created:\s*(.+)$/m);
659
+ const titleMatch = content.match(/^title:\s*(.+)$/m);
660
+ const areaMatch = content.match(/^area:\s*(.+)$/m);
661
+ const todoArea = areaMatch ? areaMatch[1].trim() : 'general';
662
+
663
+ if (area && todoArea !== area) continue;
664
+
665
+ count++;
666
+ todos.push({
667
+ file,
668
+ created: createdMatch ? createdMatch[1].trim() : 'unknown',
669
+ title: titleMatch ? titleMatch[1].trim() : 'Untitled',
670
+ area: todoArea,
671
+ path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'todos', 'pending', file))),
672
+ });
673
+ } catch { /* intentionally empty */ }
674
+ }
675
+ } catch { /* intentionally empty */ }
676
+
677
+ const result = {
678
+ // Config
679
+ commit_docs: config.commit_docs,
680
+
681
+ // Timestamps
682
+ date: now.toISOString().split('T')[0],
683
+ timestamp: now.toISOString(),
684
+
685
+ // Todo inventory
686
+ todo_count: count,
687
+ todos,
688
+ area_filter: area || null,
689
+
690
+ // Paths
691
+ pending_dir: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'todos', 'pending'))),
692
+ completed_dir: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'todos', 'completed'))),
693
+
694
+ // File existence
695
+ planning_exists: fs.existsSync(planningDir(cwd)),
696
+ todos_dir_exists: fs.existsSync(path.join(planningDir(cwd), 'todos')),
697
+ pending_dir_exists: fs.existsSync(path.join(planningDir(cwd), 'todos', 'pending')),
698
+ };
699
+
700
+ output(withProjectRoot(cwd, result), raw);
701
+ }
702
+
703
+ function cmdInitMilestoneOp(cwd, raw) {
704
+ const config = loadConfig(cwd);
705
+ const milestone = getMilestoneInfo(cwd);
706
+
707
+ // Count phases
708
+ let phaseCount = 0;
709
+ let completedPhases = 0;
710
+ const phasesDir = path.join(planningDir(cwd), 'phases');
711
+ try {
712
+ const entries = fs.readdirSync(phasesDir, { withFileTypes: true });
713
+ const dirs = entries.filter(e => e.isDirectory()).map(e => e.name);
714
+ phaseCount = dirs.length;
715
+
716
+ // Count phases with summaries (completed)
717
+ for (const dir of dirs) {
718
+ try {
719
+ const phaseFiles = fs.readdirSync(path.join(phasesDir, dir));
720
+ const hasSummary = phaseFiles.some(f => f.endsWith('-SUMMARY.md') || f === 'SUMMARY.md');
721
+ if (hasSummary) completedPhases++;
722
+ } catch { /* intentionally empty */ }
723
+ }
724
+ } catch { /* intentionally empty */ }
725
+
726
+ // Check archive
727
+ const archiveDir = path.join(planningRoot(cwd), 'archive');
728
+ let archivedMilestones = [];
729
+ try {
730
+ archivedMilestones = fs.readdirSync(archiveDir, { withFileTypes: true })
731
+ .filter(e => e.isDirectory())
732
+ .map(e => e.name);
733
+ } catch { /* intentionally empty */ }
734
+
735
+ const result = {
736
+ // Config
737
+ commit_docs: config.commit_docs,
738
+
739
+ // Current milestone
740
+ milestone_version: milestone.version,
741
+ milestone_name: milestone.name,
742
+ milestone_slug: generateSlugInternal(milestone.name),
743
+
744
+ // Phase counts
745
+ phase_count: phaseCount,
746
+ completed_phases: completedPhases,
747
+ all_phases_complete: phaseCount > 0 && phaseCount === completedPhases,
748
+
749
+ // Archive
750
+ archived_milestones: archivedMilestones,
751
+ archive_count: archivedMilestones.length,
752
+
753
+ // File existence
754
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
755
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
756
+ state_exists: fs.existsSync(path.join(planningDir(cwd), 'STATE.md')),
757
+ archive_exists: fs.existsSync(path.join(planningRoot(cwd), 'archive')),
758
+ phases_dir_exists: fs.existsSync(path.join(planningDir(cwd), 'phases')),
759
+ };
760
+
761
+ output(withProjectRoot(cwd, result), raw);
762
+ }
763
+
764
+ function cmdInitMapCodebase(cwd, raw) {
765
+ const config = loadConfig(cwd);
766
+
767
+ // Check for existing codebase maps
768
+ const codebaseDir = path.join(planningRoot(cwd), 'codebase');
769
+ let existingMaps = [];
770
+ try {
771
+ existingMaps = fs.readdirSync(codebaseDir).filter(f => f.endsWith('.md'));
772
+ } catch { /* intentionally empty */ }
773
+
774
+ const result = {
775
+ // Models
776
+ mapper_model: resolveModelInternal(cwd, 'gsd-codebase-mapper'),
777
+
778
+ // Config
779
+ commit_docs: config.commit_docs,
780
+ search_gitignored: config.search_gitignored,
781
+ parallelization: config.parallelization,
782
+
783
+ // Paths
784
+ codebase_dir: '.planning/codebase',
785
+
786
+ // Existing maps
787
+ existing_maps: existingMaps,
788
+ has_maps: existingMaps.length > 0,
789
+
790
+ // File existence
791
+ planning_exists: pathExistsInternal(cwd, '.planning'),
792
+ codebase_dir_exists: pathExistsInternal(cwd, '.planning/codebase'),
793
+ };
794
+
795
+ output(withProjectRoot(cwd, result), raw);
796
+ }
797
+
798
+ function cmdInitManager(cwd, raw) {
799
+ const config = loadConfig(cwd);
800
+ const milestone = getMilestoneInfo(cwd);
801
+
802
+ // Use planningPaths for forward-compatibility with workstream scoping (#1268)
803
+ const paths = planningPaths(cwd);
804
+
805
+ // Validate prerequisites
806
+ if (!fs.existsSync(paths.roadmap)) {
807
+ error('No ROADMAP.md found. Run /gsd:new-milestone first.');
808
+ }
809
+ if (!fs.existsSync(paths.state)) {
810
+ error('No STATE.md found. Run /gsd:new-milestone first.');
811
+ }
812
+ const rawContent = fs.readFileSync(paths.roadmap, 'utf-8');
813
+ const content = extractCurrentMilestone(rawContent, cwd);
814
+ const phasesDir = paths.phases;
815
+ const isDirInMilestone = getMilestonePhaseFilter(cwd);
816
+
817
+ const phasePattern = /#{2,4}\s*Phase\s+(\d+[A-Z]?(?:\.\d+)*)\s*:\s*([^\n]+)/gi;
818
+ const phases = [];
819
+ let match;
820
+
821
+ while ((match = phasePattern.exec(content)) !== null) {
822
+ const phaseNum = match[1];
823
+ const phaseName = match[2].replace(/\(INSERTED\)/i, '').trim();
824
+
825
+ const sectionStart = match.index;
826
+ const restOfContent = content.slice(sectionStart);
827
+ const nextHeader = restOfContent.match(/\n#{2,4}\s+Phase\s+\d/i);
828
+ const sectionEnd = nextHeader ? sectionStart + nextHeader.index : content.length;
829
+ const section = content.slice(sectionStart, sectionEnd);
830
+
831
+ const goalMatch = section.match(/\*\*Goal(?::\*\*|\*\*:)\s*([^\n]+)/i);
832
+ const goal = goalMatch ? goalMatch[1].trim() : null;
833
+
834
+ const dependsMatch = section.match(/\*\*Depends on(?::\*\*|\*\*:)\s*([^\n]+)/i);
835
+ const depends_on = dependsMatch ? dependsMatch[1].trim() : null;
836
+
837
+ const normalized = normalizePhaseName(phaseNum);
838
+ let diskStatus = 'no_directory';
839
+ let planCount = 0;
840
+ let summaryCount = 0;
841
+ let hasContext = false;
842
+ let hasResearch = false;
843
+ let lastActivity = null;
844
+ let isActive = false;
845
+
846
+ try {
847
+ const entries = fs.readdirSync(phasesDir, { withFileTypes: true });
848
+ const dirs = entries.filter(e => e.isDirectory()).map(e => e.name).filter(isDirInMilestone);
849
+ const dirMatch = dirs.find(d => d.startsWith(normalized + '-') || d === normalized);
850
+
851
+ if (dirMatch) {
852
+ const fullDir = path.join(phasesDir, dirMatch);
853
+ const phaseFiles = fs.readdirSync(fullDir);
854
+ planCount = phaseFiles.filter(f => f.endsWith('-PLAN.md') || f === 'PLAN.md').length;
855
+ summaryCount = phaseFiles.filter(f => f.endsWith('-SUMMARY.md') || f === 'SUMMARY.md').length;
856
+ hasContext = phaseFiles.some(f => f.endsWith('-CONTEXT.md') || f === 'CONTEXT.md');
857
+ hasResearch = phaseFiles.some(f => f.endsWith('-RESEARCH.md') || f === 'RESEARCH.md');
858
+
859
+ if (summaryCount >= planCount && planCount > 0) diskStatus = 'complete';
860
+ else if (summaryCount > 0) diskStatus = 'partial';
861
+ else if (planCount > 0) diskStatus = 'planned';
862
+ else if (hasResearch) diskStatus = 'researched';
863
+ else if (hasContext) diskStatus = 'discussed';
864
+ else diskStatus = 'empty';
865
+
866
+ // Activity detection: check most recent file mtime
867
+ const now = Date.now();
868
+ let newestMtime = 0;
869
+ for (const f of phaseFiles) {
870
+ try {
871
+ const stat = fs.statSync(path.join(fullDir, f));
872
+ if (stat.mtimeMs > newestMtime) newestMtime = stat.mtimeMs;
873
+ } catch { /* intentionally empty */ }
874
+ }
875
+ if (newestMtime > 0) {
876
+ lastActivity = new Date(newestMtime).toISOString();
877
+ isActive = (now - newestMtime) < 300000; // 5 minutes
878
+ }
879
+ }
880
+ } catch { /* intentionally empty */ }
881
+
882
+ // Check ROADMAP checkbox status
883
+ const checkboxPattern = new RegExp(`-\\s*\\[(x| )\\]\\s*.*Phase\\s+${phaseNum.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}[:\\s]`, 'i');
884
+ const checkboxMatch = content.match(checkboxPattern);
885
+ const roadmapComplete = checkboxMatch ? checkboxMatch[1] === 'x' : false;
886
+ if (roadmapComplete && diskStatus !== 'complete') {
887
+ diskStatus = 'complete';
888
+ }
889
+
890
+ phases.push({
891
+ number: phaseNum,
892
+ name: phaseName,
893
+ goal,
894
+ depends_on,
895
+ disk_status: diskStatus,
896
+ has_context: hasContext,
897
+ has_research: hasResearch,
898
+ plan_count: planCount,
899
+ summary_count: summaryCount,
900
+ roadmap_complete: roadmapComplete,
901
+ last_activity: lastActivity,
902
+ is_active: isActive,
903
+ });
904
+ }
905
+
906
+ // Compute display names: truncate to keep table aligned
907
+ const MAX_NAME_WIDTH = 20;
908
+ for (const phase of phases) {
909
+ if (phase.name.length > MAX_NAME_WIDTH) {
910
+ phase.display_name = phase.name.slice(0, MAX_NAME_WIDTH - 1) + '…';
911
+ } else {
912
+ phase.display_name = phase.name;
913
+ }
914
+ }
915
+
916
+ // Dependency satisfaction: check if all depends_on phases are complete
917
+ const completedNums = new Set(phases.filter(p => p.disk_status === 'complete').map(p => p.number));
918
+ for (const phase of phases) {
919
+ if (!phase.depends_on || /^none$/i.test(phase.depends_on.trim())) {
920
+ phase.deps_satisfied = true;
921
+ } else {
922
+ // Parse "Phase 1, Phase 3" or "1, 3" formats
923
+ const depNums = phase.depends_on.match(/\d+(?:\.\d+)*/g) || [];
924
+ phase.deps_satisfied = depNums.every(n => completedNums.has(n));
925
+ phase.dep_phases = depNums;
926
+ }
927
+ }
928
+
929
+ // Compact dependency display for dashboard
930
+ for (const phase of phases) {
931
+ phase.deps_display = (phase.dep_phases && phase.dep_phases.length > 0)
932
+ ? phase.dep_phases.join(',')
933
+ : '—';
934
+ }
935
+
936
+ // Sliding window: discuss is sequential — only the first undiscussed phase is available
937
+ let foundNextToDiscuss = false;
938
+ for (const phase of phases) {
939
+ if (!foundNextToDiscuss && (phase.disk_status === 'empty' || phase.disk_status === 'no_directory')) {
940
+ phase.is_next_to_discuss = true;
941
+ foundNextToDiscuss = true;
942
+ } else {
943
+ phase.is_next_to_discuss = false;
944
+ }
945
+ }
946
+
947
+ // Check for WAITING.json signal
948
+ let waitingSignal = null;
949
+ try {
950
+ const waitingPath = path.join(cwd, '.planning', 'WAITING.json');
951
+ if (fs.existsSync(waitingPath)) {
952
+ waitingSignal = JSON.parse(fs.readFileSync(waitingPath, 'utf-8'));
953
+ }
954
+ } catch { /* intentionally empty */ }
955
+
956
+ // Compute recommended actions (execute > plan > discuss)
957
+ const recommendedActions = [];
958
+ for (const phase of phases) {
959
+ if (phase.disk_status === 'complete') continue;
960
+
961
+ if (phase.disk_status === 'planned' && phase.deps_satisfied) {
962
+ recommendedActions.push({
963
+ phase: phase.number,
964
+ phase_name: phase.name,
965
+ action: 'execute',
966
+ reason: `${phase.plan_count} plans ready, dependencies met`,
967
+ command: `/gsd:execute-phase ${phase.number}`,
968
+ });
969
+ } else if (phase.disk_status === 'discussed' || phase.disk_status === 'researched') {
970
+ recommendedActions.push({
971
+ phase: phase.number,
972
+ phase_name: phase.name,
973
+ action: 'plan',
974
+ reason: 'Context gathered, ready for planning',
975
+ command: `/gsd:plan-phase ${phase.number}`,
976
+ });
977
+ } else if ((phase.disk_status === 'empty' || phase.disk_status === 'no_directory') && phase.is_next_to_discuss) {
978
+ recommendedActions.push({
979
+ phase: phase.number,
980
+ phase_name: phase.name,
981
+ action: 'discuss',
982
+ reason: 'Unblocked, ready to gather context',
983
+ command: `/gsd:discuss-phase ${phase.number}`,
984
+ });
985
+ }
986
+ }
987
+
988
+ // Filter recommendations: no parallel execute/plan unless phases are independent
989
+ // Two phases are "independent" if neither depends on the other (directly or transitively)
990
+ const phaseMap = new Map(phases.map(p => [p.number, p]));
991
+
992
+ function reaches(from, to, visited = new Set()) {
993
+ if (visited.has(from)) return false;
994
+ visited.add(from);
995
+ const p = phaseMap.get(from);
996
+ if (!p || !p.dep_phases || p.dep_phases.length === 0) return false;
997
+ if (p.dep_phases.includes(to)) return true;
998
+ return p.dep_phases.some(dep => reaches(dep, to, visited));
999
+ }
1000
+
1001
+ function hasDepRelationship(numA, numB) {
1002
+ return reaches(numA, numB) || reaches(numB, numA);
1003
+ }
1004
+
1005
+ // Detect phases with active work (file modified in last 5 min)
1006
+ const activeExecuting = phases.filter(p =>
1007
+ p.disk_status === 'partial' ||
1008
+ (p.disk_status === 'planned' && p.is_active)
1009
+ );
1010
+ const activePlanning = phases.filter(p =>
1011
+ p.is_active && (p.disk_status === 'discussed' || p.disk_status === 'researched')
1012
+ );
1013
+
1014
+ const filteredActions = recommendedActions.filter(action => {
1015
+ if (action.action === 'execute' && activeExecuting.length > 0) {
1016
+ // Only allow if independent of ALL actively-executing phases
1017
+ return activeExecuting.every(active => !hasDepRelationship(action.phase, active.number));
1018
+ }
1019
+ if (action.action === 'plan' && activePlanning.length > 0) {
1020
+ // Only allow if independent of ALL actively-planning phases
1021
+ return activePlanning.every(active => !hasDepRelationship(action.phase, active.number));
1022
+ }
1023
+ return true;
1024
+ });
1025
+
1026
+ const completedCount = phases.filter(p => p.disk_status === 'complete').length;
1027
+ const result = {
1028
+ milestone_version: milestone.version,
1029
+ milestone_name: milestone.name,
1030
+ phases,
1031
+ phase_count: phases.length,
1032
+ completed_count: completedCount,
1033
+ in_progress_count: phases.filter(p => ['partial', 'planned', 'discussed', 'researched'].includes(p.disk_status)).length,
1034
+ recommended_actions: filteredActions,
1035
+ waiting_signal: waitingSignal,
1036
+ all_complete: completedCount === phases.length && phases.length > 0,
1037
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
1038
+ roadmap_exists: true,
1039
+ state_exists: true,
1040
+ };
1041
+
1042
+ output(withProjectRoot(cwd, result), raw);
1043
+ }
1044
+
1045
+ function cmdInitProgress(cwd, raw) {
1046
+ const config = loadConfig(cwd);
1047
+ const milestone = getMilestoneInfo(cwd);
1048
+
1049
+ // Analyze phases — filter to current milestone and include ROADMAP-only phases
1050
+ const phasesDir = path.join(planningDir(cwd), 'phases');
1051
+ const phases = [];
1052
+ let currentPhase = null;
1053
+ let nextPhase = null;
1054
+
1055
+ // Build set of phases defined in ROADMAP for the current milestone
1056
+ const roadmapPhaseNums = new Set();
1057
+ const roadmapPhaseNames = new Map();
1058
+ try {
1059
+ const roadmapContent = extractCurrentMilestone(
1060
+ fs.readFileSync(path.join(planningDir(cwd), 'ROADMAP.md'), 'utf-8'), cwd
1061
+ );
1062
+ const headingPattern = /#{2,4}\s*Phase\s+(\d+[A-Z]?(?:\.\d+)*)\s*:\s*([^\n]+)/gi;
1063
+ let hm;
1064
+ while ((hm = headingPattern.exec(roadmapContent)) !== null) {
1065
+ roadmapPhaseNums.add(hm[1]);
1066
+ roadmapPhaseNames.set(hm[1], hm[2].replace(/\(INSERTED\)/i, '').trim());
1067
+ }
1068
+ } catch { /* intentionally empty */ }
1069
+
1070
+ const isDirInMilestone = getMilestonePhaseFilter(cwd);
1071
+ const seenPhaseNums = new Set();
1072
+
1073
+ try {
1074
+ const entries = fs.readdirSync(phasesDir, { withFileTypes: true });
1075
+ const dirs = entries.filter(e => e.isDirectory()).map(e => e.name)
1076
+ .filter(isDirInMilestone)
1077
+ .sort((a, b) => {
1078
+ const pa = a.match(/^(\d+[A-Z]?(?:\.\d+)*)/i);
1079
+ const pb = b.match(/^(\d+[A-Z]?(?:\.\d+)*)/i);
1080
+ if (!pa || !pb) return a.localeCompare(b);
1081
+ return parseInt(pa[1], 10) - parseInt(pb[1], 10);
1082
+ });
1083
+
1084
+ for (const dir of dirs) {
1085
+ const match = dir.match(/^(\d+[A-Z]?(?:\.\d+)*)-?(.*)/i);
1086
+ const phaseNumber = match ? match[1] : dir;
1087
+ const phaseName = match && match[2] ? match[2] : null;
1088
+ seenPhaseNums.add(phaseNumber.replace(/^0+/, '') || '0');
1089
+
1090
+ const phasePath = path.join(phasesDir, dir);
1091
+ const phaseFiles = fs.readdirSync(phasePath);
1092
+
1093
+ const plans = phaseFiles.filter(f => f.endsWith('-PLAN.md') || f === 'PLAN.md');
1094
+ const summaries = phaseFiles.filter(f => f.endsWith('-SUMMARY.md') || f === 'SUMMARY.md');
1095
+ const hasResearch = phaseFiles.some(f => f.endsWith('-RESEARCH.md') || f === 'RESEARCH.md');
1096
+
1097
+ const status = summaries.length >= plans.length && plans.length > 0 ? 'complete' :
1098
+ plans.length > 0 ? 'in_progress' :
1099
+ hasResearch ? 'researched' : 'pending';
1100
+
1101
+ const phaseInfo = {
1102
+ number: phaseNumber,
1103
+ name: phaseName,
1104
+ directory: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'phases', dir))),
1105
+ status,
1106
+ plan_count: plans.length,
1107
+ summary_count: summaries.length,
1108
+ has_research: hasResearch,
1109
+ };
1110
+
1111
+ phases.push(phaseInfo);
1112
+
1113
+ // Find current (first incomplete with plans) and next (first pending)
1114
+ if (!currentPhase && (status === 'in_progress' || status === 'researched')) {
1115
+ currentPhase = phaseInfo;
1116
+ }
1117
+ if (!nextPhase && status === 'pending') {
1118
+ nextPhase = phaseInfo;
1119
+ }
1120
+ }
1121
+ } catch { /* intentionally empty */ }
1122
+
1123
+ // Add phases defined in ROADMAP but not yet scaffolded to disk
1124
+ for (const [num, name] of roadmapPhaseNames) {
1125
+ const stripped = num.replace(/^0+/, '') || '0';
1126
+ if (!seenPhaseNums.has(stripped)) {
1127
+ const phaseInfo = {
1128
+ number: num,
1129
+ name: name.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-+|-+$/g, ''),
1130
+ directory: null,
1131
+ status: 'not_started',
1132
+ plan_count: 0,
1133
+ summary_count: 0,
1134
+ has_research: false,
1135
+ };
1136
+ phases.push(phaseInfo);
1137
+ if (!nextPhase && !currentPhase) {
1138
+ nextPhase = phaseInfo;
1139
+ }
1140
+ }
1141
+ }
1142
+
1143
+ // Re-sort phases by number after adding ROADMAP-only phases
1144
+ phases.sort((a, b) => parseInt(a.number, 10) - parseInt(b.number, 10));
1145
+
1146
+ // Check for paused work
1147
+ let pausedAt = null;
1148
+ try {
1149
+ const state = fs.readFileSync(path.join(planningDir(cwd), 'STATE.md'), 'utf-8');
1150
+ const pauseMatch = state.match(/\*\*Paused At:\*\*\s*(.+)/);
1151
+ if (pauseMatch) pausedAt = pauseMatch[1].trim();
1152
+ } catch { /* intentionally empty */ }
1153
+
1154
+ const result = {
1155
+ // Models
1156
+ executor_model: resolveModelInternal(cwd, 'gsd-executor'),
1157
+ planner_model: resolveModelInternal(cwd, 'gsd-planner'),
1158
+
1159
+ // Config
1160
+ commit_docs: config.commit_docs,
1161
+
1162
+ // Milestone
1163
+ milestone_version: milestone.version,
1164
+ milestone_name: milestone.name,
1165
+
1166
+ // Phase overview
1167
+ phases,
1168
+ phase_count: phases.length,
1169
+ completed_count: phases.filter(p => p.status === 'complete').length,
1170
+ in_progress_count: phases.filter(p => p.status === 'in_progress').length,
1171
+
1172
+ // Current state
1173
+ current_phase: currentPhase,
1174
+ next_phase: nextPhase,
1175
+ paused_at: pausedAt,
1176
+ has_work_in_progress: !!currentPhase,
1177
+
1178
+ // File existence
1179
+ project_exists: pathExistsInternal(cwd, '.planning/PROJECT.md'),
1180
+ roadmap_exists: fs.existsSync(path.join(planningDir(cwd), 'ROADMAP.md')),
1181
+ state_exists: fs.existsSync(path.join(planningDir(cwd), 'STATE.md')),
1182
+ // File paths
1183
+ state_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'STATE.md'))),
1184
+ roadmap_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'ROADMAP.md'))),
1185
+ project_path: '.planning/PROJECT.md',
1186
+ config_path: toPosixPath(path.relative(cwd, path.join(planningDir(cwd), 'config.json'))),
1187
+ };
1188
+
1189
+ output(withProjectRoot(cwd, result), raw);
1190
+ }
1191
+
1192
+ /**
1193
+ * Detect child git repos in a directory (one level deep).
1194
+ * Returns array of { name, path, has_uncommitted } objects.
1195
+ */
1196
+ function detectChildRepos(dir) {
1197
+ const repos = [];
1198
+ let entries;
1199
+ try { entries = fs.readdirSync(dir, { withFileTypes: true }); } catch { return repos; }
1200
+ for (const entry of entries) {
1201
+ if (!entry.isDirectory()) continue;
1202
+ if (entry.name.startsWith('.')) continue;
1203
+ const fullPath = path.join(dir, entry.name);
1204
+ const gitDir = path.join(fullPath, '.git');
1205
+ if (fs.existsSync(gitDir)) {
1206
+ let hasUncommitted = false;
1207
+ try {
1208
+ const status = execSync('git status --porcelain', { cwd: fullPath, encoding: 'utf8', timeout: 5000 });
1209
+ hasUncommitted = status.trim().length > 0;
1210
+ } catch { /* best-effort */ }
1211
+ repos.push({ name: entry.name, path: fullPath, has_uncommitted: hasUncommitted });
1212
+ }
1213
+ }
1214
+ return repos;
1215
+ }
1216
+
1217
+ function cmdInitNewWorkspace(cwd, raw) {
1218
+ const homedir = process.env.HOME || require('os').homedir();
1219
+ const defaultBase = path.join(homedir, 'gsd-workspaces');
1220
+
1221
+ // Detect child git repos for interactive selection
1222
+ const childRepos = detectChildRepos(cwd);
1223
+
1224
+ // Check if git worktree is available
1225
+ let worktreeAvailable = false;
1226
+ try {
1227
+ execSync('git --version', { encoding: 'utf8', timeout: 5000, stdio: 'pipe' });
1228
+ worktreeAvailable = true;
1229
+ } catch { /* no git at all */ }
1230
+
1231
+ const result = {
1232
+ default_workspace_base: defaultBase,
1233
+ child_repos: childRepos,
1234
+ child_repo_count: childRepos.length,
1235
+ worktree_available: worktreeAvailable,
1236
+ is_git_repo: pathExistsInternal(cwd, '.git'),
1237
+ cwd_repo_name: path.basename(cwd),
1238
+ };
1239
+
1240
+ output(withProjectRoot(cwd, result), raw);
1241
+ }
1242
+
1243
+ function cmdInitListWorkspaces(cwd, raw) {
1244
+ const homedir = process.env.HOME || require('os').homedir();
1245
+ const defaultBase = path.join(homedir, 'gsd-workspaces');
1246
+
1247
+ const workspaces = [];
1248
+ if (fs.existsSync(defaultBase)) {
1249
+ let entries;
1250
+ try { entries = fs.readdirSync(defaultBase, { withFileTypes: true }); } catch { entries = []; }
1251
+ for (const entry of entries) {
1252
+ if (!entry.isDirectory()) continue;
1253
+ const wsPath = path.join(defaultBase, entry.name);
1254
+ const manifestPath = path.join(wsPath, 'WORKSPACE.md');
1255
+ if (!fs.existsSync(manifestPath)) continue;
1256
+
1257
+ let repoCount = 0;
1258
+ let hasProject = false;
1259
+ let strategy = 'unknown';
1260
+ try {
1261
+ const manifest = fs.readFileSync(manifestPath, 'utf8');
1262
+ const strategyMatch = manifest.match(/^Strategy:\s*(.+)$/m);
1263
+ if (strategyMatch) strategy = strategyMatch[1].trim();
1264
+ // Count table rows (lines starting with |, excluding header and separator)
1265
+ const tableRows = manifest.split('\n').filter(l => l.match(/^\|\s*\w/) && !l.includes('Repo') && !l.includes('---'));
1266
+ repoCount = tableRows.length;
1267
+ } catch { /* best-effort */ }
1268
+ hasProject = fs.existsSync(path.join(wsPath, '.planning', 'PROJECT.md'));
1269
+
1270
+ workspaces.push({
1271
+ name: entry.name,
1272
+ path: wsPath,
1273
+ repo_count: repoCount,
1274
+ strategy,
1275
+ has_project: hasProject,
1276
+ });
1277
+ }
1278
+ }
1279
+
1280
+ const result = {
1281
+ workspace_base: defaultBase,
1282
+ workspaces,
1283
+ workspace_count: workspaces.length,
1284
+ };
1285
+
1286
+ output(result, raw);
1287
+ }
1288
+
1289
+ function cmdInitRemoveWorkspace(cwd, name, raw) {
1290
+ const homedir = process.env.HOME || require('os').homedir();
1291
+ const defaultBase = path.join(homedir, 'gsd-workspaces');
1292
+
1293
+ if (!name) {
1294
+ error('workspace name required for init remove-workspace');
1295
+ }
1296
+
1297
+ const wsPath = path.join(defaultBase, name);
1298
+ const manifestPath = path.join(wsPath, 'WORKSPACE.md');
1299
+
1300
+ if (!fs.existsSync(wsPath)) {
1301
+ error(`Workspace not found: ${wsPath}`);
1302
+ }
1303
+
1304
+ // Parse manifest for repo info
1305
+ const repos = [];
1306
+ let strategy = 'unknown';
1307
+ if (fs.existsSync(manifestPath)) {
1308
+ try {
1309
+ const manifest = fs.readFileSync(manifestPath, 'utf8');
1310
+ const strategyMatch = manifest.match(/^Strategy:\s*(.+)$/m);
1311
+ if (strategyMatch) strategy = strategyMatch[1].trim();
1312
+
1313
+ // Parse table rows for repo names and source paths
1314
+ const lines = manifest.split('\n');
1315
+ for (const line of lines) {
1316
+ const match = line.match(/^\|\s*(\S+)\s*\|\s*(\S+)\s*\|\s*(\S+)\s*\|\s*(\S+)\s*\|$/);
1317
+ if (match && match[1] !== 'Repo' && !match[1].includes('---')) {
1318
+ repos.push({ name: match[1], source: match[2], branch: match[3], strategy: match[4] });
1319
+ }
1320
+ }
1321
+ } catch { /* best-effort */ }
1322
+ }
1323
+
1324
+ // Check for uncommitted changes in workspace repos
1325
+ const dirtyRepos = [];
1326
+ for (const repo of repos) {
1327
+ const repoPath = path.join(wsPath, repo.name);
1328
+ if (!fs.existsSync(repoPath)) continue;
1329
+ try {
1330
+ const status = execSync('git status --porcelain', { cwd: repoPath, encoding: 'utf8', timeout: 5000, stdio: 'pipe' });
1331
+ if (status.trim().length > 0) {
1332
+ dirtyRepos.push(repo.name);
1333
+ }
1334
+ } catch { /* best-effort */ }
1335
+ }
1336
+
1337
+ const result = {
1338
+ workspace_name: name,
1339
+ workspace_path: wsPath,
1340
+ has_manifest: fs.existsSync(manifestPath),
1341
+ strategy,
1342
+ repos,
1343
+ repo_count: repos.length,
1344
+ dirty_repos: dirtyRepos,
1345
+ has_dirty_repos: dirtyRepos.length > 0,
1346
+ };
1347
+
1348
+ output(result, raw);
1349
+ }
1350
+
1351
+ /**
1352
+ * Build a formatted agent skills block for injection into Task() prompts.
1353
+ *
1354
+ * Reads `config.agent_skills[agentType]` and validates each skill path exists
1355
+ * within the project root. Returns a formatted `<agent_skills>` block or empty
1356
+ * string if no skills are configured.
1357
+ *
1358
+ * @param {object} config - Loaded project config
1359
+ * @param {string} agentType - The agent type (e.g., 'gsd-executor', 'gsd-planner')
1360
+ * @param {string} projectRoot - Absolute path to project root (for path validation)
1361
+ * @returns {string} Formatted skills block or empty string
1362
+ */
1363
+ function buildAgentSkillsBlock(config, agentType, projectRoot) {
1364
+ const { validatePath } = require('./security.cjs');
1365
+
1366
+ if (!config || !config.agent_skills || !agentType) return '';
1367
+
1368
+ let skillPaths = config.agent_skills[agentType];
1369
+ if (!skillPaths) return '';
1370
+
1371
+ // Normalize single string to array
1372
+ if (typeof skillPaths === 'string') skillPaths = [skillPaths];
1373
+ if (!Array.isArray(skillPaths) || skillPaths.length === 0) return '';
1374
+
1375
+ const validPaths = [];
1376
+ for (const skillPath of skillPaths) {
1377
+ if (typeof skillPath !== 'string') continue;
1378
+
1379
+ // Validate path safety — must resolve within project root
1380
+ const pathCheck = validatePath(skillPath, projectRoot);
1381
+ if (!pathCheck.safe) {
1382
+ process.stderr.write(`[agent-skills] WARNING: Skipping unsafe path "${skillPath}": ${pathCheck.error}\n`);
1383
+ continue;
1384
+ }
1385
+
1386
+ // Check that the skill directory and SKILL.md exist
1387
+ const skillMdPath = path.join(projectRoot, skillPath, 'SKILL.md');
1388
+ if (!fs.existsSync(skillMdPath)) {
1389
+ process.stderr.write(`[agent-skills] WARNING: Skill not found at "${skillPath}/SKILL.md" — skipping\n`);
1390
+ continue;
1391
+ }
1392
+
1393
+ validPaths.push(skillPath);
1394
+ }
1395
+
1396
+ if (validPaths.length === 0) return '';
1397
+
1398
+ const lines = validPaths.map(p => `- @${p}/SKILL.md`).join('\n');
1399
+ return `<agent_skills>\nRead these user-configured skills:\n${lines}\n</agent_skills>`;
1400
+ }
1401
+
1402
+ /**
1403
+ * Command: output the agent skills block for a given agent type.
1404
+ * Used by workflows: SKILLS=$(node "$TOOLS" agent-skills gsd-executor 2>/dev/null)
1405
+ */
1406
+ function cmdAgentSkills(cwd, agentType, raw) {
1407
+ if (!agentType) {
1408
+ // No agent type — output empty string silently
1409
+ output('', raw, '');
1410
+ return;
1411
+ }
1412
+
1413
+ const config = loadConfig(cwd);
1414
+ const block = buildAgentSkillsBlock(config, agentType, cwd);
1415
+ // Output raw text (not JSON) so workflows can embed it directly
1416
+ if (block) {
1417
+ process.stdout.write(block);
1418
+ }
1419
+ process.exit(0);
1420
+ }
1421
+
1422
+ module.exports = {
1423
+ cmdInitExecutePhase,
1424
+ cmdInitPlanPhase,
1425
+ cmdInitNewProject,
1426
+ cmdInitNewMilestone,
1427
+ cmdInitQuick,
1428
+ cmdInitResume,
1429
+ cmdInitVerifyWork,
1430
+ cmdInitPhaseOp,
1431
+ cmdInitTodos,
1432
+ cmdInitMilestoneOp,
1433
+ cmdInitMapCodebase,
1434
+ cmdInitProgress,
1435
+ cmdInitManager,
1436
+ cmdInitNewWorkspace,
1437
+ cmdInitListWorkspaces,
1438
+ cmdInitRemoveWorkspace,
1439
+ detectChildRepos,
1440
+ buildAgentSkillsBlock,
1441
+ cmdAgentSkills,
1442
+ };