opencode-orchestrator 0.1.21 → 0.1.26

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.
package/README.md CHANGED
@@ -39,6 +39,8 @@ A 6-agent collaborative system that turns any LLM into a reliable coding team.
39
39
  - **ðŸ‘Ĩ 6-Agent Team** — Specialized roles working together
40
40
  - **ðŸ›Ąïļ Resilient Execution** — Never stops on errors. Pivots strategy (Plan/Search) until success.
41
41
  - **⚡ Full Autonomy** — `/auto` is all you need. Relentless execution until 100% complete.
42
+ - **🏗ïļ Rust-Powered Core** — Critical logic written in Rust for **peak performance** and **memory efficiency**.
43
+ - **ðŸŠķ Thin TS Wrapper** — Minimal JavaScript overhead. The heavy lifting happens in the native binary.
42
44
 
43
45
  ---
44
46
 
@@ -80,21 +82,21 @@ Auto-registers with OpenCode. Just restart.
80
82
 
81
83
  ## Usage
82
84
 
85
+ **Just type one command:**
86
+
83
87
  ```
84
- /auto implement user authentication with JWT
88
+ /auto "Implement user authentication with JWT"
85
89
  ```
86
90
 
87
- ---
88
-
89
- ## Commands
91
+ The Orchestrator will:
92
+ 1. **Plan** the architecture
93
+ 2. **Search** for context
94
+ 3. **Write** the code
95
+ 4. **Review** for errors
96
+ 5. **Fix** any issues
97
+ 6. **Repeat** until 100% verified.
90
98
 
91
- | Command | Description |
92
- |---------|-------------|
93
- | `/auto` | Autonomous execution until complete |
94
- | `/plan` | Decompose into atomic tasks |
95
- | `/review` | Quality check |
96
- | `/fix` | Fix specific error |
97
- | `/search` | Find patterns in codebase |
99
+ **This is the only command you need.**
98
100
 
99
101
  ---
100
102
 
@@ -138,4 +140,13 @@ MIT License. No telemetry. No backdoors.
138
140
 
139
141
  ## License
140
142
 
143
+ MIT License. NO WARRANTY.
144
+
141
145
  [MIT](LICENSE)
146
+
147
+ ---
148
+
149
+ ## ⚡ Fast-Paced Development
150
+
151
+ This project is evolving **extremely fast**. We iterate rapidly to bring relentless execution to your workflow.
152
+ Updates are frequent. Keep your version fresh.
@@ -45,9 +45,8 @@ function install() {
45
45
  console.log("\uD83D\uDE80 Ready! Restart OpenCode to use.");
46
46
  console.log("");
47
47
  console.log("Commands:");
48
- console.log(' /auto "task" - Autonomous execution');
49
- console.log(' /plan "task" - Decompose into atomic tasks');
50
- console.log(" /review - Quality check");
48
+ console.log("Commands:");
49
+ console.log(' /auto "task" - The only command you need');
51
50
  console.log("");
52
51
  }
53
52
  install();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-orchestrator",
3
- "version": "0.1.21",
3
+ "version": "0.1.26",
4
4
  "description": "6-Agent collaborative architecture for OpenCode - Make any model reliable",
5
5
  "author": "agnusdei1207",
6
6
  "license": "MIT",