gsd-codex-cli 1.20.4 → 1.20.6
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 +20 -22
- package/.codex/prompts/gsd-add-todo.md +20 -22
- package/.codex/prompts/gsd-audit-milestone.md +20 -22
- package/.codex/prompts/gsd-check-todos.md +20 -22
- package/.codex/prompts/gsd-complete-milestone.md +20 -22
- package/.codex/prompts/gsd-debug.md +20 -22
- package/.codex/prompts/gsd-discuss-phase.md +20 -22
- package/.codex/prompts/gsd-doctor.md +46 -51
- package/.codex/prompts/gsd-execute-phase.md +20 -22
- package/.codex/prompts/gsd-help.md +19 -21
- package/.codex/prompts/gsd-insert-phase.md +20 -22
- package/.codex/prompts/gsd-list-phase-assumptions.md +20 -22
- package/.codex/prompts/gsd-map-codebase.md +20 -22
- package/.codex/prompts/gsd-new-milestone.md +20 -22
- package/.codex/prompts/gsd-new-project.md +20 -22
- package/.codex/prompts/gsd-pause-work.md +20 -22
- package/.codex/prompts/gsd-plan-milestone-gaps.md +20 -22
- package/.codex/prompts/gsd-plan-phase.md +20 -22
- package/.codex/prompts/gsd-progress.md +20 -22
- package/.codex/prompts/gsd-quick.md +20 -22
- package/.codex/prompts/gsd-remove-phase.md +20 -22
- package/.codex/prompts/gsd-research-phase.md +20 -22
- package/.codex/prompts/gsd-resume-work.md +20 -22
- package/.codex/prompts/gsd-set-profile.md +20 -22
- package/.codex/prompts/gsd-settings.md +20 -22
- package/.codex/prompts/gsd-update.md +19 -21
- package/.codex/prompts/gsd-verify-work.md +20 -22
- package/package.json +1 -1
|
@@ -3,8 +3,6 @@ description: Configure GSD workflow toggles and model profile
|
|
|
3
3
|
argument-hint: [none]
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
6
|
## Objective
|
|
9
7
|
Configure GSD workflow toggles and model profile
|
|
10
8
|
|
|
@@ -12,10 +10,11 @@ Configure GSD workflow toggles and model profile
|
|
|
12
10
|
- Use .codex/skills/get-shit-done-codex semantics.
|
|
13
11
|
- Treat upstream workflow as the source of truth.
|
|
14
12
|
- Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
13
|
+
- Use one of these engine paths (prefer local, fallback global):
|
|
14
|
+
node .claude/get-shit-done/bin/gsd-tools.js ...
|
|
15
|
+
node ~/.claude/get-shit-done/bin/gsd-tools.js ...
|
|
16
|
+
- If `.js` is unavailable, use the same path with `.cjs`.
|
|
17
|
+
- Run engine commands through PowerShell.
|
|
19
18
|
- Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
|
|
20
19
|
- No jq / bash-only constructs.
|
|
21
20
|
|
|
@@ -25,18 +24,17 @@ Configure GSD workflow toggles and model profile
|
|
|
25
24
|
- Spawn only when the upstream workflow defines an agent role.
|
|
26
25
|
- Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
|
|
27
26
|
- Do not advance workflow steps until wait and close complete.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- If
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
|
|
28
|
+
## Update check
|
|
29
|
+
- Best-effort only; do not fail if offline.
|
|
30
|
+
- Check installed Codex fork version from `.codex/gsd/VERSION` (or `~/.codex/gsd/VERSION`).
|
|
31
|
+
- Check latest published version with `npm view gsd-codex-cli version`.
|
|
32
|
+
- If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
|
|
33
|
+
|
|
36
34
|
## Execution
|
|
37
35
|
1. Parse [none] from the user input.
|
|
38
36
|
2. Run init:
|
|
39
|
-
node
|
|
37
|
+
node <gsd-tools-path> config-ensure-section --raw
|
|
40
38
|
|
|
41
39
|
3. Load .claude/get-shit-done/workflows/settings.md and execute it step-by-step.
|
|
42
40
|
4. Translate each Task(...) in workflow into:
|
|
@@ -44,10 +42,10 @@ node $GsdTools config-ensure-section --raw
|
|
|
44
42
|
- wait for each spawned agent and apply returned output before moving forward.
|
|
45
43
|
5. Preserve all gates and routing from upstream workflow.
|
|
46
44
|
6. Preserve commit behavior using
|
|
47
|
-
node
|
|
48
|
-
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
49
|
-
|
|
50
|
-
## Completion output
|
|
51
|
-
- Summarize key artifacts created/updated.
|
|
52
|
-
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
53
|
-
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|
|
45
|
+
node <gsd-tools-path> commit "message" --files ....
|
|
46
|
+
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
47
|
+
|
|
48
|
+
## Completion output
|
|
49
|
+
- Summarize key artifacts created/updated.
|
|
50
|
+
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
51
|
+
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|
|
@@ -3,8 +3,6 @@ description: Update GSD to latest version with changelog display
|
|
|
3
3
|
argument-hint: [none]
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
6
|
## Objective
|
|
9
7
|
Update GSD to latest version with changelog display
|
|
10
8
|
|
|
@@ -12,10 +10,11 @@ Update GSD to latest version with changelog display
|
|
|
12
10
|
- Use .codex/skills/get-shit-done-codex semantics.
|
|
13
11
|
- Treat upstream workflow as the source of truth.
|
|
14
12
|
- Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
13
|
+
- Use one of these engine paths (prefer local, fallback global):
|
|
14
|
+
node .claude/get-shit-done/bin/gsd-tools.js ...
|
|
15
|
+
node ~/.claude/get-shit-done/bin/gsd-tools.js ...
|
|
16
|
+
- If `.js` is unavailable, use the same path with `.cjs`.
|
|
17
|
+
- Run engine commands through PowerShell.
|
|
19
18
|
- Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
|
|
20
19
|
- No jq / bash-only constructs.
|
|
21
20
|
|
|
@@ -25,14 +24,13 @@ Update GSD to latest version with changelog display
|
|
|
25
24
|
- Spawn only when the upstream workflow defines an agent role.
|
|
26
25
|
- Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
|
|
27
26
|
- Do not advance workflow steps until wait and close complete.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- If
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
|
|
28
|
+
## Update check
|
|
29
|
+
- Best-effort only; do not fail if offline.
|
|
30
|
+
- Check installed Codex fork version from `.codex/gsd/VERSION` (or `~/.codex/gsd/VERSION`).
|
|
31
|
+
- Check latest published version with `npm view gsd-codex-cli version`.
|
|
32
|
+
- If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
|
|
33
|
+
|
|
36
34
|
## Execution
|
|
37
35
|
1. Parse [none] from the user input.
|
|
38
36
|
2. Run init:
|
|
@@ -44,10 +42,10 @@ Update GSD to latest version with changelog display
|
|
|
44
42
|
- wait for each spawned agent and apply returned output before moving forward.
|
|
45
43
|
5. Preserve all gates and routing from upstream workflow.
|
|
46
44
|
6. Preserve commit behavior using
|
|
47
|
-
node
|
|
48
|
-
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
49
|
-
|
|
50
|
-
## Completion output
|
|
51
|
-
- Summarize key artifacts created/updated.
|
|
52
|
-
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
53
|
-
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|
|
45
|
+
node <gsd-tools-path> commit "message" --files ....
|
|
46
|
+
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
47
|
+
|
|
48
|
+
## Completion output
|
|
49
|
+
- Summarize key artifacts created/updated.
|
|
50
|
+
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
51
|
+
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|
|
@@ -3,8 +3,6 @@ description: Validate built features through conversational UAT
|
|
|
3
3
|
argument-hint: "[phase number, for example 4]"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
6
|
## Objective
|
|
9
7
|
Validate built features through conversational UAT
|
|
10
8
|
|
|
@@ -12,10 +10,11 @@ Validate built features through conversational UAT
|
|
|
12
10
|
- Use .codex/skills/get-shit-done-codex semantics.
|
|
13
11
|
- Treat upstream workflow as the source of truth.
|
|
14
12
|
- Replace user-specific paths with workspace-relative paths (.claude/..., .planning/...).
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
13
|
+
- Use one of these engine paths (prefer local, fallback global):
|
|
14
|
+
node .claude/get-shit-done/bin/gsd-tools.js ...
|
|
15
|
+
node ~/.claude/get-shit-done/bin/gsd-tools.js ...
|
|
16
|
+
- If `.js` is unavailable, use the same path with `.cjs`.
|
|
17
|
+
- Run engine commands through PowerShell.
|
|
19
18
|
- Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
|
|
20
19
|
- No jq / bash-only constructs.
|
|
21
20
|
|
|
@@ -25,18 +24,17 @@ Validate built features through conversational UAT
|
|
|
25
24
|
- Spawn only when the upstream workflow defines an agent role.
|
|
26
25
|
- Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
|
|
27
26
|
- Do not advance workflow steps until wait and close complete.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- If
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
|
|
28
|
+
## Update check
|
|
29
|
+
- Best-effort only; do not fail if offline.
|
|
30
|
+
- Check installed Codex fork version from `.codex/gsd/VERSION` (or `~/.codex/gsd/VERSION`).
|
|
31
|
+
- Check latest published version with `npm view gsd-codex-cli version`.
|
|
32
|
+
- If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
|
|
33
|
+
|
|
36
34
|
## Execution
|
|
37
35
|
1. Parse "[phase number, for example 4]" from the user input.
|
|
38
36
|
2. Run init:
|
|
39
|
-
node
|
|
37
|
+
node <gsd-tools-path> init verify-work [phase] --raw
|
|
40
38
|
|
|
41
39
|
3. Load .claude/get-shit-done/workflows/verify-work.md and execute it step-by-step.
|
|
42
40
|
4. Translate each Task(...) in workflow into:
|
|
@@ -44,10 +42,10 @@ node $GsdTools init verify-work $PHASE --raw
|
|
|
44
42
|
- wait for each spawned agent and apply returned output before moving forward.
|
|
45
43
|
5. Preserve all gates and routing from upstream workflow.
|
|
46
44
|
6. Preserve commit behavior using
|
|
47
|
-
node
|
|
48
|
-
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
49
|
-
|
|
50
|
-
## Completion output
|
|
51
|
-
- Summarize key artifacts created/updated.
|
|
52
|
-
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
53
|
-
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|
|
45
|
+
node <gsd-tools-path> commit "message" --files ....
|
|
46
|
+
7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
|
|
47
|
+
|
|
48
|
+
## Completion output
|
|
49
|
+
- Summarize key artifacts created/updated.
|
|
50
|
+
- Next recommended command: use the next user-facing GSD command (Codex prompt name + Claude slash command).
|
|
51
|
+
- Never recommend internal `node ... gsd-tools ...` commands to the user.
|