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.
@@ -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
- - Resolve gsd-tools path (prefer .cjs, fallback to .js):
16
- $GsdTools = if (Test-Path ".claude/get-shit-done/bin/gsd-tools.cjs") { ".claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path ".claude/get-shit-done/bin/gsd-tools.js") { ".claude/get-shit-done/bin/gsd-tools.js" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs") { "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.js") { "$HOME/.claude/get-shit-done/bin/gsd-tools.js" } else { throw "Missing gsd-tools in .claude or $HOME/.claude. Reinstall GSD." }
17
- - Run engine commands through PowerShell:
18
- node $GsdTools ...
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
- ## Update check
29
- - Best-effort only; do not fail if offline.
30
- - Run:
31
- $installed = if (Test-Path ".codex/gsd/VERSION") { (Get-Content ".codex/gsd/VERSION" -Raw).Trim() } elseif (Test-Path "$HOME/.codex/gsd/VERSION") { (Get-Content "$HOME/.codex/gsd/VERSION" -Raw).Trim() } else { $null }
32
- $latest = $null; try { $latest = (npm view gsd-codex-cli version).Trim() } catch {}
33
- - If $installed and $latest and $installed -ne $latest, surface:
34
- "Update available: $installed -> $latest. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
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 $GsdTools config-ensure-section --raw
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 $GsdTools commit "message" --files ....
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
- - Resolve gsd-tools path (prefer .cjs, fallback to .js):
16
- $GsdTools = if (Test-Path ".claude/get-shit-done/bin/gsd-tools.cjs") { ".claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path ".claude/get-shit-done/bin/gsd-tools.js") { ".claude/get-shit-done/bin/gsd-tools.js" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs") { "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.js") { "$HOME/.claude/get-shit-done/bin/gsd-tools.js" } else { throw "Missing gsd-tools in .claude or $HOME/.claude. Reinstall GSD." }
17
- - Run engine commands through PowerShell:
18
- node $GsdTools ...
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
- ## Update check
29
- - Best-effort only; do not fail if offline.
30
- - Run:
31
- $installed = if (Test-Path ".codex/gsd/VERSION") { (Get-Content ".codex/gsd/VERSION" -Raw).Trim() } elseif (Test-Path "$HOME/.codex/gsd/VERSION") { (Get-Content "$HOME/.codex/gsd/VERSION" -Raw).Trim() } else { $null }
32
- $latest = $null; try { $latest = (npm view gsd-codex-cli version).Trim() } catch {}
33
- - If $installed and $latest and $installed -ne $latest, surface:
34
- "Update available: $installed -> $latest. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
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 $GsdTools commit "message" --files ....
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
- - Resolve gsd-tools path (prefer .cjs, fallback to .js):
16
- $GsdTools = if (Test-Path ".claude/get-shit-done/bin/gsd-tools.cjs") { ".claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path ".claude/get-shit-done/bin/gsd-tools.js") { ".claude/get-shit-done/bin/gsd-tools.js" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs") { "$HOME/.claude/get-shit-done/bin/gsd-tools.cjs" } elseif (Test-Path "$HOME/.claude/get-shit-done/bin/gsd-tools.js") { "$HOME/.claude/get-shit-done/bin/gsd-tools.js" } else { throw "Missing gsd-tools in .claude or $HOME/.claude. Reinstall GSD." }
17
- - Run engine commands through PowerShell:
18
- node $GsdTools ...
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
- ## Update check
29
- - Best-effort only; do not fail if offline.
30
- - Run:
31
- $installed = if (Test-Path ".codex/gsd/VERSION") { (Get-Content ".codex/gsd/VERSION" -Raw).Trim() } elseif (Test-Path "$HOME/.codex/gsd/VERSION") { (Get-Content "$HOME/.codex/gsd/VERSION" -Raw).Trim() } else { $null }
32
- $latest = $null; try { $latest = (npm view gsd-codex-cli version).Trim() } catch {}
33
- - If $installed and $latest and $installed -ne $latest, surface:
34
- "Update available: $installed -> $latest. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
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 $GsdTools init verify-work $PHASE --raw
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 $GsdTools commit "message" --files ....
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-codex-cli",
3
- "version": "1.20.4",
3
+ "version": "1.20.6",
4
4
  "description": "Codex-native package for the get-shit-done workflow with native subagent orchestration.",
5
5
  "bin": {
6
6
  "gsd-codex-cli": "bin/install-codex.js",