ragarciaruben 1.20.7

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 (184) hide show
  1. package/.github/copilot-context/README.md +313 -0
  2. package/.github/copilot-context/agents/executor.agent.md +59 -0
  3. package/.github/copilot-context/agents/planner.agent.md +58 -0
  4. package/.github/copilot-context/agents/verifier.agent.md +68 -0
  5. package/.github/copilot-context/hooks/hooks.json +11 -0
  6. package/.github/copilot-context/hooks/inject-context.js +107 -0
  7. package/.github/copilot-context/instructions/architecture.instructions.md +33 -0
  8. package/.github/copilot-context/instructions/concerns.instructions.md +30 -0
  9. package/.github/copilot-context/instructions/conventions.instructions.md +25 -0
  10. package/.github/copilot-context/instructions/integrations.instructions.md +30 -0
  11. package/.github/copilot-context/instructions/stack.instructions.md +30 -0
  12. package/.github/copilot-context/instructions/structure.instructions.md +32 -0
  13. package/.github/copilot-context/instructions/testing.instructions.md +25 -0
  14. package/.github/copilot-context/prompts/execute-phase.prompt.md +148 -0
  15. package/.github/copilot-context/prompts/map-codebase.prompt.md +115 -0
  16. package/.github/copilot-context/prompts/new-project.prompt.md +85 -0
  17. package/.github/copilot-context/prompts/pause-work.prompt.md +104 -0
  18. package/.github/copilot-context/prompts/plan-phase.prompt.md +137 -0
  19. package/.github/copilot-context/prompts/progress.prompt.md +69 -0
  20. package/.github/copilot-context/prompts/resume-work.prompt.md +74 -0
  21. package/.github/copilot-context/prompts/sync-instructions.prompt.md +86 -0
  22. package/.github/copilot-context/prompts/verify-work.prompt.md +126 -0
  23. package/.github/copilot-context/skills/map-codebase/SKILL.md +49 -0
  24. package/.github/copilot-context/skills/project-history/SKILL.md +46 -0
  25. package/.github/copilot-instructions.md +68 -0
  26. package/.planning/PROJECT.md +61 -0
  27. package/.planning/REQUIREMENTS.md +70 -0
  28. package/.planning/ROADMAP.md +75 -0
  29. package/.planning/STATE.md +75 -0
  30. package/.planning/codebase/ARCHITECTURE.md +76 -0
  31. package/.planning/codebase/CONCERNS.md +102 -0
  32. package/.planning/codebase/CONVENTIONS.md +119 -0
  33. package/.planning/codebase/INTEGRATIONS.md +114 -0
  34. package/.planning/codebase/STACK.md +78 -0
  35. package/.planning/codebase/STRUCTURE.md +75 -0
  36. package/.planning/codebase/TESTING.md +157 -0
  37. package/.planning/continue-here.md +44 -0
  38. package/.vscode/settings.json +16 -0
  39. package/LICENSE +21 -0
  40. package/README.md +704 -0
  41. package/agents/gsd-codebase-mapper.md +764 -0
  42. package/agents/gsd-debugger.md +1246 -0
  43. package/agents/gsd-executor.md +469 -0
  44. package/agents/gsd-integration-checker.md +443 -0
  45. package/agents/gsd-phase-researcher.md +546 -0
  46. package/agents/gsd-plan-checker.md +690 -0
  47. package/agents/gsd-planner.md +1275 -0
  48. package/agents/gsd-project-researcher.md +621 -0
  49. package/agents/gsd-research-synthesizer.md +239 -0
  50. package/agents/gsd-roadmapper.md +642 -0
  51. package/agents/gsd-verifier.md +573 -0
  52. package/bin/install.js +2091 -0
  53. package/bin/setup-copilot-context.js +180 -0
  54. package/commands/gsd/add-phase.md +43 -0
  55. package/commands/gsd/add-tests.md +41 -0
  56. package/commands/gsd/add-todo.md +47 -0
  57. package/commands/gsd/audit-milestone.md +36 -0
  58. package/commands/gsd/check-todos.md +45 -0
  59. package/commands/gsd/cleanup.md +18 -0
  60. package/commands/gsd/complete-milestone.md +136 -0
  61. package/commands/gsd/debug.md +167 -0
  62. package/commands/gsd/discuss-phase.md +83 -0
  63. package/commands/gsd/execute-phase.md +41 -0
  64. package/commands/gsd/health.md +22 -0
  65. package/commands/gsd/help.md +22 -0
  66. package/commands/gsd/insert-phase.md +32 -0
  67. package/commands/gsd/join-discord.md +18 -0
  68. package/commands/gsd/list-phase-assumptions.md +46 -0
  69. package/commands/gsd/map-codebase.md +71 -0
  70. package/commands/gsd/new-milestone.md +44 -0
  71. package/commands/gsd/new-project.md +42 -0
  72. package/commands/gsd/new-project.md.bak +1041 -0
  73. package/commands/gsd/pause-work.md +38 -0
  74. package/commands/gsd/plan-milestone-gaps.md +34 -0
  75. package/commands/gsd/plan-phase.md +45 -0
  76. package/commands/gsd/progress.md +24 -0
  77. package/commands/gsd/quick.md +41 -0
  78. package/commands/gsd/reapply-patches.md +110 -0
  79. package/commands/gsd/remove-phase.md +31 -0
  80. package/commands/gsd/research-phase.md +189 -0
  81. package/commands/gsd/resume-work.md +40 -0
  82. package/commands/gsd/set-profile.md +34 -0
  83. package/commands/gsd/settings.md +36 -0
  84. package/commands/gsd/update.md +37 -0
  85. package/commands/gsd/verify-work.md +38 -0
  86. package/get-shit-done/bin/gsd-tools.cjs +585 -0
  87. package/get-shit-done/bin/lib/commands.cjs +553 -0
  88. package/get-shit-done/bin/lib/config.cjs +162 -0
  89. package/get-shit-done/bin/lib/core.cjs +411 -0
  90. package/get-shit-done/bin/lib/frontmatter.cjs +299 -0
  91. package/get-shit-done/bin/lib/init.cjs +710 -0
  92. package/get-shit-done/bin/lib/milestone.cjs +215 -0
  93. package/get-shit-done/bin/lib/phase.cjs +870 -0
  94. package/get-shit-done/bin/lib/roadmap.cjs +298 -0
  95. package/get-shit-done/bin/lib/state.cjs +521 -0
  96. package/get-shit-done/bin/lib/template.cjs +222 -0
  97. package/get-shit-done/bin/lib/verify.cjs +772 -0
  98. package/get-shit-done/references/checkpoints.md +776 -0
  99. package/get-shit-done/references/continuation-format.md +249 -0
  100. package/get-shit-done/references/decimal-phase-calculation.md +65 -0
  101. package/get-shit-done/references/git-integration.md +248 -0
  102. package/get-shit-done/references/git-planning-commit.md +38 -0
  103. package/get-shit-done/references/model-profile-resolution.md +34 -0
  104. package/get-shit-done/references/model-profiles.md +92 -0
  105. package/get-shit-done/references/phase-argument-parsing.md +61 -0
  106. package/get-shit-done/references/planning-config.md +196 -0
  107. package/get-shit-done/references/questioning.md +145 -0
  108. package/get-shit-done/references/tdd.md +263 -0
  109. package/get-shit-done/references/ui-brand.md +160 -0
  110. package/get-shit-done/references/verification-patterns.md +612 -0
  111. package/get-shit-done/templates/DEBUG.md +164 -0
  112. package/get-shit-done/templates/UAT.md +247 -0
  113. package/get-shit-done/templates/VALIDATION.md +76 -0
  114. package/get-shit-done/templates/codebase/architecture.md +255 -0
  115. package/get-shit-done/templates/codebase/concerns.md +310 -0
  116. package/get-shit-done/templates/codebase/conventions.md +307 -0
  117. package/get-shit-done/templates/codebase/integrations.md +280 -0
  118. package/get-shit-done/templates/codebase/stack.md +186 -0
  119. package/get-shit-done/templates/codebase/structure.md +285 -0
  120. package/get-shit-done/templates/codebase/testing.md +480 -0
  121. package/get-shit-done/templates/config.json +37 -0
  122. package/get-shit-done/templates/context.md +283 -0
  123. package/get-shit-done/templates/continue-here.md +78 -0
  124. package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
  125. package/get-shit-done/templates/discovery.md +146 -0
  126. package/get-shit-done/templates/milestone-archive.md +123 -0
  127. package/get-shit-done/templates/milestone.md +115 -0
  128. package/get-shit-done/templates/phase-prompt.md +569 -0
  129. package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
  130. package/get-shit-done/templates/project.md +184 -0
  131. package/get-shit-done/templates/requirements.md +231 -0
  132. package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
  133. package/get-shit-done/templates/research-project/FEATURES.md +147 -0
  134. package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
  135. package/get-shit-done/templates/research-project/STACK.md +120 -0
  136. package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
  137. package/get-shit-done/templates/research.md +552 -0
  138. package/get-shit-done/templates/retrospective.md +54 -0
  139. package/get-shit-done/templates/roadmap.md +202 -0
  140. package/get-shit-done/templates/state.md +176 -0
  141. package/get-shit-done/templates/summary-complex.md +59 -0
  142. package/get-shit-done/templates/summary-minimal.md +41 -0
  143. package/get-shit-done/templates/summary-standard.md +48 -0
  144. package/get-shit-done/templates/summary.md +248 -0
  145. package/get-shit-done/templates/user-setup.md +311 -0
  146. package/get-shit-done/templates/verification-report.md +322 -0
  147. package/get-shit-done/workflows/add-phase.md +111 -0
  148. package/get-shit-done/workflows/add-tests.md +350 -0
  149. package/get-shit-done/workflows/add-todo.md +157 -0
  150. package/get-shit-done/workflows/audit-milestone.md +297 -0
  151. package/get-shit-done/workflows/check-todos.md +176 -0
  152. package/get-shit-done/workflows/cleanup.md +152 -0
  153. package/get-shit-done/workflows/complete-milestone.md +763 -0
  154. package/get-shit-done/workflows/diagnose-issues.md +219 -0
  155. package/get-shit-done/workflows/discovery-phase.md +289 -0
  156. package/get-shit-done/workflows/discuss-phase.md +542 -0
  157. package/get-shit-done/workflows/execute-phase.md +449 -0
  158. package/get-shit-done/workflows/execute-plan.md +448 -0
  159. package/get-shit-done/workflows/health.md +156 -0
  160. package/get-shit-done/workflows/help.md +489 -0
  161. package/get-shit-done/workflows/insert-phase.md +129 -0
  162. package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
  163. package/get-shit-done/workflows/map-codebase.md +315 -0
  164. package/get-shit-done/workflows/new-milestone.md +382 -0
  165. package/get-shit-done/workflows/new-project.md +1116 -0
  166. package/get-shit-done/workflows/pause-work.md +122 -0
  167. package/get-shit-done/workflows/plan-milestone-gaps.md +274 -0
  168. package/get-shit-done/workflows/plan-phase.md +569 -0
  169. package/get-shit-done/workflows/progress.md +381 -0
  170. package/get-shit-done/workflows/quick.md +453 -0
  171. package/get-shit-done/workflows/remove-phase.md +154 -0
  172. package/get-shit-done/workflows/research-phase.md +73 -0
  173. package/get-shit-done/workflows/resume-project.md +306 -0
  174. package/get-shit-done/workflows/set-profile.md +80 -0
  175. package/get-shit-done/workflows/settings.md +213 -0
  176. package/get-shit-done/workflows/transition.md +544 -0
  177. package/get-shit-done/workflows/update.md +219 -0
  178. package/get-shit-done/workflows/verify-phase.md +242 -0
  179. package/get-shit-done/workflows/verify-work.md +569 -0
  180. package/hooks/dist/gsd-check-update.js +62 -0
  181. package/hooks/dist/gsd-context-monitor.js +122 -0
  182. package/hooks/dist/gsd-statusline.js +108 -0
  183. package/package.json +54 -0
  184. package/scripts/build-hooks.js +43 -0
