gsd-opencode 1.20.0 → 1.20.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.
@@ -25,7 +25,7 @@ If the prompt contains a `<files_to_read>` block, you MUST use the `read` tool t
25
25
  <project_context>
26
26
  Before executing, discover project context:
27
27
 
28
- **Project instructions:** read `./OPENCODE.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
28
+ **Project instructions:** read `./AGENTS.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
29
29
 
30
30
  **Project skills:** Check `.agents/skills/` directory if it exists:
31
31
  1. List available skills (subdirectories)
@@ -32,7 +32,7 @@ If the prompt contains a `<files_to_read>` block, you MUST use the `read` tool t
32
32
  <project_context>
33
33
  Before researching, discover project context:
34
34
 
35
- **Project instructions:** read `./OPENCODE.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
35
+ **Project instructions:** read `./AGENTS.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
36
36
 
37
37
  **Project skills:** Check `.agents/skills/` directory if it exists:
38
38
  1. List available skills (subdirectories)
@@ -33,7 +33,7 @@ You are NOT the executor or verifier — you verify plans WILL work before execu
33
33
  <project_context>
34
34
  Before verifying, discover project context:
35
35
 
36
- **Project instructions:** read `./OPENCODE.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
36
+ **Project instructions:** read `./AGENTS.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
37
37
 
38
38
  **Project skills:** Check `.agents/skills/` directory if it exists:
39
39
  1. List available skills (subdirectories)
@@ -38,7 +38,7 @@ If the prompt contains a `<files_to_read>` block, you MUST use the `read` tool t
38
38
  <project_context>
39
39
  Before planning, discover project context:
40
40
 
41
- **Project instructions:** read `./OPENCODE.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
41
+ **Project instructions:** read `./AGENTS.md` if it exists in the working directory. Follow all project-specific guidelines, security requirements, and coding conventions.
42
42
 
43
43
  **Project skills:** Check `.agents/skills/` directory if it exists:
44
44
  1. List available skills (subdirectories)
@@ -136,7 +136,7 @@ write to: .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
136
136
  ```
137
137
  task(
138
138
  prompt="First, read ~/.config/opencode/agents/gsd-phase-researcher.md for your role and instructions.\n\n" + filled_prompt,
139
- subagent_type="task",
139
+ subagent_type="general",
140
140
  model="{researcher_model}",
141
141
  description="Research Phase {phase}"
142
142
  )
@@ -172,7 +172,7 @@ Continue research for Phase {phase_number}: {phase_name}
172
172
  ```
173
173
  task(
174
174
  prompt="First, read ~/.config/opencode/agents/gsd-phase-researcher.md for your role and instructions.\n\n" + continuation_prompt,
175
- subagent_type="task",
175
+ subagent_type="general",
176
176
  model="{researcher_model}",
177
177
  description="Continue research Phase {phase}"
178
178
  )
@@ -186,7 +186,7 @@ get-shit-done/
186
186
 
187
187
  **Documentation:**
188
188
  - `README.md` - User-facing installation and usage guide
189
- - `OPENCODE.md` - Instructions for OpenCode when working in this repo
189
+ - `AGENTS.md` - Instructions for OpenCode when working in this repo
190
190
 
191
191
  ## Naming Conventions
192
192
 
@@ -80,7 +80,7 @@ For each gap, fill the debug-subagent-prompt template and spawn:
80
80
  ```
81
81
  task(
82
82
  prompt=filled_debug_subagent_prompt + "\n\n<files_to_read>\n- {phase_dir}/{phase_num}-UAT.md\n- .planning/STATE.md\n</files_to_read>",
83
- subagent_type="task",
83
+ subagent_type="general",
84
84
  description="Debug: {truth_short}"
85
85
  )
86
86
  ```
@@ -488,7 +488,7 @@ task(
488
488
  6. Return: PHASE COMPLETE (full pipeline success), PLANNING COMPLETE (planning done but execute failed/skipped), PLANNING INCONCLUSIVE, or GAPS FOUND
489
489
  </instructions>
490
490
  ",
491
- subagent_type="task",
491
+ subagent_type="general",
492
492
  description="Plan Phase ${PHASE}"
493
493
  )
494
494
  ```
