opencode-orchestrator 0.1.40 → 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 +7 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,26 +72,24 @@ User Request
|
|
|
72
72
|
|
|
73
73
|
## Installation
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
To ensure the plugin is accessible to OpenCode from any project, install it globally using `npm`:
|
|
75
|
+
You can use **npm** or **bun**. Both work perfectly because the core logic runs in a native **Rust binary**.
|
|
77
76
|
|
|
77
|
+
### Option 1: npm (Standard)
|
|
78
78
|
```bash
|
|
79
79
|
npm install -g opencode-orchestrator
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
> The plugin will automatically register itself in `~/.config/opencode/opencode.json`.
|
|
84
|
-
|
|
85
|
-
### Using Bun?
|
|
86
|
-
You can also use Bun, but `npm` is recommended for maximum compatibility with OpenCode's plugin resolution.
|
|
87
|
-
|
|
82
|
+
### Option 2: Bun (Fast)
|
|
88
83
|
```bash
|
|
89
84
|
bun install -g opencode-orchestrator
|
|
90
85
|
```
|
|
91
86
|
|
|
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
|
+
|
|
92
90
|
### Troubleshooting
|
|
93
91
|
If the command `/auto` does not appear:
|
|
94
|
-
1. Uninstall: `npm uninstall -g opencode-orchestrator`
|
|
92
|
+
1. Uninstall: `npm uninstall -g opencode-orchestrator` (or `bun remove -g`)
|
|
95
93
|
2. Clear config: `rm -rf ~/.config/opencode` (Warning: resets all plugins)
|
|
96
94
|
3. Reinstall: `npm install -g opencode-orchestrator`
|
|
97
95
|
|