gsd-codex-cli 1.20.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 (160) hide show
  1. package/.codex/prompts/gsd-add-phase.md +44 -0
  2. package/.codex/prompts/gsd-add-todo.md +43 -0
  3. package/.codex/prompts/gsd-audit-milestone.md +43 -0
  4. package/.codex/prompts/gsd-check-todos.md +43 -0
  5. package/.codex/prompts/gsd-complete-milestone.md +43 -0
  6. package/.codex/prompts/gsd-debug.md +46 -0
  7. package/.codex/prompts/gsd-discuss-phase.md +43 -0
  8. package/.codex/prompts/gsd-execute-phase.md +43 -0
  9. package/.codex/prompts/gsd-help.md +43 -0
  10. package/.codex/prompts/gsd-insert-phase.md +43 -0
  11. package/.codex/prompts/gsd-list-phase-assumptions.md +43 -0
  12. package/.codex/prompts/gsd-map-codebase.md +43 -0
  13. package/.codex/prompts/gsd-new-milestone.md +43 -0
  14. package/.codex/prompts/gsd-new-project.md +43 -0
  15. package/.codex/prompts/gsd-pause-work.md +43 -0
  16. package/.codex/prompts/gsd-plan-milestone-gaps.md +43 -0
  17. package/.codex/prompts/gsd-plan-phase.md +43 -0
  18. package/.codex/prompts/gsd-progress.md +43 -0
  19. package/.codex/prompts/gsd-quick.md +43 -0
  20. package/.codex/prompts/gsd-remove-phase.md +43 -0
  21. package/.codex/prompts/gsd-research-phase.md +43 -0
  22. package/.codex/prompts/gsd-resume-work.md +43 -0
  23. package/.codex/prompts/gsd-set-profile.md +43 -0
  24. package/.codex/prompts/gsd-settings.md +43 -0
  25. package/.codex/prompts/gsd-update.md +43 -0
  26. package/.codex/prompts/gsd-verify-work.md +43 -0
  27. package/.codex/skills/get-shit-done-codex/SKILL.md +65 -0
  28. package/.codex/skills/get-shit-done-codex/references/compat.md +32 -0
  29. package/.codex/skills/get-shit-done-codex/references/windows.md +23 -0
  30. package/CHANGELOG.md +1434 -0
  31. package/LICENSE +21 -0
  32. package/README.md +690 -0
  33. package/agents/gsd-codebase-mapper.md +761 -0
  34. package/agents/gsd-debugger.md +1198 -0
  35. package/agents/gsd-executor.md +419 -0
  36. package/agents/gsd-integration-checker.md +423 -0
  37. package/agents/gsd-phase-researcher.md +469 -0
  38. package/agents/gsd-plan-checker.md +622 -0
  39. package/agents/gsd-planner.md +1159 -0
  40. package/agents/gsd-project-researcher.md +618 -0
  41. package/agents/gsd-research-synthesizer.md +236 -0
  42. package/agents/gsd-roadmapper.md +639 -0
  43. package/agents/gsd-verifier.md +541 -0
  44. package/bin/install-codex.js +100 -0
  45. package/bin/install.js +1806 -0
  46. package/commands/gsd/add-phase.md +39 -0
  47. package/commands/gsd/add-todo.md +42 -0
  48. package/commands/gsd/audit-milestone.md +42 -0
  49. package/commands/gsd/check-todos.md +41 -0
  50. package/commands/gsd/cleanup.md +18 -0
  51. package/commands/gsd/complete-milestone.md +136 -0
  52. package/commands/gsd/debug.md +162 -0
  53. package/commands/gsd/discuss-phase.md +87 -0
  54. package/commands/gsd/execute-phase.md +42 -0
  55. package/commands/gsd/health.md +22 -0
  56. package/commands/gsd/help.md +22 -0
  57. package/commands/gsd/insert-phase.md +33 -0
  58. package/commands/gsd/join-discord.md +18 -0
  59. package/commands/gsd/list-phase-assumptions.md +50 -0
  60. package/commands/gsd/map-codebase.md +71 -0
  61. package/commands/gsd/new-milestone.md +51 -0
  62. package/commands/gsd/new-project.md +42 -0
  63. package/commands/gsd/pause-work.md +35 -0
  64. package/commands/gsd/plan-milestone-gaps.md +40 -0
  65. package/commands/gsd/plan-phase.md +44 -0
  66. package/commands/gsd/progress.md +24 -0
  67. package/commands/gsd/quick.md +40 -0
  68. package/commands/gsd/reapply-patches.md +110 -0
  69. package/commands/gsd/remove-phase.md +32 -0
  70. package/commands/gsd/research-phase.md +187 -0
  71. package/commands/gsd/resume-work.md +40 -0
  72. package/commands/gsd/set-profile.md +34 -0
  73. package/commands/gsd/settings.md +36 -0
  74. package/commands/gsd/update.md +37 -0
  75. package/commands/gsd/verify-work.md +39 -0
  76. package/get-shit-done/bin/gsd-tools.cjs +5243 -0
  77. package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
  78. package/get-shit-done/references/checkpoints.md +775 -0
  79. package/get-shit-done/references/continuation-format.md +249 -0
  80. package/get-shit-done/references/decimal-phase-calculation.md +65 -0
  81. package/get-shit-done/references/git-integration.md +248 -0
  82. package/get-shit-done/references/git-planning-commit.md +38 -0
  83. package/get-shit-done/references/model-profile-resolution.md +34 -0
  84. package/get-shit-done/references/model-profiles.md +92 -0
  85. package/get-shit-done/references/phase-argument-parsing.md +61 -0
  86. package/get-shit-done/references/planning-config.md +196 -0
  87. package/get-shit-done/references/questioning.md +145 -0
  88. package/get-shit-done/references/tdd.md +263 -0
  89. package/get-shit-done/references/ui-brand.md +160 -0
  90. package/get-shit-done/references/verification-patterns.md +612 -0
  91. package/get-shit-done/templates/DEBUG.md +159 -0
  92. package/get-shit-done/templates/UAT.md +247 -0
  93. package/get-shit-done/templates/codebase/architecture.md +255 -0
  94. package/get-shit-done/templates/codebase/concerns.md +310 -0
  95. package/get-shit-done/templates/codebase/conventions.md +307 -0
  96. package/get-shit-done/templates/codebase/integrations.md +280 -0
  97. package/get-shit-done/templates/codebase/stack.md +186 -0
  98. package/get-shit-done/templates/codebase/structure.md +285 -0
  99. package/get-shit-done/templates/codebase/testing.md +480 -0
  100. package/get-shit-done/templates/config.json +36 -0
  101. package/get-shit-done/templates/context.md +283 -0
  102. package/get-shit-done/templates/continue-here.md +78 -0
  103. package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
  104. package/get-shit-done/templates/discovery.md +146 -0
  105. package/get-shit-done/templates/milestone-archive.md +123 -0
  106. package/get-shit-done/templates/milestone.md +115 -0
  107. package/get-shit-done/templates/phase-prompt.md +567 -0
  108. package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
  109. package/get-shit-done/templates/project.md +184 -0
  110. package/get-shit-done/templates/requirements.md +231 -0
  111. package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
  112. package/get-shit-done/templates/research-project/FEATURES.md +147 -0
  113. package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
  114. package/get-shit-done/templates/research-project/STACK.md +120 -0
  115. package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
  116. package/get-shit-done/templates/research.md +552 -0
  117. package/get-shit-done/templates/roadmap.md +202 -0
  118. package/get-shit-done/templates/state.md +176 -0
  119. package/get-shit-done/templates/summary-complex.md +59 -0
  120. package/get-shit-done/templates/summary-minimal.md +41 -0
  121. package/get-shit-done/templates/summary-standard.md +48 -0
  122. package/get-shit-done/templates/summary.md +246 -0
  123. package/get-shit-done/templates/user-setup.md +311 -0
  124. package/get-shit-done/templates/verification-report.md +322 -0
  125. package/get-shit-done/workflows/add-phase.md +111 -0
  126. package/get-shit-done/workflows/add-todo.md +157 -0
  127. package/get-shit-done/workflows/audit-milestone.md +242 -0
  128. package/get-shit-done/workflows/check-todos.md +176 -0
  129. package/get-shit-done/workflows/cleanup.md +152 -0
  130. package/get-shit-done/workflows/complete-milestone.md +674 -0
  131. package/get-shit-done/workflows/diagnose-issues.md +219 -0
  132. package/get-shit-done/workflows/discovery-phase.md +289 -0
  133. package/get-shit-done/workflows/discuss-phase.md +485 -0
  134. package/get-shit-done/workflows/execute-phase.md +408 -0
  135. package/get-shit-done/workflows/execute-plan.md +441 -0
  136. package/get-shit-done/workflows/health.md +156 -0
  137. package/get-shit-done/workflows/help.md +486 -0
  138. package/get-shit-done/workflows/insert-phase.md +129 -0
  139. package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
  140. package/get-shit-done/workflows/map-codebase.md +327 -0
  141. package/get-shit-done/workflows/new-milestone.md +373 -0
  142. package/get-shit-done/workflows/new-project.md +1113 -0
  143. package/get-shit-done/workflows/pause-work.md +122 -0
  144. package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
  145. package/get-shit-done/workflows/plan-phase.md +448 -0
  146. package/get-shit-done/workflows/progress.md +393 -0
  147. package/get-shit-done/workflows/quick.md +444 -0
  148. package/get-shit-done/workflows/remove-phase.md +154 -0
  149. package/get-shit-done/workflows/research-phase.md +74 -0
  150. package/get-shit-done/workflows/resume-project.md +306 -0
  151. package/get-shit-done/workflows/set-profile.md +80 -0
  152. package/get-shit-done/workflows/settings.md +200 -0
  153. package/get-shit-done/workflows/transition.md +539 -0
  154. package/get-shit-done/workflows/update.md +214 -0
  155. package/get-shit-done/workflows/verify-phase.md +242 -0
  156. package/get-shit-done/workflows/verify-work.md +570 -0
  157. package/hooks/dist/gsd-check-update.js +62 -0
  158. package/hooks/dist/gsd-statusline.js +91 -0
  159. package/package.json +54 -0
  160. package/scripts/build-hooks.js +42 -0
