opencode-orchestrator 0.1.51 → 0.1.53

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.
Binary file
Binary file
package/dist/index.js CHANGED
@@ -671,22 +671,33 @@ var OrchestratorPlugin = async (input) => {
671
671
  grep_search: grepSearchTool(directory),
672
672
  glob_search: globSearchTool(directory)
673
673
  },
674
- // Register commands so they appear in OpenCode's autocomplete menu
674
+ // Register commands and agents so they appear in OpenCode's UI
675
675
  config: async (config) => {
676
676
  const existingCommands = config.command ?? {};
677
+ const existingAgents = config.agent ?? {};
677
678
  const orchestratorCommands = {};
678
679
  for (const [name, cmd] of Object.entries(COMMANDS)) {
679
680
  orchestratorCommands[name] = {
680
681
  description: cmd.description,
681
682
  template: cmd.template,
682
683
  argumentHint: cmd.argumentHint
683
- // Crucial for autocomplete menu
684
684
  };
685
685
  }
686
+ const orchestratorAgents = {
687
+ orchestrator: {
688
+ name: "Orchestrator",
689
+ description: "Mission Commander - 6-agent collaborative AI for complex tasks",
690
+ systemPrompt: AGENTS.orchestrator.systemPrompt
691
+ }
692
+ };
686
693
  config.command = {
687
694
  ...orchestratorCommands,
688
695
  ...existingCommands
689
696
  };
697
+ config.agent = {
698
+ ...orchestratorAgents,
699
+ ...existingAgents
700
+ };
690
701
  },
691
702
  "chat.message": async (input2, output) => {
692
703
  const parts = output.parts;
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.1.51",
5
+ "version": "0.1.53",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {