gsd-opencode 1.4.15 → 1.5.2

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.
Files changed (68) hide show
  1. package/bin/install.js +1 -1
  2. package/command/gsd/add-phase.md +14 -12
  3. package/command/gsd/add-todo.md +8 -6
  4. package/command/gsd/check-todos.md +12 -10
  5. package/command/gsd/complete-milestone.md +8 -8
  6. package/command/gsd/consider-issues.md +5 -5
  7. package/command/gsd/create-roadmap.md +7 -7
  8. package/command/gsd/debug.md +4 -4
  9. package/command/gsd/discuss-milestone.md +4 -4
  10. package/command/gsd/discuss-phase.md +2 -2
  11. package/command/gsd/execute-phase.md +4 -4
  12. package/command/gsd/execute-plan.md +3 -3
  13. package/command/gsd/help.md +76 -76
  14. package/command/gsd/insert-phase.md +10 -10
  15. package/command/gsd/list-phase-assumptions.md +2 -2
  16. package/command/gsd/map-codebase.md +5 -5
  17. package/command/gsd/new-milestone.md +3 -3
  18. package/command/gsd/new-project.md +7 -7
  19. package/command/gsd/pause-work.md +3 -3
  20. package/command/gsd/plan-fix.md +6 -6
  21. package/command/gsd/plan-phase.md +5 -5
  22. package/command/gsd/progress.md +29 -29
  23. package/command/gsd/remove-phase.md +9 -7
  24. package/command/gsd/research-phase.md +2 -2
  25. package/command/gsd/resume-work.md +1 -1
  26. package/command/gsd/status.md +7 -7
  27. package/command/gsd/verify-work.md +3 -3
  28. package/get-shit-done/references/checkpoints.md +22 -22
  29. package/get-shit-done/references/continuation-format.md +28 -28
  30. package/get-shit-done/references/git-integration.md +4 -4
  31. package/get-shit-done/references/plan-format.md +25 -25
  32. package/get-shit-done/references/principles.md +14 -14
  33. package/get-shit-done/references/questioning.md +2 -2
  34. package/get-shit-done/references/research-pitfalls.md +2 -2
  35. package/get-shit-done/references/scope-estimation.md +3 -3
  36. package/get-shit-done/templates/DEBUG.md +7 -7
  37. package/get-shit-done/templates/agent-history.md +1 -1
  38. package/get-shit-done/templates/checkpoint-return.md +2 -2
  39. package/get-shit-done/templates/codebase/architecture.md +1 -1
  40. package/get-shit-done/templates/codebase/concerns.md +1 -1
  41. package/get-shit-done/templates/codebase/conventions.md +1 -1
  42. package/get-shit-done/templates/context.md +4 -4
  43. package/get-shit-done/templates/continue-here.md +1 -1
  44. package/get-shit-done/templates/discovery.md +2 -2
  45. package/get-shit-done/templates/milestone-context.md +9 -9
  46. package/get-shit-done/templates/phase-prompt.md +4 -4
  47. package/get-shit-done/templates/project.md +2 -2
  48. package/get-shit-done/templates/research.md +2 -2
  49. package/get-shit-done/templates/state.md +3 -3
  50. package/get-shit-done/templates/uat-issues.md +7 -7
  51. package/get-shit-done/workflows/_archive/execute-phase.md +14 -14
  52. package/get-shit-done/workflows/complete-milestone.md +3 -3
  53. package/get-shit-done/workflows/create-milestone.md +9 -9
  54. package/get-shit-done/workflows/create-roadmap.md +6 -6
  55. package/get-shit-done/workflows/debug.md +4 -4
  56. package/get-shit-done/workflows/discovery-phase.md +4 -4
  57. package/get-shit-done/workflows/discuss-milestone.md +8 -8
  58. package/get-shit-done/workflows/discuss-phase.md +5 -5
  59. package/get-shit-done/workflows/execute-phase.md +5 -5
  60. package/get-shit-done/workflows/execute-plan.md +19 -19
  61. package/get-shit-done/workflows/list-phase-assumptions.md +11 -11
  62. package/get-shit-done/workflows/map-codebase.md +4 -4
  63. package/get-shit-done/workflows/plan-phase.md +13 -13
  64. package/get-shit-done/workflows/research-phase.md +13 -13
  65. package/get-shit-done/workflows/resume-project.md +14 -14
  66. package/get-shit-done/workflows/transition.md +8 -8
  67. package/get-shit-done/workflows/verify-work.md +4 -4
  68. package/package.json +1 -1
package/bin/install.js CHANGED
@@ -183,7 +183,7 @@ function install(isGlobal) {
183
183
  console.log(` ${green}✓${reset} Installed get-shit-done`);
184
184
 
185
185
  console.log(`
186
- ${green}Done!${reset} Run ${cyan}/gsd:help${reset} to get started.
186
+ ${green}Done!${reset} Run ${cyan}/gsd-help${reset} to get started.
187
187
  `);
188
188
  }
189
189
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:add-phase
2
+ name: gsd-add-phase
3
3
  description: Add phase to end of current milestone in roadmap
4
4
  argument-hint: <description>
5
5
  allowed-tools:
@@ -19,22 +19,24 @@ Purpose: Add planned work discovered during execution that belongs at the end of
19
19
  <execution_context>
20
20
  @.planning/ROADMAP.md
21
21
  @.planning/STATE.md
22
+
23
+ Phase description: $ARGUMENTS
22
24
  </execution_context>
23
25
 
24
26
  <process>
25
27
 
26
28
  <step name="parse_arguments">
27
29
  Parse the command arguments:
28
- - All arguments ($ARGUMENTS) become the phase description
29
- - Example: `/gsd:add-phase Add authentication` → description = "Add authentication"
30
- - Example: `/gsd:add-phase Fix critical performance issues` → description = "Fix critical performance issues"
30
+ - All arguments `$ARGUMENTS` become the phase description
31
+ - Example: `/gsd-add-phase Add authentication` → description = "Add authentication"
32
+ - Example: `/gsd-add-phase Fix critical performance issues` → description = "Fix critical performance issues"
31
33
 
32
34
  If no arguments provided:
33
35
 
34
36
  ```
35
37
  ERROR: Phase description required
36
- Usage: /gsd:add-phase <description>
37
- Example: /gsd:add-phase Add authentication system
38
+ Usage: /gsd-add-phase <description>
39
+ Example: /gsd-add-phase Add authentication system
38
40
  ```
39
41
 
40
42
  Exit.
@@ -128,7 +130,7 @@ Add the new phase entry to the roadmap:
128
130
  **Plans:** 0 plans
129
131
 
130
132
  Plans:
131
- - [ ] TBD (run /gsd:plan-phase {N} to break down)
133
+ - [ ] TBD (run /gsd-plan-phase {N} to break down)
132
134
 
133
135
  **Details:**
134
136
  [To be added during planning]
@@ -170,14 +172,14 @@ Project state updated: .planning/STATE.md
170
172
 
171
173
  **Phase {N}: {description}**
172
174
 
173
- `/gsd:plan-phase {N}`
175
+ `/gsd-plan-phase {N}`
174
176
 
175
- *`/clear` first → fresh context window*
177
+ *`/new` first → fresh context window*
176
178
 
177
179
  ---
178
180
 
179
181
  **Also available:**
180
- - `/gsd:add-phase <description>` — add another phase
182
+ - `/gsd-add-phase <description>` — add another phase
181
183
  - Review roadmap
182
184
 
183
185
  ---
@@ -190,8 +192,8 @@ Project state updated: .planning/STATE.md
190
192
 
191
193
  - Don't modify phases outside current milestone
192
194
  - Don't renumber existing phases
193
- - Don't use decimal numbering (that's /gsd:insert-phase)
194
- - Don't create plans yet (that's /gsd:plan-phase)
195
+ - Don't use decimal numbering (that's /gsd-insert-phase)
196
+ - Don't create plans yet (that's /gsd-plan-phase)
195
197
  - Don't commit changes (user decides when to commit)
196
198
  </anti_patterns>
197
199
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:add-todo
2
+ name: gsd-add-todo
3
3
  description: Capture idea or task as todo from current conversation context
4
4
  argument-hint: [optional description]
5
5
  allowed-tools:
@@ -17,6 +17,8 @@ Enables "thought → capture → continue" flow without losing context or derail
17
17
 
18
18
  <context>
19
19
  @.planning/STATE.md
20
+
21
+ Todo title: $ARGUMENTS
20
22
  </context>
21
23
 
22
24
  <process>
@@ -36,8 +38,8 @@ Note existing areas for consistency in infer_area step.
36
38
  </step>
37
39
 
38
40
  <step name="extract_content">
