opencode-orchestrator 0.5.18 → 0.5.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -16472,17 +16472,20 @@ var OrchestratorPlugin = async (input) => {
16472
16472
  [AGENT_NAMES.COMMANDER]: {
16473
16473
  name: AGENT_NAMES.COMMANDER,
16474
16474
  description: "Autonomous orchestrator - executes until mission complete",
16475
- systemPrompt: AGENTS.commander.systemPrompt
16475
+ mode: "primary",
16476
+ prompt: AGENTS.commander.systemPrompt,
16477
+ thinking: { type: "enabled", budgetTokens: 32e3 },
16478
+ color: "#FF6B6B"
16476
16479
  },
16477
16480
  [AGENT_NAMES.LIBRARIAN]: {
16478
16481
  name: AGENT_NAMES.LIBRARIAN,
16479
16482
  description: "Documentation research specialist - reduces hallucination",
16480
- systemPrompt: AGENTS.librarian?.systemPrompt || ""
16483
+ prompt: AGENTS.librarian?.systemPrompt || ""
16481
16484
  },
16482
16485
  [AGENT_NAMES.RESEARCHER]: {
16483
16486
  name: AGENT_NAMES.RESEARCHER,
16484
16487
  description: "Pre-task investigation - gathers all info before implementation",
16485
- systemPrompt: AGENTS.researcher?.systemPrompt || ""
16488
+ prompt: AGENTS.researcher?.systemPrompt || ""
16486
16489
  }
16487
16490
  };
16488
16491
  config2.command = { ...orchestratorCommands, ...existingCommands };
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.18",
5
+ "version": "0.5.19",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -57,8 +57,8 @@
57
57
  "dev:status": "echo '=== NVM ===' && ls -la $(npm root -g)/opencode-orchestrator 2>/dev/null || echo 'Not linked'; echo '=== Homebrew ===' && ls -la /opt/homebrew/lib/node_modules/opencode-orchestrator 2>/dev/null || echo 'Not linked'",
58
58
  "dev:test": "node dist/scripts/postinstall.js && echo '---' && node dist/scripts/preuninstall.js",
59
59
  "dev:cache": "npm run build && rm -rf ~/.cache/opencode/node_modules/opencode-orchestrator && cp -r . ~/.cache/opencode/node_modules/opencode-orchestrator && echo 'SUCCESS: Copied to OpenCode cache. Restart OpenCode.'",
60
- "reset:local": "npm run dev:unlink || true && npm uninstall -g opencode-orchestrator 2>/dev/null; /opt/homebrew/bin/npm uninstall -g opencode-orchestrator 2>/dev/null; brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode && echo '=== Clean done ===' && brew install opencode && npm run dev:link && echo '=== Reset (Dev) complete ==='",
61
- "reset:prod": "npm run dev:unlink || true && npm uninstall -g opencode-orchestrator 2>/dev/null; /opt/homebrew/bin/npm uninstall -g opencode-orchestrator 2>/dev/null; brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode && echo '=== Clean done ===' && brew install opencode && /opt/homebrew/bin/npm install -g opencode-orchestrator && echo '=== Reset (Prod) complete ==='"
60
+ "reset:local": "brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode ~/.cache/opencode/node_modules/opencode-orchestrator && echo '=== Clean done ===' && brew install opencode && echo '{\"plugin\": [\"opencode-orchestrator\"], \"$schema\": \"https://opencode.ai/config.json\"}' > ~/.config/opencode/opencode.json && echo '=== Reset (Dev) complete. Run: opencode ==='",
61
+ "reset:prod": "brew uninstall opencode 2>/dev/null; rm -rf ~/.config/opencode ~/.opencode ~/.local/share/opencode ~/.cache/opencode/node_modules/opencode-orchestrator && echo '=== Clean done ===' && brew install opencode && echo '{\"plugin\": [\"opencode-orchestrator\"], \"$schema\": \"https://opencode.ai/config.json\"}' > ~/.config/opencode/opencode.json && echo '=== Reset (Prod) complete. Run: opencode ==='"
62
62
  },
63
63
  "dependencies": {
64
64
  "@opencode-ai/plugin": "^1.1.1",