opencode-orchestrator 0.1.39 → 0.1.40
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 -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,31 @@ User Request
|
|
|
70
70
|
|
|
71
71
|
---
|
|
72
72
|
|
|
73
|
-
##
|
|
73
|
+
## Installation
|
|
74
|
+
|
|
75
|
+
### Recommended (Global Install)
|
|
76
|
+
To ensure the plugin is accessible to OpenCode from any project, install it globally using `npm`:
|
|
74
77
|
|
|
75
78
|
```bash
|
|
76
|
-
npm install opencode-orchestrator
|
|
79
|
+
npm install -g opencode-orchestrator
|
|
77
80
|
```
|
|
78
81
|
|
|
79
|
-
|
|
82
|
+
> **Note**: After installation, restart OpenCode or run `opencode` in your terminal.
|
|
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
|
+
|
|
88
|
+
```bash
|
|
89
|
+
bun install -g opencode-orchestrator
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Troubleshooting
|
|
93
|
+
If the command `/auto` does not appear:
|
|
94
|
+
1. Uninstall: `npm uninstall -g opencode-orchestrator`
|
|
95
|
+
2. Clear config: `rm -rf ~/.config/opencode` (Warning: resets all plugins)
|
|
96
|
+
3. Reinstall: `npm install -g opencode-orchestrator`
|
|
97
|
+
|
|
80
98
|
|
|
81
99
|
---
|
|
82
100
|
|