@@ -121,7 +121,7 @@ Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`
121
121
  - {phase_dir}/{plan_file} (Plan)
122
122
  - .planning/STATE.md (State)
123
123
  - .planning/config.json (Config, if exists)
124
- - ./OPENCODE.md (Project instructions, if exists — follow project-specific guidelines and coding conventions)
124
+ - ./AGENTS.md (Project instructions, if exists — follow project-specific guidelines and coding conventions)
125
125
  - .agents/skills/ (Project skills, if exists — list skills, read SKILL.md for each, follow relevant rules during implementation)
126
126
  </files_to_read>
127
127
 
@@ -582,7 +582,7 @@ Your STACK.md feeds into roadmap creation. Be prescriptive:
582
582
  write to: .planning/research/STACK.md
583
583
  Use template: ~/.config/opencode/get-shit-done/templates/research-project/STACK.md
584
584
  </output>
585
- ", subagent_type="task", model="{researcher_model}", description="Stack research")
585
+ ", subagent_type="general", model="{researcher_model}", description="Stack research")
586
586
 
587
587
  task(prompt="First, read ~/.config/opencode/agents/gsd-project-researcher.md for your role and instructions.
588
588
 
@@ -622,7 +622,7 @@ Your FEATURES.md feeds into requirements definition. Categorize clearly:
622
622
  write to: .planning/research/FEATURES.md
623
623
  Use template: ~/.config/opencode/get-shit-done/templates/research-project/FEATURES.md
624
624
  </output>
625
- ", subagent_type="task", model="{researcher_model}", description="Features research")
625
+ ", subagent_type="general", model="{researcher_model}", description="Features research")
626
626
 
627
627
  task(prompt="First, read ~/.config/opencode/agents/gsd-project-researcher.md for your role and instructions.
628
628
 
@@ -662,7 +662,7 @@ Your ARCHITECTURE.md informs phase structure in roadmap. Include:
662
662
  write to: .planning/research/ARCHITECTURE.md
663
663
  Use template: ~/.config/opencode/get-shit-done/templates/research-project/ARCHITECTURE.md
664
664
  </output>
665
- ", subagent_type="task", model="{researcher_model}", description="Architecture research")
665
+ ", subagent_type="general", model="{researcher_model}", description="Architecture research")
666
666
 
667
667
  task(prompt="First, read ~/.config/opencode/agents/gsd-project-researcher.md for your role and instructions.
668
668
 
@@ -702,7 +702,7 @@ Your PITFALLS.md prevents mistakes in roadmap/planning. For each pitfall:
702
702
  write to: .planning/research/PITFALLS.md
703
703
  Use template: ~/.config/opencode/get-shit-done/templates/research-project/PITFALLS.md
704
704
  </output>
705
- ", subagent_type="task", model="{researcher_model}", description="Pitfalls research")
705
+ ", subagent_type="general", model="{researcher_model}", description="Pitfalls research")
706
706
  ```
707
707
 
708
708
  After all 4 agents complete, spawn synthesizer to create SUMMARY.md:
@@ -105,7 +105,7 @@ Answer: "What do I need to know to PLAN this phase well?"
105
105
  **Phase description:** {phase_description}
106
106
  **Phase requirement IDs (MUST address):** {phase_req_ids}
107
107
 
108
- **Project instructions:** read ./OPENCODE.md if exists — follow project-specific guidelines
108
+ **Project instructions:** read ./AGENTS.md if exists — follow project-specific guidelines
109
109
  **Project skills:** Check .agents/skills/ directory (if exists) — read SKILL.md files, research should account for project skill patterns
110
110
  </additional_context>
111
111
 
@@ -117,7 +117,7 @@ write to: {phase_dir}/{phase_num}-RESEARCH.md
117
117
  ```
118
118
  task(
119
119
  prompt="First, read ~/.config/opencode/agents/gsd-phase-researcher.md for your role and instructions.\n\n" + research_prompt,
120
- subagent_type="task",
120
+ subagent_type="general",
121
121
  model="{researcher_model}",
122
122
  description="Research Phase {phase}"
123
123
  )
@@ -205,7 +205,7 @@ Planner prompt:
205
205
 
206
206
  **Phase requirement IDs (every ID MUST appear in a plan's `requirements` field):** {phase_req_ids}
207
207
 
208
- **Project instructions:** read ./OPENCODE.md if exists — follow project-specific guidelines
208
+ **Project instructions:** read ./AGENTS.md if exists — follow project-specific guidelines
209
209
  **Project skills:** Check .agents/skills/ directory (if exists) — read SKILL.md files, plans should account for project skill rules
210
210
  </planning_context>
211
211
 
@@ -230,7 +230,7 @@ Output consumed by /gsd-execute-phase. Plans need:
230
230
  ```
