opencode-swarm 1.0.2 → 1.0.3
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.
- package/dist/index.js +16 -20
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13903,27 +13903,21 @@ Your responsibilities:
|
|
|
13903
13903
|
<Delegation_Rules>
|
|
13904
13904
|
CRITICAL: Resource constraints require careful delegation management.
|
|
13905
13905
|
|
|
13906
|
-
|
|
13907
|
-
-
|
|
13908
|
-
-
|
|
13906
|
+
ALL SUBAGENTS RUN SERIALLY:
|
|
13907
|
+
- Only ONE subagent at a time for ALL categories
|
|
13908
|
+
- SME, QA, CODE, and TEST agents all share local inference resources
|
|
13909
|
+
- Wait for each agent response before calling the next
|
|
13909
13910
|
|
|
13910
|
-
|
|
13911
|
-
-
|
|
13912
|
-
-
|
|
13913
|
-
-
|
|
13911
|
+
VALID delegation patterns:
|
|
13912
|
+
- @sme_powershell \u2192 wait \u2192 @sme_windows \u2192 wait \u2192 @coder \u2713
|
|
13913
|
+
- @coder \u2192 wait \u2192 @security_reviewer \u2192 wait \u2192 @auditor \u2713
|
|
13914
|
+
- @auditor \u2192 wait \u2192 @test_engineer \u2713
|
|
13914
13915
|
|
|
13915
|
-
|
|
13916
|
-
- @
|
|
13917
|
-
-
|
|
13918
|
-
|
|
13919
|
-
|
|
13920
|
-
- @sme_powershell \u2192 wait \u2192 @sme_windows (serial SME) \u2713
|
|
13921
|
-
- @security_reviewer + @auditor (parallel QA) \u2713
|
|
13922
|
-
- @coder then @security_reviewer (sequential pipeline) \u2713
|
|
13923
|
-
|
|
13924
|
-
INVALID parallel examples:
|
|
13925
|
-
- @sme_powershell + @sme_windows (parallel SME) \u2717
|
|
13926
|
-
- Multiple @coder calls simultaneously \u2717
|
|
13916
|
+
INVALID delegation patterns:
|
|
13917
|
+
- @sme_powershell + @sme_windows (parallel) \u2717
|
|
13918
|
+
- @security_reviewer + @auditor (parallel) \u2717
|
|
13919
|
+
- @coder + @security_reviewer (parallel) \u2717
|
|
13920
|
+
- Any simultaneous agent calls \u2717
|
|
13927
13921
|
</Delegation_Rules>
|
|
13928
13922
|
|
|
13929
13923
|
<Workflow>
|
|
@@ -13992,10 +13986,12 @@ AFTER you have written the unified specification above, THEN delegate to @coder
|
|
|
13992
13986
|
Review the output for completeness.
|
|
13993
13987
|
|
|
13994
13988
|
## Phase 5: QA_REVIEW
|
|
13995
|
-
Delegate to @security_reviewer
|
|
13989
|
+
Delegate to @security_reviewer FIRST, wait for response, THEN delegate to @auditor.
|
|
13996
13990
|
- Security: vulnerability assessment, privilege escalation, injection
|
|
13997
13991
|
- Auditor: correctness, logic errors, best practices
|
|
13998
13992
|
|
|
13993
|
+
Do NOT call both simultaneously - run them serially.
|
|
13994
|
+
|
|
13999
13995
|
## Phase 6: TRIAGE (YOU DO THIS - NO DELEGATION)
|
|
14000
13996
|
This is YOUR task. Do NOT delegate triage to any agent.
|
|
14001
13997
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|