opencode-orchestrator 0.1.22 → 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 +20 -11
- package/dist/scripts/postinstall.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -82,21 +82,21 @@ Auto-registers with OpenCode. Just restart.
|
|
|
82
82
|
|
|
83
83
|
## Usage
|
|
84
84
|
|
|
85
|
+
**Just type one command:**
|
|
86
|
+
|
|
85
87
|
```
|
|
86
|
-
/auto
|
|
88
|
+
/auto "Implement user authentication with JWT"
|
|
87
89
|
```
|
|
88
90
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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.
|
|
92
98
|
|
|
93
|
-
|
|
94
|
-
|---------|-------------|
|
|
95
|
-
| `/auto` | Autonomous execution until complete |
|
|
96
|
-
| `/plan` | Decompose into atomic tasks |
|
|
97
|
-
| `/review` | Quality check |
|
|
98
|
-
| `/fix` | Fix specific error |
|
|
99
|
-
| `/search` | Find patterns in codebase |
|
|
99
|
+
**This is the only command you need.**
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
@@ -140,4 +140,13 @@ MIT License. No telemetry. No backdoors.
|
|
|
140
140
|
|
|
141
141
|
## License
|
|
142
142
|
|
|
143
|
+
MIT License. NO WARRANTY.
|
|
144
|
+
|
|
143
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();
|