gsd-codex-cli 1.20.7 → 1.20.9

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,6 +3,8 @@ description: Add phase to end of current milestone in roadmap
3
3
  argument-hint: <description>
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Add phase to end of current milestone in roadmap
8
10
 
@@ -15,9 +17,11 @@ Add phase to end of current milestone in roadmap
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Add phase to end of current milestone in roadmap
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse <description> from the user input.
40
+ 1. Parse <description> from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op "0" --raw
39
43
 
@@ -3,6 +3,8 @@ description: Capture idea or task as todo from current conversation context
3
3
  argument-hint: [optional description]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Capture idea or task as todo from current conversation context
8
10
 
@@ -15,9 +17,11 @@ Capture idea or task as todo from current conversation context
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Capture idea or task as todo from current conversation context
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [optional description] from the user input.
40
+ 1. Parse [optional description] from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init todos [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Audit milestone completion against original intent before archiving
3
3
  argument-hint: "[version]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Audit milestone completion against original intent before archiving
8
10
 
@@ -15,9 +17,11 @@ Audit milestone completion against original intent before archiving
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Audit milestone completion against original intent before archiving
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[version]" from the user input.
40
+ 1. Parse "[version]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init milestone-op --raw
39
43
 
@@ -3,6 +3,8 @@ description: List pending todos and select one to work on
3
3
  argument-hint: [area filter]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  List pending todos and select one to work on
8
10
 
@@ -15,9 +17,11 @@ List pending todos and select one to work on
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ List pending todos and select one to work on
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [area filter] from the user input.
40
+ 1. Parse [area filter] from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init todos [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Archive completed milestone and prepare for next version
3
3
  argument-hint: <version>
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Archive completed milestone and prepare for next version
8
10
 
@@ -15,9 +17,11 @@ Archive completed milestone and prepare for next version
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Archive completed milestone and prepare for next version
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse <version> from the user input.
40
+ 1. Parse <version> from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init execute-phase "1" --raw
39
43
 
@@ -3,6 +3,8 @@ description: Systematic debugging with persistent state across context resets
3
3
  argument-hint: [issue description]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Systematic debugging with persistent state across context resets
8
10
 
@@ -15,9 +17,11 @@ Systematic debugging with persistent state across context resets
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Systematic debugging with persistent state across context resets
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [issue description] from the user input.
40
+ 1. Parse [issue description] from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> state load --raw
39
43
 
@@ -3,6 +3,8 @@ description: Gather phase context through adaptive questioning before planning
3
3
  argument-hint: "<phase>"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Gather phase context through adaptive questioning before planning
8
10
 
@@ -15,9 +17,11 @@ Gather phase context through adaptive questioning before planning
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Gather phase context through adaptive questioning before planning
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "<phase>" from the user input.
40
+ 1. Parse "<phase>" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Execute all plans in a phase with wave-based parallelization
3
3
  argument-hint: "<phase-number> [--gaps-only]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Execute all plans in a phase with wave-based parallelization
8
10
 
@@ -13,42 +15,49 @@ Execute all plans in a phase with wave-based parallelization
13
15
  - Use one of these engine paths (prefer local, fallback global):
14
16
  node .claude/get-shit-done/bin/gsd-tools.js ...
15
17
  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.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
19
- - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
- - No jq / bash-only constructs.
21
-
22
- ## Subagent lifecycle (required)
23
-
24
- - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
25
- - Spawn only when the upstream workflow defines an agent role.
26
- - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
27
- - Do not advance workflow steps until wait and close complete.
28
-
29
- ## Input contract
30
- - The command argument is authoritative.
31
- - If user runs `gsd-execute-phase 28`, execute phase `28`. Do not auto-discover a different phase.
32
- - Parse flags only from the same argument string (`--gaps-only`, `--auto`).
33
- - If phase argument is missing or invalid, stop and ask for a valid phase number.
34
-
35
- ## Execution
36
- 1. Parse "<phase-number> [--gaps-only] [--auto]" from the command argument string.
37
- 2. Treat parsed phase as the execution target and keep it unchanged for all downstream steps.
38
- 3. Run init with the parsed phase:
39
- node <gsd-tools-path> init execute-phase <phase> --raw
40
- 4. If `--gaps-only` is present, apply gap-closure filtering exactly as defined in the upstream workflow.
41
- 5. If `--auto` is present, preserve auto-advance behavior from the upstream workflow.
42
- 6. Load .claude/get-shit-done/workflows/execute-phase.md and execute it step-by-step.
43
- 7. Translate each Task(...) in workflow into:
44
- - spawn_agent with the matching role file context from .claude/agents/.
45
- - wait for each spawned agent and apply returned output before moving forward.
46
- 8. Preserve all gates and routing from upstream workflow.
47
- 9. Preserve commit behavior using
48
- node <gsd-tools-path> commit "message" --files ....
49
- 10. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
50
-
51
- ## Completion output
52
- - Summarize key artifacts created/updated.
53
- - Next recommended command: `gsd-verify-work <phase>` (Codex) / `/gsd:verify-work <phase>` (Claude)
54
- - Never recommend internal `node ... gsd-tools ...` commands to the user.
18
+ - If `.js` is unavailable, use the same path with `.cjs`.
19
+ - Run engine commands through PowerShell.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
21
+ - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
22
+ - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
25
+
26
+ ## Subagent lifecycle (required)
27
+
28
+ - Translate each upstream `Task(...)` into `spawn_agent` -> `wait` -> `close_agent`.
29
+ - Spawn only when the upstream workflow defines an agent role.
30
+ - Use `.claude/agents/gsd-*.md` as role context for each spawned agent.
31
+ - Do not advance workflow steps until wait and close complete.
32
+
33
+ ## Input contract
34
+ - The command argument is authoritative.
35
+ - If user runs `gsd-execute-phase 28`, execute phase `28`. Do not auto-discover a different phase.
36
+ - Parse phase from either:
37
+ - the explicit command argument tail, or
38
+ - the latest user message (for example: "execute phase 28").
39
+ - Accept the first numeric token as phase number (integer or decimal, e.g., 30 or 30.1).
40
+ - Parse flags `--gaps-only` and `--auto` from the same input text when present.
41
+ - Do not claim "phase missing" when the latest user input already contains a valid phase token.
42
+ - Only ask for input if no valid phase token is found anywhere in the latest user request.
43
+
44
+ ## Execution
45
+ 1. Parse "<phase-number> [--gaps-only] [--auto]" from command argument text, or extract from the latest user message.
46
+ 2. Treat parsed phase as the execution target and keep it unchanged for all downstream steps.
47
+ 3. Run init with the parsed phase:
48
+ node <gsd-tools-path> init execute-phase <phase> --raw
49
+ 4. If `--gaps-only` is present, apply gap-closure filtering exactly as defined in the upstream workflow.
50
+ 5. If `--auto` is present, preserve auto-advance behavior from the upstream workflow.
51
+ 6. Load .claude/get-shit-done/workflows/execute-phase.md and execute it step-by-step.
52
+ 7. Translate each Task(...) in workflow into:
53
+ - spawn_agent with the matching role file context from .claude/agents/.
54
+ - wait for each spawned agent and apply returned output before moving forward.
55
+ 8. Preserve all gates and routing from upstream workflow.
56
+ 9. Preserve commit behavior using
57
+ node <gsd-tools-path> commit "message" --files ....
58
+ 10. If commit preflight fails (no git / no commit flag), proceed in read-only mode and report clearly.
59
+
60
+ ## Completion output
61
+ - Summarize key artifacts created/updated.
62
+ - Next recommended command: `gsd-verify-work <phase>` (Codex) / `/gsd:verify-work <phase>` (Claude)
63
+ - Never recommend internal `node ... gsd-tools ...` commands to the user.
@@ -3,6 +3,8 @@ description: Show available GSD commands and usage guide
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Show available GSD commands and usage guide
8
10
 
@@ -15,9 +17,11 @@ Show available GSD commands and usage guide
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Show available GSD commands and usage guide
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  # No explicit init.
39
43
 
@@ -3,6 +3,8 @@ description: Insert urgent work as decimal phase (for example 72.1) between exis
3
3
  argument-hint: <after> <description>
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Insert urgent work as decimal phase (for example 72.1) between existing phases
8
10
 
@@ -15,9 +17,11 @@ Insert urgent work as decimal phase (for example 72.1) between existing phases
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Insert urgent work as decimal phase (for example 72.1) between existing phases
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse <after> <description> from the user input.
40
+ 1. Parse <after> <description> from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op [after-phase] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Surface Claude's assumptions about a phase approach before planning
3
3
  argument-hint: "[phase]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Surface Claude's assumptions about a phase approach before planning
8
10
 
@@ -15,9 +17,11 @@ Surface Claude's assumptions about a phase approach before planning
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Surface Claude's assumptions about a phase approach before planning
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[phase]" from the user input.
40
+ 1. Parse "[phase]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Analyze codebase with parallel mapper agents to produce .planning/c
3
3
  argument-hint: "[optional: specific area to map, for example api or auth]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Analyze codebase with parallel mapper agents to produce .planning/codebase/ documents
8
10
 
@@ -15,9 +17,11 @@ Analyze codebase with parallel mapper agents to produce .planning/codebase/ docu
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Analyze codebase with parallel mapper agents to produce .planning/codebase/ docu
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[optional: specific area to map, for example api or auth]" from the user input.
40
+ 1. Parse "[optional: specific area to map, for example api or auth]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init map-codebase --raw
39
43
 
@@ -3,6 +3,8 @@ description: Start a new milestone cycle — update PROJECT.md and route to requ
3
3
  argument-hint: "[milestone name, for example v1.1 Notifications]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Start a new milestone cycle — update PROJECT.md and route to requirements
8
10
 
@@ -15,9 +17,11 @@ Start a new milestone cycle — update PROJECT.md and route to requirements
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Start a new milestone cycle — update PROJECT.md and route to requirements
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[milestone name, for example v1.1 Notifications]" from the user input.
40
+ 1. Parse "[milestone name, for example v1.1 Notifications]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init new-milestone --raw
39
43
 
@@ -3,6 +3,8 @@ description: Initialize a new project with deep context gathering and PROJECT.md
3
3
  argument-hint: "[--auto]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Initialize a new project with deep context gathering and PROJECT.md
8
10
 
@@ -15,9 +17,11 @@ Initialize a new project with deep context gathering and PROJECT.md
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Initialize a new project with deep context gathering and PROJECT.md
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[--auto]" from the user input.
40
+ 1. Parse "[--auto]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init new-project --raw
39
43
 
@@ -3,6 +3,8 @@ description: Create context handoff when pausing work mid-phase
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Create context handoff when pausing work mid-phase
8
10
 
@@ -15,9 +17,11 @@ Create context handoff when pausing work mid-phase
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Create context handoff when pausing work mid-phase
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> state load --raw
39
43
 
@@ -3,6 +3,8 @@ description: Create phases to close all gaps identified by milestone audit
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Create phases to close all gaps identified by milestone audit
8
10
 
@@ -15,9 +17,11 @@ Create phases to close all gaps identified by milestone audit
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Create phases to close all gaps identified by milestone audit
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init milestone-op --raw
39
43
 
@@ -3,6 +3,8 @@ description: Create detailed execution plan for a phase (PLAN.md) with verificat
3
3
  argument-hint: "[phase] [--research] [--skip-research] [--gaps] [--skip-verify]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Create detailed execution plan for a phase (PLAN.md) with verification loop
8
10
 
@@ -15,9 +17,11 @@ Create detailed execution plan for a phase (PLAN.md) with verification loop
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Create detailed execution plan for a phase (PLAN.md) with verification loop
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[phase] [--research] [--skip-research] [--gaps] [--skip-verify]" from the user input.
40
+ 1. Parse "[phase] [--research] [--skip-research] [--gaps] [--skip-verify]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init plan-phase [phase] --include state,roadmap,requirements,context,research,verification,uat --raw
39
43
 
@@ -3,6 +3,8 @@ description: Check project progress, show context, and route to next action
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Check project progress, show context, and route to next action
8
10
 
@@ -15,9 +17,11 @@ Check project progress, show context, and route to next action
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Check project progress, show context, and route to next action
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init progress --include state,roadmap,project,config --raw
39
43
 
@@ -3,6 +3,8 @@ description: Execute a quick task with GSD guarantees (atomic commits, state tra
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Execute a quick task with GSD guarantees (atomic commits, state tracking) but skip optional agents
8
10
 
@@ -15,9 +17,11 @@ Execute a quick task with GSD guarantees (atomic commits, state tracking) but sk
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Execute a quick task with GSD guarantees (atomic commits, state tracking) but sk
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init quick "[argument]" --raw
39
43
 
@@ -3,6 +3,8 @@ description: Remove a future phase from roadmap and renumber subsequent phases
3
3
  argument-hint: <phase-number>
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Remove a future phase from roadmap and renumber subsequent phases
8
10
 
@@ -15,9 +17,11 @@ Remove a future phase from roadmap and renumber subsequent phases
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Remove a future phase from roadmap and renumber subsequent phases
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse <phase-number> from the user input.
40
+ 1. Parse <phase-number> from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Research how to implement a phase (standalone - usually use plan-ph
3
3
  argument-hint: "[phase]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Research how to implement a phase (standalone - usually use plan-phase instead)
8
10
 
@@ -15,9 +17,11 @@ Research how to implement a phase (standalone - usually use plan-phase instead)
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Research how to implement a phase (standalone - usually use plan-phase instead)
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[phase]" from the user input.
40
+ 1. Parse "[phase]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init phase-op [argument] --raw
39
43
 
@@ -3,6 +3,8 @@ description: Resume work from previous session with full context restoration
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Resume work from previous session with full context restoration
8
10
 
@@ -15,9 +17,11 @@ Resume work from previous session with full context restoration
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Resume work from previous session with full context restoration
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init resume --raw
39
43
 
@@ -3,6 +3,8 @@ description: Switch model profile for GSD agents (quality/balanced/budget)
3
3
  argument-hint: <profile>
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Switch model profile for GSD agents (quality/balanced/budget)
8
10
 
@@ -15,9 +17,11 @@ Switch model profile for GSD agents (quality/balanced/budget)
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Switch model profile for GSD agents (quality/balanced/budget)
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse <profile> from the user input.
40
+ 1. Parse <profile> from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> state load --raw
39
43
 
@@ -3,6 +3,8 @@ description: Configure GSD workflow toggles and model profile
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Configure GSD workflow toggles and model profile
8
10
 
@@ -15,9 +17,11 @@ Configure GSD workflow toggles and model profile
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Configure GSD workflow toggles and model profile
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  node <gsd-tools-path> config-ensure-section --raw
39
43
 
@@ -3,6 +3,8 @@ description: Update GSD to latest version with changelog display
3
3
  argument-hint: [none]
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Update GSD to latest version with changelog display
8
10
 
@@ -15,9 +17,11 @@ Update GSD to latest version with changelog display
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Update GSD to latest version with changelog display
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse [none] from the user input.
40
+ 1. No positional argument is required. Read flags from command text if present.
37
41
  2. Run init:
38
42
  # No explicit init.
39
43
 
@@ -3,6 +3,8 @@ description: Validate built features through conversational UAT
3
3
  argument-hint: "[phase number, for example 4]"
4
4
  ---
5
5
 
6
+ $ARGUMENTS
7
+
6
8
  ## Objective
7
9
  Validate built features through conversational UAT
8
10
 
@@ -15,9 +17,11 @@ Validate built features through conversational UAT
15
17
  node ~/.claude/get-shit-done/bin/gsd-tools.js ...
16
18
  - If `.js` is unavailable, use the same path with `.cjs`.
17
19
  - Run engine commands through PowerShell.
18
- - Do not set `node <path> ...` as one string variable and invoke `& $var`; run direct `node <path> ...` or `& node <path> ...`.
20
+ - Do not set `node <path> ...` as one string variable and invoke `& <cmd_var>`; run direct `node <path> ...` or `& node <path> ...`.
19
21
  - Parse JSON with ConvertFrom-Json; parse key/value output when workflow uses KEY=value raw mode.
20
22
  - No jq / bash-only constructs.
23
+ - Accept natural-language command input; do not require an exact literal argument template.
24
+ - If a required argument is still missing after extraction, ask one concise clarification question.
21
25
 
22
26
  ## Subagent lifecycle (required)
23
27
 
@@ -33,7 +37,7 @@ Validate built features through conversational UAT
33
37
  - If versions differ, surface: "Update available: <installed> -> <latest>. Next: gsd-update (Codex) / /gsd:update (Claude) or re-run npx gsd-codex-cli@latest."
34
38
 
35
39
  ## Execution
36
- 1. Parse "[phase number, for example 4]" from the user input.
40
+ 1. Parse "[phase number, for example 4]" from command argument text or the latest user message (natural language allowed).
37
41
  2. Run init:
38
42
  node <gsd-tools-path> init verify-work [phase] --raw
39
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-codex-cli",
3
- "version": "1.20.7",
3
+ "version": "1.20.9",
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",