opencode-orchestrator 0.6.7 → 0.6.8

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 +33 -21
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -13845,31 +13845,43 @@ var COMMANDS = {
13845
13845
  argumentHint: '"complex task to plan"'
13846
13846
  },
13847
13847
  "agents": {
13848
- description: "Show the 5-agent architecture",
13849
- template: `## 5-Agent Structured Architecture
13850
-
13851
- | Agent | Role | Responsibility |
13852
- |-------|------|----------------|
13853
- | Commander | Orchestrator | Relentless parallel execution until mission complete |
13854
- | ${AGENT_NAMES.ARCHITECT} | Planner | Decomposes complex tasks into parallel subtasks |
13855
- | ${AGENT_NAMES.BUILDER} | Developer | Full-stack implementation (logic + UI combined) |
13856
- | ${AGENT_NAMES.INSPECTOR} | Quality | 5-point audit + automatic bug fixing |
13857
- | ${AGENT_NAMES.RECORDER} | Context | Persistent progress tracking across sessions |
13858
-
13859
- ## Reasoning Pattern
13848
+ description: "Show the 7-agent architecture",
13849
+ template: `## \u{1F3AF} OpenCode Orchestrator - 7-Agent Architecture
13850
+
13851
+ | Agent | Role | Capabilities |
13852
+ |-------|------|--------------|
13853
+ | **Commander** \u{1F3AF} | Orchestrator | Autonomous mission control, parallel task coordination, never stops until \u2705 MISSION COMPLETE |
13854
+ | **Architect** \u{1F3D7}\uFE0F | Strategic Planner | Task decomposition, dependency analysis, parallel group optimization |
13855
+ | **Builder** \u{1F528} | Full-Stack Developer | Code implementation, file operations, terminal commands, UI + logic |
13856
+ | **Inspector** \u{1F50D} | Quality Assurance | 5-point audit, LSP diagnostics, auto-fix bugs, test verification |
13857
+ | **Recorder** \u{1F4BE} | Context Manager | Progress tracking, state persistence, session memory across restarts |
13858
+ | **Librarian** \u{1F4DA} | Research Specialist | API documentation lookup, anti-hallucination, cache official docs |
13859
+ | **Researcher** \u{1F52C} | Pre-task Analyst | Deep investigation before implementation, gathers all needed info |
13860
+
13861
+ ## \u26A1 Parallel Execution System
13860
13862
  \`\`\`
13861
- THINK \u2192 ACT \u2192 OBSERVE \u2192 ADJUST \u2192 REPEAT
13863
+ Up to 50 agents running simultaneously
13864
+ Max 10 per agent type (auto-queues excess)
13865
+ Auto-timeout: 60 min | Auto-cleanup: 30 min
13862
13866
  \`\`\`
13863
13867
 
13864
- ## Key Behaviors
13865
- - Parallel execution: Tasks with same parallel_group run concurrently
13866
- - Evidence-based: No task is complete without proof
13867
- - Relentless: Never stops until MISSION COMPLETE
13868
- - Auto-fix: Inspector repairs problems automatically
13868
+ ## \u{1F504} Execution Flow
13869
+ \`\`\`
13870
+ TRIAGE \u2192 RESEARCH \u2192 DELEGATE \u2192 EXECUTE \u2192 VERIFY \u2192 COMPLETE
13871
+ L1: Fast Track (simple fixes)
13872
+ L2: Normal Track (features)
13873
+ L3: Deep Track (complex refactoring)
13874
+ \`\`\`
13875
+
13876
+ ## \u{1F6E1}\uFE0F Anti-Hallucination
13877
+ - Librarian researches BEFORE implementation
13878
+ - webfetch caches official documentation
13879
+ - Never assumes - always verifies from sources
13869
13880
 
13870
- ## Usage
13871
- - Just select Commander agent and type your request
13872
- - Or use \`/task "goal"\` for explicit mission mode`
13881
+ ## \u{1F4A1} Usage
13882
+ - Select **Commander** and type your request
13883
+ - Or use \`/task "your mission"\` explicitly
13884
+ - Commander automatically coordinates all agents`
13873
13885
  }
13874
13886
  };
13875
13887
  function createSlashcommandTool() {
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.6.7",
5
+ "version": "0.6.8",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {