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 +22 -11
- package/dist/scripts/postinstall.js +2 -3
- package/package.json +1 -1
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
|
|
88
|
+
/auto "Implement user authentication with JWT"
|
|
85
89
|
```
|
|
86
90
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
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(
|
|
49
|
-
console.log(' /
|
|
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();
|