opencode-orchestrator 1.3.7 → 1.3.9
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 +23 -17
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://www.npmjs.com/package/opencode-orchestrator)
|
|
8
8
|
<!-- VERSION:START -->
|
|
9
|
-
**Version:** `1.3.
|
|
9
|
+
**Version:** `1.3.9`
|
|
10
10
|
<!-- VERSION:END -->
|
|
11
11
|
</div>
|
|
12
12
|
|
|
@@ -31,14 +31,29 @@ Manual fallback: remove `"opencode-orchestrator"` or `["opencode-orchestrator",
|
|
|
31
31
|
|
|
32
32
|
## 2. Configure
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
Tested compatibility:
|
|
35
|
+
|
|
36
|
+
1. Node.js `24+`
|
|
37
|
+
2. `@opencode-ai/plugin` `1.17.3`
|
|
38
|
+
3. `@opencode-ai/sdk` `1.17.3`
|
|
39
|
+
|
|
40
|
+
OpenCode plugin options belong inside the `plugin` array as `["plugin-name", {...}]` tuples. Configure `agentConcurrency` and `missionLoop` there:
|
|
35
41
|
|
|
36
42
|
```jsonc
|
|
37
43
|
{
|
|
38
44
|
"$schema": "https://opencode.ai/config.json",
|
|
45
|
+
"model": "opencode/gpt-5.1-codex",
|
|
39
46
|
"permission": {
|
|
40
47
|
"question": "allow"
|
|
41
48
|
},
|
|
49
|
+
"agent": {
|
|
50
|
+
"commander": {
|
|
51
|
+
"model": "opencode/gpt-5.1-codex"
|
|
52
|
+
},
|
|
53
|
+
"worker": {
|
|
54
|
+
"model": "anthropic/claude-opus-4-5-20251101"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
42
57
|
"plugin": [
|
|
43
58
|
[
|
|
44
59
|
"opencode-orchestrator",
|
|
@@ -60,23 +75,14 @@ OpenCode supports plugin options as `["plugin-name", {...}]` tuples. Use that fo
|
|
|
60
75
|
}
|
|
61
76
|
```
|
|
62
77
|
|
|
63
|
-
|
|
78
|
+
Model selection follows normal OpenCode inheritance. The plugin does not force a model:
|
|
64
79
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"commander": {
|
|
70
|
-
"model": "provider/model-id"
|
|
71
|
-
},
|
|
72
|
-
"worker": {
|
|
73
|
-
"model": "provider/stronger-model-id"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
```
|
|
80
|
+
1. Commander uses the global `model` unless `agent.commander.model` is set.
|
|
81
|
+
2. Planner, Worker, and Reviewer inherit the invoking primary agent model unless `agent.<name>.model` is set.
|
|
82
|
+
3. Generated Commander, Planner, Worker, and Reviewer agents inherit global permissions.
|
|
83
|
+
4. Same-name user agent config can still override model, temperature, and specific permission keys.
|
|
78
84
|
|
|
79
|
-
|
|
85
|
+
Legacy top-level concurrency keys (`agentConcurrency`, `providerConcurrency`, `modelConcurrency`, `defaultConcurrency`) are still accepted for backward compatibility, but the plugin tuple is the preferred location.
|
|
80
86
|
|
|
81
87
|
## 3. Run
|
|
82
88
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
3
|
"displayName": "OpenCode Orchestrator",
|
|
4
4
|
"description": "Multi-agent mission control for OpenCode with Commander, Planner, Worker, and Reviewer workflows.",
|
|
5
|
-
"version": "1.3.
|
|
5
|
+
"version": "1.3.9",
|
|
6
6
|
"author": "agnusdei1207",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"node": ">=24"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@opencode-ai/plugin": "
|
|
78
|
-
"@opencode-ai/sdk": "
|
|
77
|
+
"@opencode-ai/plugin": "1.17.3",
|
|
78
|
+
"@opencode-ai/sdk": "1.17.3",
|
|
79
79
|
"jsonc-parser": "^3.3.1",
|
|
80
80
|
"zod": "^4.3.6"
|
|
81
81
|
},
|