opencode-orchestrator 0.9.14 → 0.9.17

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -4
  2. package/package.json +2 -2
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
- console.log(`[orchestrator] v${PLUGIN_VERSION} loaded`);
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.14",
5
+ "version": "0.9.17",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -72,4 +72,4 @@
72
72
  "typescript": "^5.7.0",
73
73
  "vitest": "^4.0.17"
74
74
  }
75
- }
75
+ }