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,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create phases to close all gaps identified by milestone audit
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Create phases to close all gaps identified by milestone audit
|
|
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 init milestone-op --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/plan-milestone-gaps.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 detailed execution plan for a phase (PLAN.md) with verification loop
|
|
3
|
+
argument-hint: "[phase] [--research] [--skip-research] [--gaps] [--skip-verify]"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Create detailed execution plan for a phase (PLAN.md) with verification loop
|
|
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] [--research] [--skip-research] [--gaps] [--skip-verify]" from the user input.
|
|
28
|
+
2. Run init:
|
|
29
|
+
node .claude/get-shit-done/bin/gsd-tools.js init plan-phase $PHASE --include state,roadmap,requirements,context,research,verification,uat --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/plan-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: Check project progress, show context, and route to next action
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Check project progress, show context, and route to next action
|
|
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 init progress --include state,roadmap,project,config --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/progress.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 a quick task with GSD guarantees (atomic commits, state tracking) but skip optional agents
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Execute a quick task with GSD guarantees (atomic commits, state tracking) but skip optional agents
|
|
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 init quick "$ARG" --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/quick.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: Remove a future phase from roadmap and renumber subsequent phases
|
|
3
|
+
argument-hint: <phase-number>
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Remove a future phase from roadmap and renumber subsequent 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 <phase-number> 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/remove-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: Research how to implement a phase (standalone - usually use plan-phase instead)
|
|
3
|
+
argument-hint: "[phase]"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Research how to implement a phase (standalone - usually use plan-phase instead)
|
|
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/research-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: Resume work from previous session with full context restoration
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Resume work from previous session with full context restoration
|
|
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 init resume --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/resume-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: Switch model profile for GSD agents (quality/balanced/budget)
|
|
3
|
+
argument-hint: <profile>
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Switch model profile for GSD agents (quality/balanced/budget)
|
|
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 <profile> 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/set-profile.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: Configure GSD workflow toggles and model profile
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Configure GSD workflow toggles and model profile
|
|
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 config-ensure-section --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/settings.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: Update GSD to latest version with changelog display
|
|
3
|
+
argument-hint: [none]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Update GSD to latest version with changelog display
|
|
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/update.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: Validate built features through conversational UAT
|
|
3
|
+
argument-hint: "[phase number, for example 4]"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Objective
|
|
9
|
+
Validate built features through conversational UAT
|
|
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, for example 4]" from the user input.
|
|
28
|
+
2. Run init:
|
|
29
|
+
node .claude/get-shit-done/bin/gsd-tools.js init verify-work $PHASE --raw
|
|
30
|
+
|
|
31
|
+
3. Load .claude/get-shit-done/workflows/verify-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
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: get-shit-done-codex
|
|
3
|
+
description: Codex-compatible orchestration for get-shit-done workflows.
|
|
4
|
+
metadata:
|
|
5
|
+
short-description: Translation layer from Claude GSD workflows to Codex
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Get-shit-done (GSD) Codex Skill
|
|
9
|
+
|
|
10
|
+
Use this skill to run `gsd-*` prompts under `Codex` while preserving upstream GSD behavior.
|
|
11
|
+
|
|
12
|
+
## Scope
|
|
13
|
+
- Keep `.claude/get-shit-done` as the command engine and workflow source.
|
|
14
|
+
- Keep `.claude/agents/gsd-*.md` as role contracts for subagents.
|
|
15
|
+
- Keep `.codex/prompts/gsd-*.md` as Codex-native orchestrators.
|
|
16
|
+
|
|
17
|
+
## Core rules
|
|
18
|
+
1. Do not change command semantics.
|
|
19
|
+
2. Do not change source workflow logic unless necessary for Codex command compatibility.
|
|
20
|
+
3. Use workspace-relative paths.
|
|
21
|
+
4. Preserve step ordering and gate behavior from workflow files.
|
|
22
|
+
|
|
23
|
+
## Mandatory codex translations
|
|
24
|
+
- Replace each `Task(...)` with: `spawn_agent` + `wait`.
|
|
25
|
+
- Replace Bash/JQ patterns with PowerShell and `ConvertFrom-Json`.
|
|
26
|
+
- Replace AskUserQuestion interactions with direct user prompts in chat.
|
|
27
|
+
|
|
28
|
+
## Subagent lifecycle (required)
|
|
29
|
+
- Spawn only when the upstream workflow explicitly defines a `Task(...)` role.
|
|
30
|
+
- For each spawned subagent:
|
|
31
|
+
- Start with `spawn_agent` and provide the role source from `.claude/agents/gsd-*.md`.
|
|
32
|
+
- Wait for completion before proceeding: `wait`.
|
|
33
|
+
- Explicitly close the agent after it finishes (`close_agent`) to release resources.
|
|
34
|
+
- Keep prompt-level sequencing intact; do not continue to subsequent steps until waiting + closure are complete.
|
|
35
|
+
- If an agent fails or exceeds retry policy, stop that phase of workflow and surface a clear remediation step.
|
|
36
|
+
|
|
37
|
+
## Required GSD roles (must map by name)
|
|
38
|
+
- `gsd-project-researcher`
|
|
39
|
+
- `gsd-research-synthesizer`
|
|
40
|
+
- `gsd-roadmapper`
|
|
41
|
+
- `gsd-phase-researcher`
|
|
42
|
+
- `gsd-planner`
|
|
43
|
+
- `gsd-plan-checker`
|
|
44
|
+
- `gsd-executor`
|
|
45
|
+
- `gsd-verifier`
|
|
46
|
+
- `gsd-debugger`
|
|
47
|
+
- `gsd-integration-checker`
|
|
48
|
+
- `gsd-codebase-mapper`
|
|
49
|
+
|
|
50
|
+
## Standard execution order
|
|
51
|
+
1. Parse user input from `$ARGUMENTS`.
|
|
52
|
+
2. Run required `gsd-tools init ...` if the workflow defines it.
|
|
53
|
+
3. Read workflow path in `.claude/get-shit-done/workflows/`.
|
|
54
|
+
4. Execute step-by-step, translating subagent calls.
|
|
55
|
+
5. Preserve `commit_docs`, state updates, and file contracts.
|
|
56
|
+
6. Report outcome and next action.
|
|
57
|
+
|
|
58
|
+
## Commit discipline
|
|
59
|
+
- Validate git first: `git rev-parse --is-inside-work-tree`.
|
|
60
|
+
- Use `node .claude/get-shit-done/bin/gsd-tools.js commit ...` for all intended doc/execution writes.
|
|
61
|
+
- If commit is not possible, continue execution with explicit warning and no commit.
|
|
62
|
+
|
|
63
|
+
## Required references
|
|
64
|
+
- `.codex/skills/get-shit-done-codex/references/compat.md`
|
|
65
|
+
- `.codex/skills/get-shit-done-codex/references/windows.md`
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Compatibility: Claude → Codex for get-shit-done
|
|
2
|
+
|
|
3
|
+
## Tool mapping
|
|
4
|
+
- `Task(...)` → `spawn_agent` + `wait` + `close_agent`.
|
|
5
|
+
- `AskUserQuestion` → direct user interaction in chat.
|
|
6
|
+
- Bash-style shell helpers → PowerShell commands.
|
|
7
|
+
|
|
8
|
+
## Path mapping
|
|
9
|
+
- `C:/Users/Ahmed/.claude/get-shit-done/...` → `.claude/get-shit-done/...`
|
|
10
|
+
- `C:/Users/Ahmed/.claude/agents/...` → `.claude/agents/...`
|
|
11
|
+
|
|
12
|
+
## CLI mapping
|
|
13
|
+
- Use `node .claude/get-shit-done/bin/gsd-tools.js ...`.
|
|
14
|
+
- Keep `--raw` when upstream workflow uses it.
|
|
15
|
+
- Parse JSON by `ConvertFrom-Json`.
|
|
16
|
+
|
|
17
|
+
## Subagent mapping
|
|
18
|
+
- `subagent_type=gsd-*` maps to equivalent role contract in `.claude/agents/gsd-*.md`.
|
|
19
|
+
- Unspecified `subagent_type` values default to command-context Codex agent behavior.
|
|
20
|
+
|
|
21
|
+
## Required GSD subagents
|
|
22
|
+
- `gsd-project-researcher`
|
|
23
|
+
- `gsd-research-synthesizer`
|
|
24
|
+
- `gsd-roadmapper`
|
|
25
|
+
- `gsd-phase-researcher`
|
|
26
|
+
- `gsd-planner`
|
|
27
|
+
- `gsd-plan-checker`
|
|
28
|
+
- `gsd-executor`
|
|
29
|
+
- `gsd-verifier`
|
|
30
|
+
- `gsd-debugger`
|
|
31
|
+
- `gsd-integration-checker`
|
|
32
|
+
- `gsd-codebase-mapper`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Windows + PowerShell conversion notes
|
|
2
|
+
|
|
3
|
+
## JSON parse
|
|
4
|
+
|
|
5
|
+
```powershell
|
|
6
|
+
$raw = & node .claude/get-shit-done/bin/gsd-tools.js state load --raw
|
|
7
|
+
$data = $raw | ConvertFrom-Json
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Key/value parse
|
|
11
|
+
|
|
12
|
+
```powershell
|
|
13
|
+
$raw = & node .claude/get-shit-done/bin/gsd-tools.js state load --raw
|
|
14
|
+
$out = @{}
|
|
15
|
+
$raw -split "`n" | ForEach-Object {
|
|
16
|
+
if ($_ -match '^(.*?)=(.*)$') { $out[$Matches[1]] = $Matches[2] }
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Syntax notes
|
|
21
|
+
- Replace jq with `ConvertFrom-Json`.
|
|
22
|
+
- Avoid bash-only heredocs and command substitution.
|
|
23
|
+
- Use quoted paths for PowerShell compatibility.
|