39
- **With arguments:** Use ($ARGUMENTS) as the title/focus.
40
- - `/gsd:add-todo Add auth token refresh` → title = "Add auth token refresh"
41
+ **With arguments:** Use `$ARGUMENTS` as the title/focus.
42
+ - `/gsd-add-todo Add auth token refresh` → title = "Add auth token refresh"
41
43
 
42
44
  **Without arguments:** Analyze recent conversation to extract:
43
45
  - The specific problem, idea, or task discussed
@@ -108,7 +110,7 @@ files:
108
110
 
109
111
  ## Problem
110
112
 
111
- [problem description - enough context for future Claude to understand weeks later]
113
+ [problem description - enough context for future OpenCode to understand weeks later]
112
114
 
113
115
  ## Solution
114
116
 
@@ -154,7 +156,7 @@ Would you like to:
154
156
 
155
157
  1. Continue with current work
156
158
  2. Add another todo
157
- 3. View all todos (/gsd:check-todos)
159
+ 3. View all todos (/gsd-check-todos)
158
160
  ```
159
161
  </step>
160
162
 
@@ -174,7 +176,7 @@ Would you like to:
174
176
  <success_criteria>
175
177
  - [ ] Directory structure exists
176
178
  - [ ] Todo file created with valid frontmatter
177
- - [ ] Problem section has enough context for future Claude
179
+ - [ ] Problem section has enough context for future OpenCode
178
180
  - [ ] No duplicates (checked and resolved)
179
181
  - [ ] Area consistent with existing todos
180
182
  - [ ] STATE.md updated if exists
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:check-todos
2
+ name: gsd-check-todos
3
3
  description: List pending todos and select one to work on
4
4
  argument-hint: [area filter]
5
5
  allowed-tools:
@@ -19,6 +19,8 @@ Enables reviewing captured ideas and deciding what to work on next.
19
19
  <context>
20
20
  @.planning/STATE.md
21
21
  @.planning/ROADMAP.md
22
+
23
+ Area filter: $ARGUMENTS
22
24
  </context>
23
25
 
24
26
  <process>
@@ -33,14 +35,14 @@ If count is 0:
33
35
  ```
34
36
  No pending todos.
35
37
 
36
- Todos are captured during work sessions with /gsd:add-todo.
38
+ Todos are captured during work sessions with /gsd-add-todo.
37
39
 
38
40
  ---
39
41
 
40
42
  Would you like to:
41
43
 
42
- 1. Continue with current phase (/gsd:progress)
43
- 2. Add a todo now (/gsd:add-todo)
44
+ 1. Continue with current phase (/gsd-progress)
45
+ 2. Add a todo now (/gsd-add-todo)
44
46
  ```
45
47
 
46
48
  Exit.
@@ -48,8 +50,8 @@ Exit.
48
50
 
49
51
  <step name="parse_filter">
50
52
  Check for area filter in arguments:
51
- - `/gsd:check-todos` → show all
52
- - `/gsd:check-todos api` → filter to area:api only
53
+ - `/gsd-check-todos` → show all
54
+ - `/gsd-check-todos api` → filter to area:api only
53
55
  </step>
54
56
 
55
57
  <step name="list_todos">
@@ -74,7 +76,7 @@ Pending Todos:
74
76
  ---
75
77
 
76
78
  Reply with a number to view details, or:
77
- - `/gsd:check-todos [area]` to filter by area
79
+ - `/gsd-check-todos [area]` to filter by area
78
80
  - `q` to exit
79
81
  ```
80
82
 
@@ -138,7 +140,7 @@ Use question:
138
140
  - question: "What would you like to do with this todo?"
139
141
  - options:
140
142
  - "Work on it now" — move to done, start working
141
- - "Create a phase" — /gsd:add-phase with this scope
143
+ - "Create a phase" — /gsd-add-phase with this scope
142
144
  - "Brainstorm approach" — think through before deciding
143
145
  - "Put it back" — return to list
144
146
  </step>
@@ -154,7 +156,7 @@ Update STATE.md todo count. Present problem/solution context. Begin work or ask
154
156
  Note todo reference in phase planning notes. Keep in pending. Return to list or exit.
155
157
 
156
158
  **Create a phase:**
157
- Display: `/gsd:add-phase [description from todo]`
159
+ Display: `/gsd-add-phase [description from todo]`
158
160
  Keep in pending. User runs command in fresh context.