package/README.md ADDED
@@ -0,0 +1,704 @@
1
+ <div align="center">
2
+
3
+ # GET SHIT DONE
4
+
5
+ **A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini CLI, and Codex.**
6
+
7
+ **Solves context rot — the quality degradation that happens as Claude fills its context window.**
8
+
9
+ [![npm version](https://img.shields.io/npm/v/get-shit-done-cc?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/get-shit-done-cc)
10
+ [![npm downloads](https://img.shields.io/npm/dm/get-shit-done-cc?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/get-shit-done-cc)
11
+ [![Discord](https://img.shields.io/badge/Discord-Join-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/5JJgD5svVS)
12
+ [![X (Twitter)](https://img.shields.io/badge/X-@gsd__foundation-000000?style=for-the-badge&logo=x&logoColor=white)](https://x.com/gsd_foundation)
13
+ [![$GSD Token](https://img.shields.io/badge/$GSD-Dexscreener-1C1C1C?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgZmlsbD0iIzAwRkYwMCIvPjwvc3ZnPg==&logoColor=00FF00)](https://dexscreener.com/solana/dwudwjvan7bzkw9zwlbyv6kspdlvhwzrqy6ebk8xzxkv)
14
+ [![GitHub stars](https://img.shields.io/github/stars/glittercowboy/get-shit-done?style=for-the-badge&logo=github&color=181717)](https://github.com/glittercowboy/get-shit-done)
15
+ [![License](https://img.shields.io/badge/license-MIT-blue?style=for-the-badge)](LICENSE)
16
+
17
+ <br>
18
+
19
+ ```bash
20
+ npx get-shit-done-cc@latest
21
+ ```
22
+
23
+ **Works on Mac, Windows, and Linux.**
24
+
25
+ <br>
26
+
27
+ ![GSD Install](assets/terminal.svg)
28
+
29
+ <br>
30
+
31
+ *"If you know clearly what you want, this WILL build it for you. No bs."*
32
+
33
+ *"I've done SpecKit, OpenSpec and Taskmaster — this has produced the best results for me."*
34
+
35
+ *"By far the most powerful addition to my Claude Code. Nothing over-engineered. Literally just gets shit done."*
36
+
37
+ <br>
38
+
39
+ **Trusted by engineers at Amazon, Google, Shopify, and Webflow.**
40
+
41
+ [Why I Built This](#why-i-built-this) · [How It Works](#how-it-works) · [Commands](#commands) · [Why It Works](#why-it-works) · [User Guide](docs/USER-GUIDE.md)
42
+
43
+ </div>
44
+
45
+ ---
46
+
47
+ ## Why I Built This
48
+
49
+ I'm a solo developer. I don't write code — Claude Code does.
50
+
51
+ Other spec-driven development tools exist; BMAD, Speckit... But they all seem to make things way more complicated than they need to be (sprint ceremonies, story points, stakeholder syncs, retrospectives, Jira workflows) or lack real big picture understanding of what you're building. I'm not a 50-person software company. I don't want to play enterprise theater. I'm just a creative person trying to build great things that work.
52
+
53
+ So I built GSD. The complexity is in the system, not in your workflow. Behind the scenes: context engineering, XML prompt formatting, subagent orchestration, state management. What you see: a few commands that just work.
54
+
55
+ The system gives Claude everything it needs to do the work *and* verify it. I trust the workflow. It just does a good job.
56
+
57
+ That's what this is. No enterprise roleplay bullshit. Just an incredibly effective system for building cool stuff consistently using Claude Code.
58
+
59
+ — **TÂCHES**
60
+
61
+ ---
62
+
63
+ Vibecoding has a bad reputation. You describe what you want, AI generates code, and you get inconsistent garbage that falls apart at scale.
64
+
65
+ GSD fixes that. It's the context engineering layer that makes Claude Code reliable. Describe your idea, let the system extract everything it needs to know, and let Claude Code get to work.
66
+
67
+ ---
68
+
69
+ ## Who This Is For
70
+
71
+ People who want to describe what they want and have it built correctly — without pretending they're running a 50-person engineering org.
72
+
73
+ ---
74
+
75
+ ## Getting Started
76
+
77
+ ```bash
78
+ npx get-shit-done-cc@latest
79
+ ```
80
+
81
+ The installer prompts you to choose:
82
+ 1. **Runtime** — Claude Code, OpenCode, Gemini, Codex, or all
83
+ 2. **Location** — Global (all projects) or local (current project only)
84
+
85
+ Verify with:
86
+ - Claude Code / Gemini: `/gsd:help`
87
+ - OpenCode: `/gsd-help`
88
+ - Codex: `$gsd-help`
89
+
90
+ > [!NOTE]
91
+ > Codex installation uses skills (`skills/gsd-*/SKILL.md`) rather than custom prompts.
92
+
93
+ ### Staying Updated
94
+
95
+ GSD evolves fast. Update periodically:
96
+
97
+ ```bash
98
+ npx get-shit-done-cc@latest
99
+ ```
100
+
101
+ <details>
102
+ <summary><strong>Non-interactive Install (Docker, CI, Scripts)</strong></summary>
103
+
104
+ ```bash
105
+ # Claude Code
106
+ npx get-shit-done-cc --claude --global # Install to ~/.claude/
107
+ npx get-shit-done-cc --claude --local # Install to ./.claude/
108
+
109
+ # OpenCode (open source, free models)
110
+ npx get-shit-done-cc --opencode --global # Install to ~/.config/opencode/
111
+
112
+ # Gemini CLI
113
+ npx get-shit-done-cc --gemini --global # Install to ~/.gemini/
114
+
115
+ # Codex (skills-first)
116
+ npx get-shit-done-cc --codex --global # Install to ~/.codex/
117
+ npx get-shit-done-cc --codex --local # Install to ./.codex/
118
+
119
+ # All runtimes
120
+ npx get-shit-done-cc --all --global # Install to all directories
121
+ ```
122
+
123
+ Use `--global` (`-g`) or `--local` (`-l`) to skip the location prompt.
124
+ Use `--claude`, `--opencode`, `--gemini`, `--codex`, or `--all` to skip the runtime prompt.
125
+
126
+ </details>
127
+
128
+ <details>
129
+ <summary><strong>Development Installation</strong></summary>
130
+
131
+ Clone the repository and run the installer locally:
132
+
133
+ ```bash
134
+ git clone https://github.com/glittercowboy/get-shit-done.git
135
+ cd get-shit-done
136
+ node bin/install.js --claude --local
137
+ ```
138
+
139
+ Installs to `./.claude/` for testing modifications before contributing.
140
+
141
+ </details>
142
+
143
+ ### Recommended: Skip Permissions Mode
144
+
145
+ GSD is designed for frictionless automation. Run Claude Code with:
146
+
147
+ ```bash
148
+ claude --dangerously-skip-permissions
149
+ ```
150
+
151
+ > [!TIP]
152
+ > This is how GSD is intended to be used — stopping to approve `date` and `git commit` 50 times defeats the purpose.
153
+
154
+ <details>
155
+ <summary><strong>Alternative: Granular Permissions</strong></summary>
156
+
157
+ If you prefer not to use that flag, add this to your project's `.claude/settings.json`:
158
+
159
+ ```json
160
+ {
161
+ "permissions": {
162
+ "allow": [
163
+ "Bash(date:*)",
164
+ "Bash(echo:*)",
165
+ "Bash(cat:*)",
166
+ "Bash(ls:*)",
167
+ "Bash(mkdir:*)",
168
+ "Bash(wc:*)",
169
+ "Bash(head:*)",
170
+ "Bash(tail:*)",
171
+ "Bash(sort:*)",
172
+ "Bash(grep:*)",
173
+ "Bash(tr:*)",
174
+ "Bash(git add:*)",
175
+ "Bash(git commit:*)",
176
+ "Bash(git status:*)",
177
+ "Bash(git log:*)",
178
+ "Bash(git diff:*)",
179
+ "Bash(git tag:*)"
180
+ ]
181
+ }
182
+ }
183
+ ```
184
+
185
+ </details>
186
+
187
+ ---
188
+
189
+ ## How It Works
190
+
191
+ > **Already have code?** Run `/gsd:map-codebase` first. It spawns parallel agents to analyze your stack, architecture, conventions, and concerns. Then `/gsd:new-project` knows your codebase — questions focus on what you're adding, and planning automatically loads your patterns.
192
+
193
+ ### 1. Initialize Project
194
+
195
+ ```
196
+ /gsd:new-project
197
+ ```
198
+
199
+ One command, one flow. The system:
200
+
201
+ 1. **Questions** — Asks until it understands your idea completely (goals, constraints, tech preferences, edge cases)
202
+ 2. **Research** — Spawns parallel agents to investigate the domain (optional but recommended)
203
+ 3. **Requirements** — Extracts what's v1, v2, and out of scope
204
+ 4. **Roadmap** — Creates phases mapped to requirements
205
+
206
+ You approve the roadmap. Now you're ready to build.
207
+
208
+ **Creates:** `PROJECT.md`, `REQUIREMENTS.md`, `ROADMAP.md`, `STATE.md`, `.planning/research/`
209
+
210
+ ---
211
+
212
+ ### 2. Discuss Phase
213
+
214
+ ```
215
+ /gsd:discuss-phase 1
216
+ ```
217
+
218
+ **This is where you shape the implementation.**
219
+
220
+ Your roadmap has a sentence or two per phase. That's not enough context to build something the way *you* imagine it. This step captures your preferences before anything gets researched or planned.
221
+
222
+ The system analyzes the phase and identifies gray areas based on what's being built:
223
+
224
+ - **Visual features** → Layout, density, interactions, empty states
225
+ - **APIs/CLIs** → Response format, flags, error handling, verbosity
226
+ - **Content systems** → Structure, tone, depth, flow
227
+ - **Organization tasks** → Grouping criteria, naming, duplicates, exceptions
228
+
229
+ For each area you select, it asks until you're satisfied. The output — `CONTEXT.md` — feeds directly into the next two steps:
230
+
231
+ 1. **Researcher reads it** — Knows what patterns to investigate ("user wants card layout" → research card component libraries)
232
+ 2. **Planner reads it** — Knows what decisions are locked ("infinite scroll decided" → plan includes scroll handling)
233
+
234
+ The deeper you go here, the more the system builds what you actually want. Skip it and you get reasonable defaults. Use it and you get *your* vision.
235
+
236
+ **Creates:** `{phase_num}-CONTEXT.md`
237
+
238
+ ---
239
+
240
+ ### 3. Plan Phase
241
+
242
+ ```
243
+ /gsd:plan-phase 1
244
+ ```
245
+
246
+ The system:
247
+
248
+ 1. **Researches** — Investigates how to implement this phase, guided by your CONTEXT.md decisions
249
+ 2. **Plans** — Creates 2-3 atomic task plans with XML structure
250
+ 3. **Verifies** — Checks plans against requirements, loops until they pass
251
+
252
+ Each plan is small enough to execute in a fresh context window. No degradation, no "I'll be more concise now."
253
+
254
+ **Creates:** `{phase_num}-RESEARCH.md`, `{phase_num}-{N}-PLAN.md`
255
+
256
+ ---
257
+
258
+ ### 4. Execute Phase
259
+
260
+ ```
261
+ /gsd:execute-phase 1
262
+ ```
263
+
264
+ The system:
265
+
266
+ 1. **Runs plans in waves** — Parallel where possible, sequential when dependent
267
+ 2. **Fresh context per plan** — 200k tokens purely for implementation, zero accumulated garbage
268
+ 3. **Commits per task** — Every task gets its own atomic commit
269
+ 4. **Verifies against goals** — Checks the codebase delivers what the phase promised
270
+
271
+ Walk away, come back to completed work with clean git history.
272
+
273
+ **How Wave Execution Works:**
274
+
275
+ Plans are grouped into "waves" based on dependencies. Within each wave, plans run in parallel. Waves run sequentially.
276
+
277
+ ```
278
+ ┌─────────────────────────────────────────────────────────────────────┐
279
+ │ PHASE EXECUTION │
280
+ ├─────────────────────────────────────────────────────────────────────┤
281
+ │ │
282
+ │ WAVE 1 (parallel) WAVE 2 (parallel) WAVE 3 │
283
+ │ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
284
+ │ │ Plan 01 │ │ Plan 02 │ → │ Plan 03 │ │ Plan 04 │ → │ Plan 05 │ │
285
+ │ │ │ │ │ │ │ │ │ │ │ │
286
+ │ │ User │ │ Product │ │ Orders │ │ Cart │ │ Checkout│ │
287
+ │ │ Model │ │ Model │ │ API │ │ API │ │ UI │ │
288
+ │ └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘ │
289
+ │ │ │ ↑ ↑ ↑ │
290
+ │ └───────────┴──────────────┴───────────┘ │ │
291
+ │ Dependencies: Plan 03 needs Plan 01 │ │
292
+ │ Plan 04 needs Plan 02 │ │
293
+ │ Plan 05 needs Plans 03 + 04 │ │
294
+ │ │
295
+ └─────────────────────────────────────────────────────────────────────┘
296
+ ```
297
+
298
+ **Why waves matter:**
299
+ - Independent plans → Same wave → Run in parallel
300
+ - Dependent plans → Later wave → Wait for dependencies
301
+ - File conflicts → Sequential plans or same plan
302
+
303
+ This is why "vertical slices" (Plan 01: User feature end-to-end) parallelize better than "horizontal layers" (Plan 01: All models, Plan 02: All APIs).
304
+
305
+ **Creates:** `{phase_num}-{N}-SUMMARY.md`, `{phase_num}-VERIFICATION.md`
306
+
307
+ ---
308
+
309
+ ### 5. Verify Work
310
+
311
+ ```
312
+ /gsd:verify-work 1
313
+ ```
314
+
315
+ **This is where you confirm it actually works.**
316
+
317
+ Automated verification checks that code exists and tests pass. But does the feature *work* the way you expected? This is your chance to use it.
318
+
319
+ The system:
320
+
321
+ 1. **Extracts testable deliverables** — What you should be able to do now
322
+ 2. **Walks you through one at a time** — "Can you log in with email?" Yes/no, or describe what's wrong
323
+ 3. **Diagnoses failures automatically** — Spawns debug agents to find root causes
324
+ 4. **Creates verified fix plans** — Ready for immediate re-execution
325
+
326
+ If everything passes, you move on. If something's broken, you don't manually debug — you just run `/gsd:execute-phase` again with the fix plans it created.
327
+
328
+ **Creates:** `{phase_num}-UAT.md`, fix plans if issues found
329
+
330
+ ---
331
+
332
+ ### 6. Repeat → Complete → Next Milestone
333
+
334
+ ```
335
+ /gsd:discuss-phase 2
336
+ /gsd:plan-phase 2
337
+ /gsd:execute-phase 2
338
+ /gsd:verify-work 2
339
+ ...
340
+ /gsd:complete-milestone
341
+ /gsd:new-milestone
342
+ ```
343
+
344
+ Loop **discuss → plan → execute → verify** until milestone complete.
345
+
346
+ Each phase gets your input (discuss), proper research (plan), clean execution (execute), and human verification (verify). Context stays fresh. Quality stays high.
347
+
348
+ When all phases are done, `/gsd:complete-milestone` archives the milestone and tags the release.
349
+
350
+ Then `/gsd:new-milestone` starts the next version — same flow as `new-project` but for your existing codebase. You describe what you want to build next, the system researches the domain, you scope requirements, and it creates a fresh roadmap. Each milestone is a clean cycle: define → build → ship.
351
+
352
+ ---
353
+
354
+ ### Quick Mode
355
+
356
+ ```
357
+ /gsd:quick
358
+ ```
359
+
360
+ **For ad-hoc tasks that don't need full planning.**
361
+
362
+ Quick mode gives you GSD guarantees (atomic commits, state tracking) with a faster path:
363
+
364
+ - **Same agents** — Planner + executor, same quality
365
+ - **Skips optional steps** — No research, no plan checker, no verifier
366
+ - **Separate tracking** — Lives in `.planning/quick/`, not phases
367
+
368
+ Use for: bug fixes, small features, config changes, one-off tasks.
369
+
370
+ ```
371
+ /gsd:quick
372
+ > What do you want to do? "Add dark mode toggle to settings"
373
+ ```
374
+
375
+ **Creates:** `.planning/quick/001-add-dark-mode-toggle/PLAN.md`, `SUMMARY.md`
376
+
377
+ ---
378
+
379
+ ## Why It Works
380
+
381
+ ### Context Engineering
382
+
383
+ Claude Code is incredibly powerful *if* you give it the context it needs. Most people don't.
384
+
385
+ GSD handles it for you:
386
+
387
+ | File | What it does |
388
+ |------|--------------|
389
+ | `PROJECT.md` | Project vision, always loaded |
390
+ | `research/` | Ecosystem knowledge (stack, features, architecture, pitfalls) |
391
+ | `REQUIREMENTS.md` | Scoped v1/v2 requirements with phase traceability |
392
+ | `ROADMAP.md` | Where you're going, what's done |
393
+ | `STATE.md` | Decisions, blockers, position — memory across sessions |
394
+ | `PLAN.md` | Atomic task with XML structure, verification steps |
395
+ | `SUMMARY.md` | What happened, what changed, committed to history |
396
+ | `todos/` | Captured ideas and tasks for later work |
397
+
398
+ Size limits based on where Claude's quality degrades. Stay under, get consistent excellence.
399
+
400
+ ### XML Prompt Formatting
401
+
402
+ Every plan is structured XML optimized for Claude:
403
+
404
+ ```xml
405
+ <task type="auto">
406
+ <name>Create login endpoint</name>
407
+ <files>src/app/api/auth/login/route.ts</files>
408
+ <action>
409
+ Use jose for JWT (not jsonwebtoken - CommonJS issues).
410
+ Validate credentials against users table.
411
+ Return httpOnly cookie on success.
412
+ </action>
413
+ <verify>curl -X POST localhost:3000/api/auth/login returns 200 + Set-Cookie</verify>
414
+ <done>Valid credentials return cookie, invalid return 401</done>
415
+ </task>
416
+ ```
417
+
418
+ Precise instructions. No guessing. Verification built in.
419
+
420
+ ### Multi-Agent Orchestration
421
+
422
+ Every stage uses the same pattern: a thin orchestrator spawns specialized agents, collects results, and routes to the next step.
423
+
424
+ | Stage | Orchestrator does | Agents do |
425
+ |-------|------------------|-----------|
426
+ | Research | Coordinates, presents findings | 4 parallel researchers investigate stack, features, architecture, pitfalls |
427
+ | Planning | Validates, manages iteration | Planner creates plans, checker verifies, loop until pass |
428
+ | Execution | Groups into waves, tracks progress | Executors implement in parallel, each with fresh 200k context |
429
+ | Verification | Presents results, routes next | Verifier checks codebase against goals, debuggers diagnose failures |
430
+
431
+ The orchestrator never does heavy lifting. It spawns agents, waits, integrates results.
432
+
433
+ **The result:** You can run an entire phase — deep research, multiple plans created and verified, thousands of lines of code written across parallel executors, automated verification against goals — and your main context window stays at 30-40%. The work happens in fresh subagent contexts. Your session stays fast and responsive.
434
+
435
+ ### Atomic Git Commits
436
+
437
+ Each task gets its own commit immediately after completion:
438
+
439
+ ```bash
440
+ abc123f docs(08-02): complete user registration plan
441
+ def456g feat(08-02): add email confirmation flow
442
+ hij789k feat(08-02): implement password hashing
443
+ lmn012o feat(08-02): create registration endpoint
444
+ ```
445
+
446
+ > [!NOTE]
447
+ > **Benefits:** Git bisect finds exact failing task. Each task independently revertable. Clear history for Claude in future sessions. Better observability in AI-automated workflow.
448
+
449
+ Every commit is surgical, traceable, and meaningful.
450
+
451
+ ### Modular by Design
452
+
453
+ - Add phases to current milestone
454
+ - Insert urgent work between phases
455
+ - Complete milestones and start fresh
456
+ - Adjust plans without rebuilding everything
457
+
458
+ You're never locked in. The system adapts.
459
+
460
+ ---
461
+
462
+ ## Commands
463
+
464
+ ### Core Workflow
465
+
466
+ | Command | What it does |
467
+ |---------|--------------|
468
+ | `/gsd:new-project [--auto]` | Full initialization: questions → research → requirements → roadmap |
469
+ | `/gsd:discuss-phase [N] [--auto]` | Capture implementation decisions before planning |
470
+ | `/gsd:plan-phase [N] [--auto]` | Research + plan + verify for a phase |
471
+ | `/gsd:execute-phase <N>` | Execute all plans in parallel waves, verify when complete |
472
+ | `/gsd:verify-work [N]` | Manual user acceptance testing ¹ |
473
+ | `/gsd:audit-milestone` | Verify milestone achieved its definition of done |
474
+ | `/gsd:complete-milestone` | Archive milestone, tag release |
475
+ | `/gsd:new-milestone [name]` | Start next version: questions → research → requirements → roadmap |
476
+
477
+ ### Navigation
478
+
479
+ | Command | What it does |
480
+ |---------|--------------|
481
+ | `/gsd:progress` | Where am I? What's next? |
482
+ | `/gsd:help` | Show all commands and usage guide |
483
+ | `/gsd:update` | Update GSD with changelog preview |
484
+ | `/gsd:join-discord` | Join the GSD Discord community |
485
+
486
+ ### Brownfield
487
+
488
+ | Command | What it does |
489
+ |---------|--------------|
490
+ | `/gsd:map-codebase` | Analyze existing codebase before new-project |
491
+
492
+ ### Phase Management
493
+
494
+ | Command | What it does |
495
+ |---------|--------------|
496
+ | `/gsd:add-phase` | Append phase to roadmap |
497
+ | `/gsd:insert-phase [N]` | Insert urgent work between phases |
498
+ | `/gsd:remove-phase [N]` | Remove future phase, renumber |
499
+ | `/gsd:list-phase-assumptions [N]` | See Claude's intended approach before planning |
500
+ | `/gsd:plan-milestone-gaps` | Create phases to close gaps from audit |
501
+
502
+ ### Session
503
+
504
+ | Command | What it does |
505
+ |---------|--------------|
506
+ | `/gsd:pause-work` | Create handoff when stopping mid-phase |
507
+ | `/gsd:resume-work` | Restore from last session |
508
+
509
+ ### Utilities
510
+
511
+ | Command | What it does |
512
+ |---------|--------------|
513
+ | `/gsd:settings` | Configure model profile and workflow agents |
514
+ | `/gsd:set-profile <profile>` | Switch model profile (quality/balanced/budget) |
515
+ | `/gsd:add-todo [desc]` | Capture idea for later |
516
+ | `/gsd:check-todos` | List pending todos |
517
+ | `/gsd:debug [desc]` | Systematic debugging with persistent state |
518
+ | `/gsd:quick [--full]` | Execute ad-hoc task with GSD guarantees (`--full` adds plan-checking and verification) |
519
+ | `/gsd:health [--repair]` | Validate `.planning/` directory integrity, auto-repair with `--repair` |
520
+
521
+ <sup>¹ Contributed by reddit user OracleGreyBeard</sup>
522
+
523
+ ---
524
+
525
+ ## Configuration
526
+
527
+ GSD stores project settings in `.planning/config.json`. Configure during `/gsd:new-project` or update later with `/gsd:settings`. For the full config schema, workflow toggles, git branching options, and per-agent model breakdown, see the [User Guide](docs/USER-GUIDE.md#configuration-reference).
528
+
529
+ ### Core Settings
530
+
531
+ | Setting | Options | Default | What it controls |
532
+ |---------|---------|---------|------------------|
533
+ | `mode` | `yolo`, `interactive` | `interactive` | Auto-approve vs confirm at each step |
534
+ | `depth` | `quick`, `standard`, `comprehensive` | `standard` | Planning thoroughness (phases × plans) |
535
+
536
+ ### Model Profiles
537
+
538
+ Control which Claude model each agent uses. Balance quality vs token spend.
539
+
540
+ | Profile | Planning | Execution | Verification |
541
+ |---------|----------|-----------|--------------|
542
+ | `quality` | Opus | Opus | Sonnet |
543
+ | `balanced` (default) | Opus | Sonnet | Sonnet |
544
+ | `budget` | Sonnet | Sonnet | Haiku |
545
+
546
+ Switch profiles:
547
+ ```
548
+ /gsd:set-profile budget
549
+ ```
550
+
551
+ Or configure via `/gsd:settings`.
552
+
553
+ ### Workflow Agents
554
+
555
+ These spawn additional agents during planning/execution. They improve quality but add tokens and time.
556
+
557
+ | Setting | Default | What it does |
558
+ |---------|---------|--------------|
559
+ | `workflow.research` | `true` | Researches domain before planning each phase |
560
+ | `workflow.plan_check` | `true` | Verifies plans achieve phase goals before execution |
561
+ | `workflow.verifier` | `true` | Confirms must-haves were delivered after execution |
562
+ | `workflow.auto_advance` | `false` | Auto-chain discuss → plan → execute without stopping |
563
+
564
+ Use `/gsd:settings` to toggle these, or override per-invocation:
565
+ - `/gsd:plan-phase --skip-research`
566
+ - `/gsd:plan-phase --skip-verify`
567
+
568
+ ### Execution
569
+
570
+ | Setting | Default | What it controls |
571
+ |---------|---------|------------------|
572
+ | `parallelization.enabled` | `true` | Run independent plans simultaneously |
573
+ | `planning.commit_docs` | `true` | Track `.planning/` in git |
574
+
575
+ ### Git Branching
576
+
577
+ Control how GSD handles branches during execution.
578
+
579
+ | Setting | Options | Default | What it does |
580
+ |---------|---------|---------|--------------|
581
+ | `git.branching_strategy` | `none`, `phase`, `milestone` | `none` | Branch creation strategy |
582
+ | `git.phase_branch_template` | string | `gsd/phase-{phase}-{slug}` | Template for phase branches |
583
+ | `git.milestone_branch_template` | string | `gsd/{milestone}-{slug}` | Template for milestone branches |
584
+
585
+ **Strategies:**
586
+ - **`none`** — Commits to current branch (default GSD behavior)
587
+ - **`phase`** — Creates a branch per phase, merges at phase completion
588
+ - **`milestone`** — Creates one branch for entire milestone, merges at completion
589
+
590
+ At milestone completion, GSD offers squash merge (recommended) or merge with history.
591
+
592
+ ---
593
+
594
+ ## Security
595
+
596
+ ### Protecting Sensitive Files
597
+
598
+ GSD's codebase mapping and analysis commands read files to understand your project. **Protect files containing secrets** by adding them to Claude Code's deny list:
599
+
600
+ 1. Open Claude Code settings (`.claude/settings.json` or global)
601
+ 2. Add sensitive file patterns to the deny list:
602
+
603
+ ```json
604
+ {
605
+ "permissions": {
606
+ "deny": [
607
+ "Read(.env)",
608
+ "Read(.env.*)",
609
+ "Read(**/secrets/*)",
610
+ "Read(**/*credential*)",
611
+ "Read(**/*.pem)",
612
+ "Read(**/*.key)"
613
+ ]
614
+ }
615
+ }
616
+ ```
617
+
618
+ This prevents Claude from reading these files entirely, regardless of what commands you run.
619
+
620
+ > [!IMPORTANT]
621
+ > GSD includes built-in protections against committing secrets, but defense-in-depth is best practice. Deny read access to sensitive files as a first line of defense.
622
+
623
+ ---
624
+
625
+ ## Troubleshooting
626
+
627
+ **Commands not found after install?**
628
+ - Restart your runtime to reload commands/skills
629
+ - Verify files exist in `~/.claude/commands/gsd/` (global) or `./.claude/commands/gsd/` (local)
630
+ - For Codex, verify skills exist in `~/.codex/skills/gsd-*/SKILL.md` (global) or `./.codex/skills/gsd-*/SKILL.md` (local)
631
+
632
+ **Commands not working as expected?**
633
+ - Run `/gsd:help` to verify installation
634
+ - Re-run `npx get-shit-done-cc` to reinstall
635
+
636
+ **Updating to the latest version?**
637
+ ```bash
638
+ npx get-shit-done-cc@latest
639
+ ```
640
+
641
+ **Using Docker or containerized environments?**
642
+
643
+ If file reads fail with tilde paths (`~/.claude/...`), set `CLAUDE_CONFIG_DIR` before installing:
644
+ ```bash
645
+ CLAUDE_CONFIG_DIR=/home/youruser/.claude npx get-shit-done-cc --global
646
+ ```
647
+ This ensures absolute paths are used instead of `~` which may not expand correctly in containers.
648
+
649
+ ### Uninstalling
650
+
651
+ To remove GSD completely:
652
+
653
+ ```bash
654
+ # Global installs
655
+ npx get-shit-done-cc --claude --global --uninstall
656
+ npx get-shit-done-cc --opencode --global --uninstall
657
+ npx get-shit-done-cc --codex --global --uninstall
658
+
659
+ # Local installs (current project)
660
+ npx get-shit-done-cc --claude --local --uninstall
661
+ npx get-shit-done-cc --opencode --local --uninstall
662
+ npx get-shit-done-cc --codex --local --uninstall
663
+ ```
664
+
665
+ This removes all GSD commands, agents, hooks, and settings while preserving your other configurations.
666
+
667
+ ---
668
+
669
+ ## Community Ports
670
+
671
+ OpenCode, Gemini CLI, and Codex are now natively supported via `npx get-shit-done-cc`.
672
+
673
+ These community ports pioneered multi-runtime support:
674
+
675
+ | Project | Platform | Description |
676
+ |---------|----------|-------------|
677
+ | [gsd-opencode](https://github.com/rokicool/gsd-opencode) | OpenCode | Original OpenCode adaptation |
678
+ | gsd-gemini (archived) | Gemini CLI | Original Gemini adaptation by uberfuzzy |
679
+
680
+ ---
681
+
682
+ ## Star History
683
+
684
+ <a href="https://star-history.com/#glittercowboy/get-shit-done&Date">
685
+ <picture>
686
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date&theme=dark" />
687
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date" />
688
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=glittercowboy/get-shit-done&type=Date" />
689
+ </picture>
690
+ </a>
691
+
692
+ ---
693
+
694
+ ## License
695
+
696
+ MIT License. See [LICENSE](LICENSE) for details.
697
+
698
+ ---
699
+
700
+ <div align="center">
701
+
702
+ **Claude Code is powerful. GSD makes it reliable.**
703
+
704
+ </div>