opencode-orchestrator 0.9.4 β†’ 0.9.6

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/README.md +23 -19
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -40,17 +40,18 @@ A multi-agent system that **autonomously executes complex tasks** from start to
40
40
 
41
41
  ---
42
42
 
43
- ## ✨ Key Features
44
-
45
- | Feature | Description |
46
- |---------|-------------|
47
- | πŸ€– **4 Specialized Agents** | Commander β†’ Planner β†’ Worker β†’ Reviewer, each with distinct roles |
48
- | ⚑ **Parallel Execution** | Up to 50 concurrent sessions β€” no waiting, maximum throughput |
49
- | πŸ”„ **Background Tasks** | Long-running commands (npm install, tests) run non-blocking |
50
- | πŸ“‹ **TODO-Driven Completion** | Auto-continues until every TODO is checked β€” never stops halfway |
51
- | πŸ›‘οΈ **Auto-Recovery** | Handles errors, rate limits, and session crashes automatically |
52
- | πŸ’Ύ **Memory Safety** | Auto GC, disk archiving, 60-min TTL β€” no memory leaks |
53
- | πŸ”” **Smart Notifications** | Consolidated task toasts with progress tracking |
43
+ ## ✨ v0.9.4 Highlights
44
+
45
+ > πŸš€ **"Relentless execution until absolute success."**
46
+
47
+ | Category | Feature |
48
+ |----------|----------|
49
+ | πŸ›‘οΈ **Resilience** | Never stops. Auto-pivots Plan↔Search on any error |
50
+ | ⚑ **Parallelism** | 50 isolated sessions run simultaneously |
51
+ | πŸ”§ **TDD Workers** | Each agent works in complete isolation (1 file = 1 worker) |
52
+ | πŸ”„ **Sync Integration** | Shared `.opencode/` state synchronizes all agents |
53
+ | βœ… **Stability Checks** | TODO + Issue verification before mission seal |
54
+ | 🧠 **Smart Fixers** | Anti-overengineering: simple errors get simple fixes |
54
55
 
55
56
  ---
56
57
 
@@ -87,14 +88,17 @@ A multi-agent system that **autonomously executes complex tasks** from start to
87
88
  ♻️ LOOP πŸŽ–οΈ SEALED
88
89
  ```
89
90
 
90
- ### πŸ”‘ Key Concepts
91
+ ### πŸ”‘ Core Principles
91
92
 
92
- | Concept | Description |
93
- |---------|-------------|
94
- | **♾️ Infinite Loop** | Keeps running until ALL TODOs [x] AND no sync issues |
95
- | **πŸ”§ TDD Isolation** | Each Worker = 1 file. Test β†’ Build β†’ Delete test |
96
- | **πŸ“‚ Shared State** | `.opencode/` = single source of truth for all agents |
97
- | **πŸ”„ E2E at End** | Integration tests run when TODO nearly complete |
93
+ ```
94
+ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
95
+ β”‚ πŸ”’ ISOLATION β”‚ πŸ”„ SYNC β”‚ βœ… STABILITY β”‚
96
+ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
97
+ β”‚ Each worker β”‚ Shared state β”‚ TODO 100% complete β”‚
98
+ β”‚ owns 1 file β”‚ via .opencode β”‚ + Zero sync issues β”‚
99
+ β”‚ No conflicts β”‚ Real-time β”‚ = Mission SEALED β”‚
100
+ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
101
+ ```
98
102
 
99
103
 
100
104
  ---
@@ -175,5 +179,5 @@ MIT License. [LICENSE](LICENSE)
175
179
  ---
176
180
 
177
181
  <div align="center">
178
- <b>Enterprise-scale. Memory-safe. Self-healing. Unlimited.</b>
182
+ <b>πŸš€ v0.9.4 β€” "Relentless execution until absolute success."</b>
179
183
  </div>
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.4",
5
+ "version": "0.9.6",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {