opencode-orchestrator 0.1.39 → 0.1.41
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 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# OpenCode Orchestrator
|
|
1
|
+
# OpenCode Orchestrator Plugin
|
|
2
2
|
|
|
3
3
|
> **Multi-Agent Plugin for [OpenCode](https://opencode.ai)**
|
|
4
4
|
|
|
@@ -70,13 +70,29 @@ User Request
|
|
|
70
70
|
|
|
71
71
|
---
|
|
72
72
|
|
|
73
|
-
##
|
|
73
|
+
## Installation
|
|
74
74
|
|
|
75
|
+
You can use **npm** or **bun**. Both work perfectly because the core logic runs in a native **Rust binary**.
|
|
76
|
+
|
|
77
|
+
### Option 1: npm (Standard)
|
|
78
|
+
```bash
|
|
79
|
+
npm install -g opencode-orchestrator
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### Option 2: Bun (Fast)
|
|
75
83
|
```bash
|
|
76
|
-
|
|
84
|
+
bun install -g opencode-orchestrator
|
|
77
85
|
```
|
|
78
86
|
|
|
79
|
-
|
|
87
|
+
> **Note**: After installation, **restart OpenCode** or run `opencode` in your terminal.
|
|
88
|
+
> The plugin will automatically register itself in `~/.config/opencode/opencode.json` with its absolute path.
|
|
89
|
+
|
|
90
|
+
### Troubleshooting
|
|
91
|
+
If the command `/auto` does not appear:
|
|
92
|
+
1. Uninstall: `npm uninstall -g opencode-orchestrator` (or `bun remove -g`)
|
|
93
|
+
2. Clear config: `rm -rf ~/.config/opencode` (Warning: resets all plugins)
|
|
94
|
+
3. Reinstall: `npm install -g opencode-orchestrator`
|
|
95
|
+
|
|
80
96
|
|
|
81
97
|
---
|
|
82
98
|
|