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.
Files changed (2) hide show
  1. package/README.md +23 -17
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![MIT License](https://img.shields.io/badge/license-MIT-red.svg)](LICENSE)
7
7
  [![npm](https://img.shields.io/npm/v/opencode-orchestrator.svg)](https://www.npmjs.com/package/opencode-orchestrator)
8
8
  <!-- VERSION:START -->
9
- **Version:** `1.3.7`
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
- OpenCode supports plugin options as `["plugin-name", {...}]` tuples. Use that form for orchestrator-specific settings:
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
- Optional model routing stays in normal OpenCode config. The plugin does not force a model:
78
+ Model selection follows normal OpenCode inheritance. The plugin does not force a model:
64
79
 
65
- ```jsonc
66
- {
67
- "model": "provider/model-id",
68
- "agent": {
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
- Generated Commander, Planner, Worker, and Reviewer agents inherit global permissions. Same-name user agent config can still override specific model or permission keys.
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.7",
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": "^1.17.1",
78
- "@opencode-ai/sdk": "^1.17.1",
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
  },