opencode-orchestrator 0.5.21 → 0.5.22
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16495,8 +16495,10 @@ var OrchestratorPlugin = async (input) => {
|
|
|
16495
16495
|
color: "#45B7D1"
|
|
16496
16496
|
}
|
|
16497
16497
|
};
|
|
16498
|
-
config2.command = { ...
|
|
16499
|
-
config2.agent = { ...
|
|
16498
|
+
config2.command = { ...existingCommands, ...orchestratorCommands };
|
|
16499
|
+
config2.agent = { ...existingAgents, ...orchestratorAgents };
|
|
16500
|
+
console.log(`[orchestrator] Registered agents: ${Object.keys(orchestratorAgents).join(", ")}`);
|
|
16501
|
+
console.log(`[orchestrator] Commander prompt length: ${(AGENTS.commander.systemPrompt || "").length}`);
|
|
16500
16502
|
},
|
|
16501
16503
|
// -----------------------------------------------------------------
|
|
16502
16504
|
// chat.message hook - runs when user sends a message
|
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.5.
|
|
5
|
+
"version": "0.5.22",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|