opencode-orchestrator 0.9.16 β 0.9.19
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/README.md +27 -35
- package/dist/index.js +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,38 +54,34 @@ Then in OpenCode:
|
|
|
54
54
|
|
|
55
55
|
## ποΈ How It Works
|
|
56
56
|
|
|
57
|
+
> **β‘ DELEGATE. PARALLELIZE. SEAL.** β One command unleashes full autonomous execution.
|
|
58
|
+
|
|
57
59
|
```
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
ββββββββββββ΄βββββββββββ
|
|
84
|
-
β TODO 100%? β
|
|
85
|
-
β Issues = 0? β
|
|
86
|
-
ββββββββββββ¬βββββββββββ
|
|
87
|
-
No β β Yes
|
|
88
|
-
β»οΈ LOOP ποΈ SEALED
|
|
60
|
+
/task "Build REST API"
|
|
61
|
+
β
|
|
62
|
+
βββββββββββββββββ§ββββββββββββββββ
|
|
63
|
+
β π― COMMANDER β Delegate+Loop β
|
|
64
|
+
βββββββββββββββββ€ββββββββββββββββ
|
|
65
|
+
β
|
|
66
|
+
βββββββββββββββββΌββββββββββββββββ
|
|
67
|
+
βΌ βΌ βΌ
|
|
68
|
+
βββββββββ βββββββββ βββββββββ
|
|
69
|
+
βPLANNERβ βWORKER β βWORKER β β π₯ 50 PARALLEL
|
|
70
|
+
βplan.mdβ βauth.tsβ βapi.ts β SESSIONS
|
|
71
|
+
βββββββββ βββββββββ βββββββββ
|
|
72
|
+
β β β
|
|
73
|
+
βββββββββββββββββΌββββββββββββββββ
|
|
74
|
+
βΌ
|
|
75
|
+
βββββββββββββββββ§ββββββββββββββββ
|
|
76
|
+
β β
REVIEWER β Verify β
|
|
77
|
+
βββββββββββββββββ€ββββββββββββββββ
|
|
78
|
+
β
|
|
79
|
+
ββββββββββ΄βββββββββ
|
|
80
|
+
β TODO 100%? β
|
|
81
|
+
β Issues = 0? β
|
|
82
|
+
ββββββββββ¬βββββββββ
|
|
83
|
+
No β β Yes
|
|
84
|
+
β»οΈ LOOP ποΈ SEALED
|
|
89
85
|
```
|
|
90
86
|
|
|
91
87
|
### π Key Systems
|
|
@@ -151,7 +147,3 @@ MIT License. [LICENSE](LICENSE)
|
|
|
151
147
|
|
|
152
148
|
---
|
|
153
149
|
|
|
154
|
-
<div align="center">
|
|
155
|
-
<h3>π v0.9.7 β "Relentless execution until absolute success."</h3>
|
|
156
|
-
<p><i>Multi-agent. Parallel. Non-blocking. Self-healing. Enterprise-grade.</i></p>
|
|
157
|
-
</div>
|
package/dist/index.js
CHANGED
|
@@ -18642,8 +18642,6 @@ function createConfigHandler() {
|
|
|
18642
18642
|
config2.command = { ...existingCommands, ...orchestratorCommands };
|
|
18643
18643
|
config2.agent = { ...processedExistingAgents, ...orchestratorAgents };
|
|
18644
18644
|
config2.default_agent = AGENT_NAMES.COMMANDER;
|
|
18645
|
-
console.log(`[orchestrator] Registered agents: ${Object.keys(orchestratorAgents).join(", ")}`);
|
|
18646
|
-
console.log(`[orchestrator] Default agent: ${AGENT_NAMES.COMMANDER}`);
|
|
18647
18645
|
};
|
|
18648
18646
|
}
|
|
18649
18647
|
|
|
@@ -19091,8 +19089,7 @@ var require2 = createRequire(import.meta.url);
|
|
|
19091
19089
|
var { version: PLUGIN_VERSION } = require2("../package.json");
|
|
19092
19090
|
var OrchestratorPlugin = async (input) => {
|
|
19093
19091
|
const { directory, client } = input;
|
|
19094
|
-
|
|
19095
|
-
console.log(`[orchestrator] Log file: ${getLogPath()}`);
|
|
19092
|
+
log2(`[orchestrator] v${PLUGIN_VERSION} loaded, log: ${getLogPath()}`);
|
|
19096
19093
|
log2("[index.ts] Plugin initialized", { version: PLUGIN_VERSION, directory });
|
|
19097
19094
|
initToastClient(client);
|
|
19098
19095
|
const taskToastManager = initTaskToastManager(client);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
3
|
"displayName": "OpenCode Orchestrator",
|
|
4
4
|
"description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
|
|
5
|
-
"version": "0.9.
|
|
5
|
+
"version": "0.9.19",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|