159
161
 
160
162
  **Brainstorm approach:**
@@ -202,7 +204,7 @@ Confirm: "Committed: docs: start work on todo - [title]"
202
204
  <anti_patterns>
203
205
  - Don't delete todos — move to done/ when work begins
204
206
  - Don't start work without moving to done/ first
205
- - Don't create plans from this command — route to /gsd:plan-phase or /gsd:add-phase
207
+ - Don't create plans from this command — route to /gsd-plan-phase or /gsd-add-phase
206
208
  </anti_patterns>
207
209
 
208
210
  <success_criteria>
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  type: prompt
3
- name: gsd:complete-milestone
3
+ name: gsd-complete-milestone
4
4
  description: Archive completed milestone and prepare for next version
5
5
  argument-hint: <version>
6
6
  allowed-tools:
@@ -10,7 +10,7 @@ allowed-tools:
10
10
  ---
11
11
 
12
12
  <objective>
13
- Mark milestone {{version}} complete, archive to milestones/, and update ROADMAP.md.
13
+ Mark milestone $ARGUMENTS complete, archive to milestones/, and update ROADMAP.md.
14
14
 
15
15
  Purpose: Create historical record of shipped version, collapse completed work in roadmap, and prepare for next milestone.
16
16
  Output: Milestone archived, roadmap reorganized, git tagged.
@@ -31,7 +31,7 @@ Output: Milestone archived, roadmap reorganized, git tagged.
31
31
 
32
32
  **User input:**
33
33
 
34
- - Version: {{version}} (e.g., "1.0", "1.1", "2.0")
34
+ - Version: $ARGUMENTS (e.g., "1.0", "1.1", "2.0")
35
35
  </context>
36
36
 
37
37
  <process>
@@ -59,7 +59,7 @@ Output: Milestone archived, roadmap reorganized, git tagged.
59
59
 
60
60
  4. **Archive milestone:**
61
61
 
62
- - Create `.planning/milestones/v{{version}}-ROADMAP.md`
62
+ - Create `.planning/milestones/v$ARGUMENTS-ROADMAP.md`
63
63
  - Extract full phase details from ROADMAP.md
64
64
  - Fill milestone-archive.md template
65
65
  - Update ROADMAP.md to one-line summary with link
@@ -74,8 +74,8 @@ Output: Milestone archived, roadmap reorganized, git tagged.
74
74
  6. **Commit and tag:**
75
75
 
76
76
  - Stage: MILESTONES.md, PROJECT.md, ROADMAP.md, STATE.md, archive file
77
- - Commit: `chore: archive v{{version}} milestone`
78
- - Tag: `git tag -a v{{version}} -m "[milestone summary]"`
77
+ - Commit: `chore: archive v$ARGUMENTS milestone`
78
+ - Tag: `git tag -a v$ARGUMENTS -m "[milestone summary]"`
79
79
  - Ask about pushing tag
80
80
 
81
81
  7. **Offer next steps:**
@@ -87,10 +87,10 @@ Output: Milestone archived, roadmap reorganized, git tagged.
87
87
 
88
88
  <success_criteria>
89
89
 
90
- - Milestone archived to `.planning/milestones/v{{version}}-ROADMAP.md`
90
+ - Milestone archived to `.planning/milestones/v$ARGUMENTS-ROADMAP.md`
91
91
  - ROADMAP.md collapsed to one-line entry
92
92
  - PROJECT.md updated with current state
93
- - Git tag v{{version}} created
93
+ - Git tag v$ARGUMENTS created
94
94
  - Commit successful
95
95
  - User knows next steps
96
96
  </success_criteria>
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:consider-issues
2
+ name: gsd-consider-issues
3
3
  description: Review deferred issues with codebase context, close resolved ones, identify urgent ones
4
4
  allowed-tools:
5
5
  - read
@@ -154,12 +154,12 @@ Use question with appropriate options based on findings:
154
154
  - "Review each first" - Show details before closing
155
155
 
156
156
  **If urgent issues exist:**
157
- - "Insert urgent phase" - Create phase to address urgent issues (/gsd:insert-phase)
157
+ - "Insert urgent phase" - Create phase to address urgent issues (/gsd-insert-phase)
158
158
  - "Add to current plan" - Include in next plan being created
159
159
  - "Defer anyway" - Keep as-is despite urgency
160
160
 
161
161
  **If natural fits exist:**
