gsd-codex-cli 1.20.4 → 1.20.5

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.
@@ -12,10 +12,11 @@ Update GSD to latest version with changelog display
12
12
  - Use .codex/skills/get-shit-done-codex semantics.
13
13
  - Treat upstream workflow as the source of truth.
14
14
  - 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 ...
15
+ - Use one of these engine paths (prefer local, fallback global):
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ node ~/.claude/get-shit-done/bin/gsd-tools.js ...
18
+ - If `.js` is unavailable, use the same path with `.cjs`.
19
+ - Run engine commands through PowerShell.
19
20
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
21
  - No jq / bash-only constructs.
21
22
 
@@ -27,11 +28,9 @@ Update GSD to latest version with changelog display
27
28
  - Do not advance workflow steps until wait and close complete.
28
29
  ## Update check
29
30
  - 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."
31
+ - Check installed Codex fork version from `.codex/gsd/VERSION` (or `~/.codex/gsd/VERSION`).
32
+ - Check latest published version with `npm view gsd-codex-cli version`.
33
+ - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
35
34
 
36
35
  ## Execution
37
36
  1. Parse [none] from the user input.
@@ -44,7 +43,7 @@ Update GSD to latest version with changelog display
44
43
  - wait for each spawned agent and apply returned output before moving forward.
45
44
  5. Preserve all gates and routing from upstream workflow.
46
45
  6. Preserve commit behavior using
47
- node $GsdTools commit "message" --files ....
46
+ node <gsd-tools-path> commit "message" --files ....
48
47
  7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
49
48
 
50
49
  ## Completion output
@@ -12,10 +12,11 @@ Validate built features through conversational UAT
12
12
  - Use .codex/skills/get-shit-done-codex semantics.
13
13
  - Treat upstream workflow as the source of truth.
14
14
  - 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 ...
15
+ - Use one of these engine paths (prefer local, fallback global):
16
+ node .claude/get-shit-done/bin/gsd-tools.js ...
17
+ node ~/.claude/get-shit-done/bin/gsd-tools.js ...
18
+ - If `.js` is unavailable, use the same path with `.cjs`.
19
+ - Run engine commands through PowerShell.
19
20
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
21
  - No jq / bash-only constructs.
21
22
 
@@ -27,16 +28,14 @@ Validate built features through conversational UAT
27
28
  - Do not advance workflow steps until wait and close complete.
28
29
  ## Update check
29
30
  - 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."
31
+ - Check installed Codex fork version from `.codex/gsd/VERSION` (or `~/.codex/gsd/VERSION`).
32
+ - Check latest published version with `npm view gsd-codex-cli version`.
33
+ - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
35
34
 
36
35
  ## Execution
37
36
  1. Parse "[phase number, for example 4]" from the user input.
38
37
  2. Run init:
39
- node $GsdTools init verify-work $PHASE --raw
38
+ node <gsd-tools-path> init verify-work [phase] --raw
40
39
 
41
40
  3. Load .claude/get-shit-done/workflows/verify-work.md and execute it step-by-step.
42
41
  4. Translate each Task(...) in workflow into:
@@ -44,7 +43,7 @@ node $GsdTools init verify-work $PHASE --raw
44
43
  - wait for each spawned agent and apply returned output before moving forward.
45
44
  5. Preserve all gates and routing from upstream workflow.
46
45
  6. Preserve commit behavior using
47
- node $GsdTools commit "message" --files ....
46
+ node <gsd-tools-path> commit "message" --files ....
48
47
  7. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
49
48
 
50
49
  ## Completion output
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.5",
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",