gsd-opencode 1.33.0 → 1.33.1

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.
@@ -2,7 +2,6 @@
2
2
  name: gsd-set-profile
3
3
  description: Switch model profile for GSD agents (simple/smart/genius/inherit)
4
4
  argument-hint: <profile (simple|smart|genius|inherit)>
5
- model: haiku
6
5
  permissions:
7
6
  bash: true
8
7
  ---
@@ -93,7 +93,7 @@ For: Choosing between options, new external integration.
93
93
 
94
94
  ```
95
95
  For each library/framework:
96
- - mcp__context7__resolve-library-id
96
+ - mcp__context7__resolve-library-id
97
97
  - mcp__context7__get-library-docs (mode: "code" for API, "info" for concepts)
98
98
  ```
99
99
 
@@ -310,7 +310,7 @@ Parse the subagent's response. Extract:
310
310
  If research topics were flagged, spawn a general research agent:
311
311
 
312
312
  ```
313
- task(subagent_type="general", prompt="""
313
+ @general """
314
314
  Research the following topics for Phase {PHASE}: {phase_name}.
315
315
 
316
316
  Topics needing research:
@@ -323,7 +323,7 @@ For each topic, return:
323
323
 
324
324
  Use Context7 (resolve-library-id then query-docs) for library-specific questions.
325
325
  Use websearch for ecosystem/best-practice questions.
326
- """)
326
+ """
327
327
  ```
328
328
 
329
329
  Merge findings back into assumptions:
@@ -551,10 +551,9 @@ After user selects gray areas in present_gray_areas, spawn parallel research age
551
551
 
552
552
  1. Display brief status: "Researching {N} areas..."
553
553
 
554
- 2. For EACH user-selected gray area, spawn a task() in parallel:
554
+ 2. For EACH user-selected gray area, spawn a relevant subagent using `@subagent prompt` syntax in parallel:
555
555
 
556
- task(
557
- prompt="First, read @$HOME/.config/opencode/agents/gsd-advisor-researcher.md for your role and instructions.
556
+ @gsd-advisor-researcher "First, read @$HOME/.config/opencode/agents/gsd-advisor-researcher.md for your role and instructions.
558
557
 
559
558
  <gray_area>{area_name}: {area_description from gray area identification}</gray_area>
560
559
  <phase_context>{phase_goal and description from ROADMAP.md}</phase_context>
@@ -562,13 +561,9 @@ After user selects gray areas in present_gray_areas, spawn parallel research age
562
561
  <calibration_tier>{resolved calibration tier: full_maturity | standard | minimal_decisive}</calibration_tier>
563
562
 
564
563
  Research this gray area and return a structured comparison table with rationale.
565
- ${AGENT_SKILLS_ADVISOR}",
566
- subagent_type="general",
567
- model="{ADVISOR_MODEL}",
568
- description="Research: {area_name}"
569
- )
564
+ ${AGENT_SKILLS_ADVISOR}"
570
565
 
571
- All task() calls spawn simultaneously — do NOT wait for one before starting the next.
566
+ All subagents spawn simultaneously — do NOT wait for one before starting the next.
572
567
 
573
568
  3. After ALL agents return, SYNTHESIZE results before presenting:
574
569
  For each agent's return:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-opencode",
3
- "version": "1.33.0",
3
+ "version": "1.33.1",
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",