162
- - "Note for phase planning" - Will be picked up during /gsd:plan-phase
162
+ - "Note for phase planning" - Will be picked up during /gsd-plan-phase
163
163
  - "Add explicit reminder" - Update issue with "Include in Phase X"
164
164
 
165
165
  **Always include:**
@@ -182,11 +182,11 @@ Use question with appropriate options based on findings:
182
182
  4. Update STATE.md deferred issues count
183
183
 
184
184
  **If inserting urgent phase:**
185
- - Display the command for user to run after clearing: `/gsd:insert-phase [after-phase] Address urgent issues ISS-XXX, ISS-YYY`
185
+ - Display the command for user to run after clearing: `/gsd-insert-phase [after-phase] Address urgent issues ISS-XXX, ISS-YYY`
186
186
 
187
187
  **If noting for phase planning:**
188
188
  - Update issue's "Suggested phase" field with specific phase number
189
- - These will be picked up by /gsd:plan-phase workflow
189
+ - These will be picked up by /gsd-plan-phase workflow
190
190
  </step>
191
191
 
192
192
  </process>
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:create-roadmap
2
+ name: gsd-create-roadmap
3
3
  description: Create roadmap with phases for the project
4
4
  allowed-tools:
5
5
  - read
@@ -12,7 +12,7 @@ allowed-tools:
12
12
  <objective>
13
13
  Create project roadmap with phase breakdown.
14
14
 
15
- Roadmaps define what work happens in what order. Run after /gsd:new-project.
15
+ Roadmaps define what work happens in what order. Run after /gsd-new-project.
16
16
  </objective>
17
17
 
18
18
  <execution_context>
@@ -31,7 +31,7 @@ Roadmaps define what work happens in what order. Run after /gsd:new-project.
31
31
  <step name="validate">
32
32
  ```bash
33
33
  # Verify project exists
34
- [ -f .planning/PROJECT.md ] || { echo "ERROR: No PROJECT.md found. Run /gsd:new-project first."; exit 1; }
34
+ [ -f .planning/PROJECT.md ] || { echo "ERROR: No PROJECT.md found. Run /gsd-new-project first."; exit 1; }
35
35
  ```
36
36
  </step>
37
37
 
@@ -83,15 +83,15 @@ Roadmap created:
83
83
 
84
84
  **Phase 1: [Name]** — [Goal from ROADMAP.md]
85
85
 
86
- `/gsd:plan-phase 1`
86
+ `/gsd-plan-phase 1`
87
87
 
88
- *`/clear` first → fresh context window*
88
+ *`/new` first → fresh context window*
89
89
 
90
90
  ---
91
91
 
92
92
  **Also available:**
93
- - `/gsd:discuss-phase 1` — gather context first
94
- - `/gsd:research-phase 1` — investigate unknowns
93
+ - `/gsd-discuss-phase 1` — gather context first
94
+ - `/gsd-research-phase 1` — investigate unknowns
95
95
  - Review roadmap
96
96
 
97
97
  ---
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:debug
2
+ name: gsd-debug
3
3
  description: Systematic debugging with persistent state across context resets
4
4
  argument-hint: [issue description]
5
5
  allowed-tools:
@@ -13,7 +13,7 @@ allowed-tools:
13
13
  ---
14
14
 
15
15
  <objective>
16
- Debug issues using scientific method with a persistent debug document that survives `/clear`.
16
+ Debug issues using scientific method with a persistent debug document that survives `/new`.
17
17
 
18
18
  If resuming (no arguments and active session exists): pick up where you left off.
19
19
  If starting new: gather symptoms, then investigate autonomously.
@@ -25,7 +25,7 @@ If starting new: gather symptoms, then investigate autonomously.
25
25
  </execution_context>
26
26
 
27
27
  <context>
28
- User's issue: ($ARGUMENTS)
28
+ User's issue: $ARGUMENTS
29
29
 
30
30
  Check for active debug sessions:
