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,44 @@
1
+ ---
2
+ description: Add phase to end of current milestone in roadmap
3
+ argument-hint: <description>
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Add phase to end of current milestone in roadmap
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse <description> from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init phase-op "0" --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/add-phase.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
44
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Capture idea or task as todo from current conversation context
3
+ argument-hint: [optional description]
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Capture idea or task as todo from current conversation context
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse [optional description] from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init todos $ARG --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/add-todo.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Audit milestone completion against original intent before archiving
3
+ argument-hint: "[version]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Audit milestone completion against original intent before archiving
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "[version]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init milestone-op --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/audit-milestone.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: List pending todos and select one to work on
3
+ argument-hint: [area filter]
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ List pending todos and select one to work on
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse [area filter] from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init todos $ARG --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/check-todos.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Archive completed milestone and prepare for next version
3
+ argument-hint: <version>
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Archive completed milestone and prepare for next version
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse <version> from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init execute-phase "1" --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/complete-milestone.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,46 @@
1
+ ---
2
+ description: Systematic debugging with persistent state across context resets
3
+ argument-hint: [issue description]
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Systematic debugging with persistent state across context resets
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse [issue description] from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js state load --raw
30
+
31
+ 3. Execute the debug flow defined in this command (no separate workflow file exists in the gsd commands set).
32
+ 4. Translate each Task(...) in the debug flow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. Checkpoint handling:
39
+ - If an active debug session exists and no new issue was provided, list open sessions and ask the user which to resume.
40
+ - If a checkpoint is returned by the debugger, summarize the checkpoint and continue only after user confirmation.
41
+ 8. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
42
+
43
+ ## Completion output
44
+ - Summarize key artifacts created/updated and next recommended command.
45
+
46
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Gather phase context through adaptive questioning before planning
3
+ argument-hint: "<phase>"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Gather phase context through adaptive questioning before planning
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "<phase>" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init phase-op $ARG --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/discuss-phase.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Execute all plans in a phase with wave-based parallelization
3
+ argument-hint: "<phase-number> [--gaps-only]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Execute all plans in a phase with wave-based parallelization
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "<phase-number> [--gaps-only]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init execute-phase $PHASE --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/execute-phase.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Show available GSD commands and usage guide
3
+ argument-hint: [none]
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Show available GSD commands and usage guide
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse [none] from the user input.
28
+ 2. Run init:
29
+ # No explicit init.
30
+
31
+ 3. Load .claude/get-shit-done/workflows/help.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Insert urgent work as decimal phase (for example 72.1) between existing phases
3
+ argument-hint: <after> <description>
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Insert urgent work as decimal phase (for example 72.1) between existing phases
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse <after> <description> from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init phase-op $AFTER --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/insert-phase.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Surface Claude's assumptions about a phase approach before planning
3
+ argument-hint: "[phase]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Surface Claude's assumptions about a phase approach before planning
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "[phase]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init phase-op $ARG --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/list-phase-assumptions.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Analyze codebase with parallel mapper agents to produce .planning/codebase/ documents
3
+ argument-hint: "[optional: specific area to map, for example api or auth]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Analyze codebase with parallel mapper agents to produce .planning/codebase/ documents
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "[optional: specific area to map, for example api or auth]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init map-codebase --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/map-codebase.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Start a new milestone cycle — update PROJECT.md and route to requirements
3
+ argument-hint: "[milestone name, for example v1.1 Notifications]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Start a new milestone cycle — update PROJECT.md and route to requirements
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "[milestone name, for example v1.1 Notifications]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init new-milestone --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/new-milestone.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Initialize a new project with deep context gathering and PROJECT.md
3
+ argument-hint: "[--auto]"
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Initialize a new project with deep context gathering and PROJECT.md
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse "[--auto]" from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js init new-project --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/new-project.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+
@@ -0,0 +1,43 @@
1
+ ---
2
+ description: Create context handoff when pausing work mid-phase
3
+ argument-hint: [none]
4
+ ---
5
+
6
+
7
+
8
+ ## Objective
9
+ Create context handoff when pausing work mid-phase
10
+
11
+ ## Compatibility
12
+ - Use .codex/skills/get-shit-done-codex semantics.
13
+ - Treat upstream workflow as the source of truth.
14
+ - Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
15
+ - Run engine commands through PowerShell:
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
18
+ - No jq / bash-only constructs.
19
+
20
+ ## Subagent lifecycle (required)
21
+
22
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
23
+ - Spawn only when the upstream workflow defines an agent role.
24
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
25
+ - Do not advance workflow steps until wait and close complete.
26
+ ## Execution
27
+ 1. Parse [none] from the user input.
28
+ 2. Run init:
29
+ node .claude/get-shit-done/bin/gsd-tools.js state load --raw
30
+
31
+ 3. Load .claude/get-shit-done/workflows/pause-work.md and execute it step-by-step.
32
+ 4. Translate each Task(...) in workflow into:
33
+ - spawn_agent with the matching role file context from .claude/agents/.
34
+ - wait for each spawned agent and apply returned output before moving forward.
35
+ 5. Preserve all gates and routing from upstream workflow.
36
+ 6. Preserve commit behavior using
37
+ node .claude/get-shit-done/bin/gsd-tools.js commit "message" --files ....
38
+ 7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
39
+
40
+ ## Completion output
41
+ - Summarize key artifacts created/updated and next recommended command.
42
+
43
+