gsd-opencode 1.33.0 → 1.33.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.
@@ -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
  ---
@@ -319,11 +319,7 @@ UI_SPEC_FILE=$(ls "${PHASE_DIR}"/*-UI-SPEC.md 2>/dev/null | head -1)
319
319
  **If `INTERACTIVE` is set:** Dispatch plan as a background agent to keep the main context lean. While plan runs, the workflow can immediately start discussing the next phase (see step 4).
320
320
 
321
321
  ```
322
- Agent(
323
- description="Plan phase ${PHASE_NUM}: ${PHASE_NAME}",
324
- run_in_background=true,
325
- prompt="Run plan-phase for phase ${PHASE_NUM}: skill(skill=\"gsd:plan-phase\", args=\"${PHASE_NUM}\")"
326
- )
322
+ @gsd-plan-phase "Run plan-phase for phase ${PHASE_NUM}: skill(skill=\"gsd-plan-phase\", args=\"${PHASE_NUM}\")"
327
323
  ```
328
324
 
329
325
  Store the agent task_id. After discuss for the next phase completes (or if no next phase), wait for the plan agent to finish before proceeding to execute.
@@ -341,11 +337,7 @@ Verify plan produced output — re-run `init phase-op` and check `has_plans`. If
341
337
  **If `INTERACTIVE` is set:** Wait for the plan agent to complete (if not already), verify plans exist, then dispatch execute as a background agent:
342
338
 
343
339
  ```
344
- Agent(
345
- description="Execute phase ${PHASE_NUM}: ${PHASE_NAME}",
346
- run_in_background=true,
347
- prompt="Run execute-phase for phase ${PHASE_NUM}: skill(skill=\"gsd:execute-phase\", args=\"${PHASE_NUM} --no-transition\")"
348
- )
340
+ @gsd-execute-phase "Run execute-phase for phase ${PHASE_NUM}: skill(skill=\"gsd-execute-phase\", args=\"${PHASE_NUM} --no-transition\")"
349
341
  ```
350
342
 
351
343
  Store the agent task_id. The workflow can now start discussing the next phase while this phase executes in the background. Before starting post-execution routing for this phase, wait for the execute agent to complete.
@@ -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.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",