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.
- package/.codex/prompts/gsd-add-phase.md +44 -0
- package/.codex/prompts/gsd-add-todo.md +43 -0
- package/.codex/prompts/gsd-audit-milestone.md +43 -0
- package/.codex/prompts/gsd-check-todos.md +43 -0
- package/.codex/prompts/gsd-complete-milestone.md +43 -0
- package/.codex/prompts/gsd-debug.md +46 -0
- package/.codex/prompts/gsd-discuss-phase.md +43 -0
- package/.codex/prompts/gsd-execute-phase.md +43 -0
- package/.codex/prompts/gsd-help.md +43 -0
- package/.codex/prompts/gsd-insert-phase.md +43 -0
- package/.codex/prompts/gsd-list-phase-assumptions.md +43 -0
- package/.codex/prompts/gsd-map-codebase.md +43 -0
- package/.codex/prompts/gsd-new-milestone.md +43 -0
- package/.codex/prompts/gsd-new-project.md +43 -0
- package/.codex/prompts/gsd-pause-work.md +43 -0
- package/.codex/prompts/gsd-plan-milestone-gaps.md +43 -0
- package/.codex/prompts/gsd-plan-phase.md +43 -0
- package/.codex/prompts/gsd-progress.md +43 -0
- package/.codex/prompts/gsd-quick.md +43 -0
- package/.codex/prompts/gsd-remove-phase.md +43 -0
- package/.codex/prompts/gsd-research-phase.md +43 -0
- package/.codex/prompts/gsd-resume-work.md +43 -0
- package/.codex/prompts/gsd-set-profile.md +43 -0
- package/.codex/prompts/gsd-settings.md +43 -0
- package/.codex/prompts/gsd-update.md +43 -0
- package/.codex/prompts/gsd-verify-work.md +43 -0
- package/.codex/skills/get-shit-done-codex/SKILL.md +65 -0
- package/.codex/skills/get-shit-done-codex/references/compat.md +32 -0
- package/.codex/skills/get-shit-done-codex/references/windows.md +23 -0
- package/CHANGELOG.md +1434 -0
- package/LICENSE +21 -0
- package/README.md +690 -0
- package/agents/gsd-codebase-mapper.md +761 -0
- package/agents/gsd-debugger.md +1198 -0
- package/agents/gsd-executor.md +419 -0
- package/agents/gsd-integration-checker.md +423 -0
- package/agents/gsd-phase-researcher.md +469 -0
- package/agents/gsd-plan-checker.md +622 -0
- package/agents/gsd-planner.md +1159 -0
- package/agents/gsd-project-researcher.md +618 -0
- package/agents/gsd-research-synthesizer.md +236 -0
- package/agents/gsd-roadmapper.md +639 -0
- package/agents/gsd-verifier.md +541 -0
- package/bin/install-codex.js +100 -0
- package/bin/install.js +1806 -0
- package/commands/gsd/add-phase.md +39 -0
- package/commands/gsd/add-todo.md +42 -0
- package/commands/gsd/audit-milestone.md +42 -0
- package/commands/gsd/check-todos.md +41 -0
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/complete-milestone.md +136 -0
- package/commands/gsd/debug.md +162 -0
- package/commands/gsd/discuss-phase.md +87 -0
- package/commands/gsd/execute-phase.md +42 -0
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/help.md +22 -0
- package/commands/gsd/insert-phase.md +33 -0
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +50 -0
- package/commands/gsd/map-codebase.md +71 -0
- package/commands/gsd/new-milestone.md +51 -0
- package/commands/gsd/new-project.md +42 -0
- package/commands/gsd/pause-work.md +35 -0
- package/commands/gsd/plan-milestone-gaps.md +40 -0
- package/commands/gsd/plan-phase.md +44 -0
- package/commands/gsd/progress.md +24 -0
- package/commands/gsd/quick.md +40 -0
- package/commands/gsd/reapply-patches.md +110 -0
- package/commands/gsd/remove-phase.md +32 -0
- package/commands/gsd/research-phase.md +187 -0
- package/commands/gsd/resume-work.md +40 -0
- package/commands/gsd/set-profile.md +34 -0
- package/commands/gsd/settings.md +36 -0
- package/commands/gsd/update.md +37 -0
- package/commands/gsd/verify-work.md +39 -0
- package/get-shit-done/bin/gsd-tools.cjs +5243 -0
- package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
- package/get-shit-done/references/checkpoints.md +775 -0
- package/get-shit-done/references/continuation-format.md +249 -0
- package/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/get-shit-done/references/git-integration.md +248 -0
- package/get-shit-done/references/git-planning-commit.md +38 -0
- package/get-shit-done/references/model-profile-resolution.md +34 -0
- package/get-shit-done/references/model-profiles.md +92 -0
- package/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/get-shit-done/references/planning-config.md +196 -0
- package/get-shit-done/references/questioning.md +145 -0
- package/get-shit-done/references/tdd.md +263 -0
- package/get-shit-done/references/ui-brand.md +160 -0
- package/get-shit-done/references/verification-patterns.md +612 -0
- package/get-shit-done/templates/DEBUG.md +159 -0
- package/get-shit-done/templates/UAT.md +247 -0
- package/get-shit-done/templates/codebase/architecture.md +255 -0
- package/get-shit-done/templates/codebase/concerns.md +310 -0
- package/get-shit-done/templates/codebase/conventions.md +307 -0
- package/get-shit-done/templates/codebase/integrations.md +280 -0
- package/get-shit-done/templates/codebase/stack.md +186 -0
- package/get-shit-done/templates/codebase/structure.md +285 -0
- package/get-shit-done/templates/codebase/testing.md +480 -0
- package/get-shit-done/templates/config.json +36 -0
- package/get-shit-done/templates/context.md +283 -0
- package/get-shit-done/templates/continue-here.md +78 -0
- package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/get-shit-done/templates/discovery.md +146 -0
- package/get-shit-done/templates/milestone-archive.md +123 -0
- package/get-shit-done/templates/milestone.md +115 -0
- package/get-shit-done/templates/phase-prompt.md +567 -0
- package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/get-shit-done/templates/project.md +184 -0
- package/get-shit-done/templates/requirements.md +231 -0
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/get-shit-done/templates/research-project/STACK.md +120 -0
- package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/get-shit-done/templates/research.md +552 -0
- package/get-shit-done/templates/roadmap.md +202 -0
- package/get-shit-done/templates/state.md +176 -0
- package/get-shit-done/templates/summary-complex.md +59 -0
- package/get-shit-done/templates/summary-minimal.md +41 -0
- package/get-shit-done/templates/summary-standard.md +48 -0
- package/get-shit-done/templates/summary.md +246 -0
- package/get-shit-done/templates/user-setup.md +311 -0
- package/get-shit-done/templates/verification-report.md +322 -0
- package/get-shit-done/workflows/add-phase.md +111 -0
- package/get-shit-done/workflows/add-todo.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +242 -0
- package/get-shit-done/workflows/check-todos.md +176 -0
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +674 -0
- package/get-shit-done/workflows/diagnose-issues.md +219 -0
- package/get-shit-done/workflows/discovery-phase.md +289 -0
- package/get-shit-done/workflows/discuss-phase.md +485 -0
- package/get-shit-done/workflows/execute-phase.md +408 -0
- package/get-shit-done/workflows/execute-plan.md +441 -0
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +486 -0
- package/get-shit-done/workflows/insert-phase.md +129 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/get-shit-done/workflows/map-codebase.md +327 -0
- package/get-shit-done/workflows/new-milestone.md +373 -0
- package/get-shit-done/workflows/new-project.md +1113 -0
- package/get-shit-done/workflows/pause-work.md +122 -0
- package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
- package/get-shit-done/workflows/plan-phase.md +448 -0
- package/get-shit-done/workflows/progress.md +393 -0
- package/get-shit-done/workflows/quick.md +444 -0
- package/get-shit-done/workflows/remove-phase.md +154 -0
- package/get-shit-done/workflows/research-phase.md +74 -0
- package/get-shit-done/workflows/resume-project.md +306 -0
- package/get-shit-done/workflows/set-profile.md +80 -0
- package/get-shit-done/workflows/settings.md +200 -0
- package/get-shit-done/workflows/transition.md +539 -0
- package/get-shit-done/workflows/update.md +214 -0
- package/get-shit-done/workflows/verify-phase.md +242 -0
- package/get-shit-done/workflows/verify-work.md +570 -0
- package/hooks/dist/gsd-check-update.js +62 -0
- package/hooks/dist/gsd-statusline.js +91 -0
- package/package.json +54 -0
- 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
|
+
|