31
31
  ```bash
@@ -45,7 +45,7 @@ Follow the workflow in @~/.config/opencode/get-shit-done/workflows/debug.md
45
45
  5. **Fix and verify** - Minimal fix, verify against original symptoms
46
46
  6. **Archive** - Move to `.planning/debug/resolved/`
47
47
 
48
- **Key principle:** The DEBUG.md is your memory. Update it constantly. It survives `/clear`.
48
+ **Key principle:** The DEBUG.md is your memory. Update it constantly. It survives `/new`.
49
49
  </process>
50
50
 
51
51
  <success_criteria>
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:discuss-milestone
2
+ name: gsd-discuss-milestone
3
3
  description: Gather context for next milestone through adaptive questioning
4
4
  ---
5
5
 
@@ -7,7 +7,7 @@ description: Gather context for next milestone through adaptive questioning
7
7
  Help you figure out what to build in the next milestone through collaborative thinking.
8
8
 
9
9
  Purpose: After completing a milestone, explore what features you want to add, improve, or fix. Features first — scope and phases derive from what you want to build.
10
- Output: Context gathered, then routes to /gsd:new-milestone
10
+ Output: Context gathered, then routes to /gsd-new-milestone
11
11
  </objective>
12
12
 
13
13
  <execution_context>
@@ -33,7 +33,7 @@ Output: Context gathered, then routes to /gsd:new-milestone
33
33
  - Use question to dig into features they mention
34
34
  - Use question to help them articulate what matters most
35
35
  - Use question for decision gate (ready / ask more / let me add context)
36
- 4. Hand off to /gsd:new-milestone with gathered context
36
+ 4. Hand off to /gsd-new-milestone with gathered context
37
37
 
38
38
  **CRITICAL: ALL questions use question. Never ask inline text questions.**
39
39
  </process>
@@ -43,5 +43,5 @@ Output: Context gathered, then routes to /gsd:new-milestone
43
43
  - Project state loaded and presented
44
44
  - Previous milestone context summarized
45
45
  - Milestone scope gathered through adaptive questioning
46
- - Context handed off to /gsd:new-milestone
46
+ - Context handed off to /gsd-new-milestone
47
47
  </success_criteria>
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:discuss-phase
2
+ name: gsd-discuss-phase
3
3
  description: Gather phase context through adaptive questioning before planning
4
4
  argument-hint: "[phase]"
5
5
  ---
@@ -18,7 +18,7 @@ Output: {phase}-CONTEXT.md capturing the user's vision for the phase
18
18
  </execution_context>
19
19
 
20
20
  <context>
21
- Phase number: ($ARGUMENTS) (required)
21
+ Phase number: $ARGUMENTS (required)
22
22
 
23
23
  **Load project state first:**
24
24
  @.planning/STATE.md
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:execute-phase
2
+ name: gsd-execute-phase
3
3
  description: Execute all plans in a phase with wave-based parallelization
4
4
  argument-hint: "<phase-number>"
5
5
  allowed-tools:
@@ -28,7 +28,7 @@ Context budget: ~15% orchestrator, 100% fresh per subagent.
28
28
  </execution_context>
29
29
 
30
30
  <context>
31
- Phase: ($ARGUMENTS)
31
+ Phase: $ARGUMENTS
32
32
 
33
33
  @.planning/ROADMAP.md
34
34
  @.planning/STATE.md
@@ -64,8 +64,8 @@ Phase: ($ARGUMENTS)
64
64
  - Update ROADMAP.md
65
65
 
66
66
  6. **Offer next steps**
67
- - More phases → `/gsd:plan-phase {next}`
68
- - Milestone complete → `/gsd:complete-milestone`
67
+ - More phases → `/gsd-plan-phase {next}`
68
+ - Milestone complete → `/gsd-complete-milestone`
69
69
  </process>
70
70
 
71
71
  <wave_execution>
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: gsd:execute-plan
2
+ name: gsd-execute-plan
3
3
  description: Execute a PLAN.md file
4
4
  argument-hint: "[path-to-PLAN.md]"
5
5
  allowed-tools:
@@ -25,7 +25,7 @@ Context budget: ~15% orchestrator, 100% fresh for subagent.
25
25
  </execution_context>
26
26
 
27
27
  <context>
28
- Plan path: ($ARGUMENTS)
28
+ Plan path: $ARGUMENTS
29
29
 
30
30
  @.planning/STATE.md
31
31
  @.planning/config.json (if exists)
@@ -33,7 +33,7 @@ Plan path: ($ARGUMENTS)
33
33
 
34
34
  <process>
35
35
  1. **Validate plan exists**
36
- - Confirm file at ($ARGUMENTS) exists
36
+ - Confirm file at $ARGUMENTS exists
37
37
  - Error if not found: "Plan not found: {path}"
38
38
 
39
39
  2. **Check if already executed**