gsd-opencode 1.33.1 → 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.
|
@@ -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
|
-
|
|
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
|
-
|
|
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.
|