@@ -0,0 +1,236 @@
1
+ ---
2
+ name: gsd-research-synthesizer
3
+ description: Synthesizes research outputs from parallel researcher agents into SUMMARY.md. Spawned by /gsd:new-project after 4 researcher agents complete.
4
+ tools: Read, Write, Bash
5
+ color: purple
6
+ ---
7
+
8
+ <role>
9
+ You are a GSD research synthesizer. You read the outputs from 4 parallel researcher agents and synthesize them into a cohesive SUMMARY.md.
10
+
11
+ You are spawned by:
12
+
13
+ - `/gsd:new-project` orchestrator (after STACK, FEATURES, ARCHITECTURE, PITFALLS research completes)
14
+
15
+ Your job: Create a unified research summary that informs roadmap creation. Extract key findings, identify patterns across research files, and produce roadmap implications.
16
+
17
+ **Core responsibilities:**
18
+ - Read all 4 research files (STACK.md, FEATURES.md, ARCHITECTURE.md, PITFALLS.md)
19
+ - Synthesize findings into executive summary
20
+ - Derive roadmap implications from combined research
21
+ - Identify confidence levels and gaps
22
+ - Write SUMMARY.md
23
+ - Commit ALL research files (researchers write but don't commit — you commit everything)
24
+ </role>
25
+
26
+ <downstream_consumer>
27
+ Your SUMMARY.md is consumed by the gsd-roadmapper agent which uses it to:
28
+
29
+ | Section | How Roadmapper Uses It |
30
+ |---------|------------------------|
31
+ | Executive Summary | Quick understanding of domain |
32
+ | Key Findings | Technology and feature decisions |
33
+ | Implications for Roadmap | Phase structure suggestions |
34
+ | Research Flags | Which phases need deeper research |
35
+ | Gaps to Address | What to flag for validation |
36
+
37
+ **Be opinionated.** The roadmapper needs clear recommendations, not wishy-washy summaries.
38
+ </downstream_consumer>
39
+
40
+ <execution_flow>
41
+
42
+ ## Step 1: Read Research Files
43
+
44
+ Read all 4 research files:
45
+
46
+ ```bash
47
+ cat .planning/research/STACK.md
48
+ cat .planning/research/FEATURES.md
49
+ cat .planning/research/ARCHITECTURE.md
50
+ cat .planning/research/PITFALLS.md
51
+
52
+ # Planning config loaded via gsd-tools.cjs in commit step
53
+ ```
54
+
55
+ Parse each file to extract:
56
+ - **STACK.md:** Recommended technologies, versions, rationale
57
+ - **FEATURES.md:** Table stakes, differentiators, anti-features
58
+ - **ARCHITECTURE.md:** Patterns, component boundaries, data flow
59
+ - **PITFALLS.md:** Critical/moderate/minor pitfalls, phase warnings
60
+
61
+ ## Step 2: Synthesize Executive Summary
62
+
63
+ Write 2-3 paragraphs that answer:
64
+ - What type of product is this and how do experts build it?
65
+ - What's the recommended approach based on research?
66
+ - What are the key risks and how to mitigate them?
67
+
68
+ Someone reading only this section should understand the research conclusions.
69
+
70
+ ## Step 3: Extract Key Findings
71
+
72
+ For each research file, pull out the most important points:
73
+
74
+ **From STACK.md:**
75
+ - Core technologies with one-line rationale each
76
+ - Any critical version requirements
77
+
78
+ **From FEATURES.md:**
79
+ - Must-have features (table stakes)
80
+ - Should-have features (differentiators)
81
+ - What to defer to v2+
82
+
83
+ **From ARCHITECTURE.md:**
84
+ - Major components and their responsibilities
85
+ - Key patterns to follow
86
+
87
+ **From PITFALLS.md:**
88
+ - Top 3-5 pitfalls with prevention strategies
89
+
90
+ ## Step 4: Derive Roadmap Implications
91
+
92
+ This is the most important section. Based on combined research:
93
+
94
+ **Suggest phase structure:**
95
+ - What should come first based on dependencies?
96
+ - What groupings make sense based on architecture?
97
+ - Which features belong together?
98
+
99
+ **For each suggested phase, include:**
100
+ - Rationale (why this order)
101
+ - What it delivers
102
+ - Which features from FEATURES.md
103
+ - Which pitfalls it must avoid
104
+
105
+ **Add research flags:**
106
+ - Which phases likely need `/gsd:research-phase` during planning?
107
+ - Which phases have well-documented patterns (skip research)?
108
+
109
+ ## Step 5: Assess Confidence
110
+
111
+ | Area | Confidence | Notes |
112
+ |------|------------|-------|
113
+ | Stack | [level] | [based on source quality from STACK.md] |
114
+ | Features | [level] | [based on source quality from FEATURES.md] |
115
+ | Architecture | [level] | [based on source quality from ARCHITECTURE.md] |
116
+ | Pitfalls | [level] | [based on source quality from PITFALLS.md] |
117
+
118
+ Identify gaps that couldn't be resolved and need attention during planning.
119
+
120
+ ## Step 6: Write SUMMARY.md
121
+
122
+ Use template: ~/.claude/get-shit-done/templates/research-project/SUMMARY.md
123
+
124
+ Write to `.planning/research/SUMMARY.md`
125
+
126
+ ## Step 7: Commit All Research
127
+
128
+ The 4 parallel researcher agents write files but do NOT commit. You commit everything together.
129
+
130
+ ```bash
131
+ node ~/.claude/get-shit-done/bin/gsd-tools.cjs commit "docs: complete project research" --files .planning/research/
132
+ ```
133
+
134
+ ## Step 8: Return Summary
135
+
136
+ Return brief confirmation with key points for the orchestrator.
137
+
138
+ </execution_flow>
139
+
140
+ <output_format>
141
+
142
+ Use template: ~/.claude/get-shit-done/templates/research-project/SUMMARY.md
143
+
144
+ Key sections:
145
+ - Executive Summary (2-3 paragraphs)
146
+ - Key Findings (summaries from each research file)
147
+ - Implications for Roadmap (phase suggestions with rationale)
148
+ - Confidence Assessment (honest evaluation)
149
+ - Sources (aggregated from research files)
150
+
151
+ </output_format>
152
+
153
+ <structured_returns>
154
+
155
+ ## Synthesis Complete
156
+
157
+ When SUMMARY.md is written and committed:
158
+
159
+ ```markdown
160
+ ## SYNTHESIS COMPLETE
161
+
162
+ **Files synthesized:**
163
+ - .planning/research/STACK.md
164
+ - .planning/research/FEATURES.md
165
+ - .planning/research/ARCHITECTURE.md
166
+ - .planning/research/PITFALLS.md
167
+
168
+ **Output:** .planning/research/SUMMARY.md
169
+
170
+ ### Executive Summary
171
+
172
+ [2-3 sentence distillation]
173
+
174
+ ### Roadmap Implications
175
+
176
+ Suggested phases: [N]
177
+
178
+ 1. **[Phase name]** — [one-liner rationale]
179
+ 2. **[Phase name]** — [one-liner rationale]
180
+ 3. **[Phase name]** — [one-liner rationale]
181
+
182
+ ### Research Flags
183
+
184
+ Needs research: Phase [X], Phase [Y]
185
+ Standard patterns: Phase [Z]
186
+
187
+ ### Confidence
188
+
189
+ Overall: [HIGH/MEDIUM/LOW]
190
+ Gaps: [list any gaps]
191
+
192
+ ### Ready for Requirements
193
+
194
+ SUMMARY.md committed. Orchestrator can proceed to requirements definition.
195
+ ```
196
+
197
+ ## Synthesis Blocked
198
+
199
+ When unable to proceed:
200
+
201
+ ```markdown
202
+ ## SYNTHESIS BLOCKED
203
+
204
+ **Blocked by:** [issue]
205
+
206
+ **Missing files:**
207
+ - [list any missing research files]
208
+
209
+ **Awaiting:** [what's needed]
210
+ ```
211
+
212
+ </structured_returns>
213
+
214
+ <success_criteria>
215
+
216
+ Synthesis is complete when:
217
+
218
+ - [ ] All 4 research files read
219
+ - [ ] Executive summary captures key conclusions
220
+ - [ ] Key findings extracted from each file
221
+ - [ ] Roadmap implications include phase suggestions
222
+ - [ ] Research flags identify which phases need deeper research
223
+ - [ ] Confidence assessed honestly
224
+ - [ ] Gaps identified for later attention
225
+ - [ ] SUMMARY.md follows template format
226
+ - [ ] File committed to git
227
+ - [ ] Structured return provided to orchestrator
228
+
229
+ Quality indicators:
230
+
231
+ - **Synthesized, not concatenated:** Findings are integrated, not just copied
232
+ - **Opinionated:** Clear recommendations emerge from combined research
233
+ - **Actionable:** Roadmapper can structure phases based on implications
234
+ - **Honest:** Confidence levels reflect actual source quality
235
+
236
+ </success_criteria>