231
231
  task(
232
232
  prompt="First, read ~/.config/opencode/agents/gsd-planner.md for your role and instructions.\n\n" + filled_prompt,
233
- subagent_type="task",
233
+ subagent_type="general",
234
234
  model="{planner_model}",
235
235
  description="Plan Phase {phase}"
236
236
  )
@@ -270,7 +270,7 @@ Checker prompt:
270
270
 
271
271
  **Phase requirement IDs (MUST ALL be covered):** {phase_req_ids}
272
272
 
273
- **Project instructions:** read ./OPENCODE.md if exists — verify plans honor project guidelines
273
+ **Project instructions:** read ./AGENTS.md if exists — verify plans honor project guidelines
274
274
  **Project skills:** Check .agents/skills/ directory (if exists) — verify plans account for project skill rules
275
275
  </verification_context>
276
276
 
@@ -327,7 +327,7 @@ Return what changed.
327
327
  ```
328
328
  task(
329
329
  prompt="First, read ~/.config/opencode/agents/gsd-planner.md for your role and instructions.\n\n" + revision_prompt,
330
- subagent_type="task",
330
+ subagent_type="general",
331
331
  model="{planner_model}",
332
332
  description="Revise Phase {phase} plans"
333
333
  )
@@ -396,7 +396,7 @@ task(
396
396
  7. Do NOT use the skill tool or /gsd- commands
397
397
  </instructions>
398
398
  ",
399
- subagent_type="task",
399
+ subagent_type="general",
400
400
  description="Execute Phase ${PHASE}"
401
401
  )
402
402
  ```
@@ -98,7 +98,7 @@ task(
98
98
 
99
99
  <files_to_read>
100
100
  - .planning/STATE.md (Project State)
101
- - ./OPENCODE.md (if exists — follow project-specific guidelines)
101
+ - ./AGENTS.md (if exists — follow project-specific guidelines)
102
102
  </files_to_read>
103
103
 
104
104
  **Project skills:** Check .agents/skills/ directory (if exists) — read SKILL.md files, plans should account for project skill rules
@@ -223,7 +223,7 @@ Return what changed.
223
223
  ```
224
224
  task(
225
225
  prompt="First, read ~/.config/opencode/agents/gsd-planner.md for your role and instructions.\n\n" + revision_prompt,
226
- subagent_type="task",
226
+ subagent_type="general",
227
227
  model="{planner_model}",
228
228
  description="Revise quick plan: ${DESCRIPTION}"
229
229
  )
@@ -251,7 +251,7 @@ Execute quick task ${next_num}.
251
251
  <files_to_read>
252
252
  - ${QUICK_DIR}/${next_num}-PLAN.md (Plan)
253
253
  - .planning/STATE.md (Project state)
254
- - ./OPENCODE.md (Project instructions, if exists)
254
+ - ./AGENTS.md (Project instructions, if exists)
255
255
  - .agents/skills/ (Project skills, if exists — list skills, read SKILL.md for each, follow relevant rules during implementation)
256
256
  </files_to_read>
257
257
 
@@ -128,7 +128,7 @@ Your custom files in other locations are preserved:
128
128
  - Custom commands not in `commands/gsd/` ✓
129
129
  - Custom agents not prefixed with `gsd-` ✓
130
130
  - Custom hooks ✓
131
- - Your OPENCODE.md files ✓
131
+ - Your AGENTS.md files ✓
132
132
 
133
133
  If you've modified any GSD files directly, they'll be automatically backed up to `gsd-local-patches/` and can be reapplied with `/gsd-reapply-patches` after the update.
134
134
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-opencode",
3
- "version": "1.20.0",
3
+ "version": "1.20.2",
4
4
  "description": "GSD-OpenCode distribution manager - install, verify, and maintain your GSD-OpenCode installation",
5
5
  "type": "module",
6
6
  "main": "bin/gsd.js",