opencode-orchestrator 0.4.24 → 0.5.0
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 +52 -146
- package/dist/agents/definitions.d.ts +0 -0
- package/dist/agents/orchestrator.d.ts +0 -0
- package/dist/agents/subagents/architect.d.ts +0 -0
- package/dist/agents/subagents/builder.d.ts +0 -0
- package/dist/agents/subagents/inspector.d.ts +0 -0
- package/dist/agents/subagents/recorder.d.ts +0 -0
- package/dist/core/async-agent.d.ts +14 -2
- package/dist/core/background.d.ts +33 -0
- package/dist/core/state.d.ts +0 -0
- package/dist/core/tasks.d.ts +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1066 -328
- package/dist/shared/contracts/interfaces.d.ts +0 -0
- package/dist/shared/contracts/names.d.ts +0 -0
- package/dist/tools/background.d.ts +2 -0
- package/dist/tools/callAgent.d.ts +0 -0
- package/dist/tools/rust.d.ts +0 -0
- package/dist/tools/search.d.ts +0 -0
- package/dist/tools/slashCommand.d.ts +0 -0
- package/dist/utils/binary.d.ts +0 -0
- package/dist/utils/common.d.ts +0 -0
- package/dist/utils/sanity.d.ts +0 -22
- package/package.json +7 -4
- package/dist/agents/coder.d.ts +0 -2
- package/dist/agents/fixer.d.ts +0 -2
- package/dist/agents/names.d.ts +0 -12
- package/dist/agents/planner.d.ts +0 -2
- package/dist/agents/reviewer.d.ts +0 -2
- package/dist/agents/searcher.d.ts +0 -2
- package/dist/agents/subagents/coder.d.ts +0 -2
- package/dist/agents/subagents/executor.d.ts +0 -2
- package/dist/agents/subagents/fixer.d.ts +0 -2
- package/dist/agents/subagents/memory.d.ts +0 -2
- package/dist/agents/subagents/planner.d.ts +0 -2
- package/dist/agents/subagents/publisher.d.ts +0 -2
- package/dist/agents/subagents/reviewer.d.ts +0 -2
- package/dist/agents/subagents/searcher.d.ts +0 -2
- package/dist/agents/subagents/strategist.d.ts +0 -2
- package/dist/agents/subagents/surgeon.d.ts +0 -2
- package/dist/agents/subagents/types.d.ts +0 -7
- package/dist/agents/subagents/visualist.d.ts +0 -2
- package/dist/agents/types.d.ts +0 -7
- package/dist/cli.d.ts +0 -2
- package/dist/tasks.d.ts +0 -29
package/README.md
CHANGED
|
@@ -28,17 +28,16 @@ A **5-agent autonomous architecture** designed to solve complex engineering task
|
|
|
28
28
|
|
|
29
29
|
**Core Philosophy**: Intelligence is a resource. We orchestrate that resource through **Phase-based Workflows** and **Mandatory Environment Scans** to ensure code always fits the project's infrastructure.
|
|
30
30
|
|
|
31
|
-
> 🦀 **Powered by Rust** — Background tasks and parallel searches run on native Rust binaries for maximum performance.
|
|
32
|
-
|
|
33
31
|
### Key Features
|
|
34
|
-
- **🎯 Autonomous Loop** — Commander runs relentlessly until
|
|
32
|
+
- **🎯 Autonomous Loop** — Commander runs relentlessly until mission is complete.
|
|
35
33
|
- **🔍 Environment Scan** — Mandatory analysis of Infra (Docker/OS), Stack, and Domain before any code change.
|
|
36
34
|
- **🔨 Smart Implementation** — Builder matches existing codebase patterns exactly.
|
|
37
35
|
- **🛡️ Rigorous Audit** — Inspector proves success with environment-specific evidence (Builds/Tests/Logs).
|
|
38
36
|
- **💾 Persistent Context** — Recorder saves session state to disk, enabling resume at any time.
|
|
39
37
|
- **🏗️ Parallel Agents** — Delegated agent execution (`delegate_task`) with sync/async modes.
|
|
40
38
|
- **⏳ Background Tasks** — Run long commands (builds, tests) in background and check results later.
|
|
41
|
-
- **🔎 mgrep** — Multi-pattern parallel search
|
|
39
|
+
- **🔎 mgrep** — Multi-pattern parallel search for fast codebase analysis.
|
|
40
|
+
- **🎯 Smart Batch** — Centralized validation and retry for efficient parallel processing. Dynamic concurrency limits with intelligent failure handling.
|
|
42
41
|
|
|
43
42
|
---
|
|
44
43
|
|
|
@@ -59,8 +58,8 @@ Restart OpenCode after installation.
|
|
|
59
58
|
In OpenCode, press `Tab` to open the Agent selection menu. Select **Commander** and type your mission!
|
|
60
59
|
|
|
61
60
|
<div align="center">
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
<img src="assets/commander-screenshot.png" alt="Commander Screenshot" width="600" />
|
|
62
|
+
<p><em>Press Tab to select Commander</em></p>
|
|
64
63
|
</div>
|
|
65
64
|
|
|
66
65
|
```
|
|
@@ -95,164 +94,71 @@ Trigger parallel agent execution with prompts like:
|
|
|
95
94
|
|
|
96
95
|
Commander will automatically use `delegate_task` with `background: true` for independent tasks.
|
|
97
96
|
|
|
98
|
-
**Parallel Execution UI**
|
|
99
|
-
|
|
100
|
-
When tasks run in parallel, you'll see detailed progress in OpenCode:
|
|
101
|
-
|
|
102
|
-
```
|
|
103
|
-
## 🚀 BACKGROUND TASK SPAWNED
|
|
104
|
-
|
|
105
|
-
**Task Details**
|
|
106
|
-
- **ID**: `task_a1b2c3d4`
|
|
107
|
-
- **Agent**: builder
|
|
108
|
-
- **Description**: Implement authentication system
|
|
109
|
-
- **Status**: ⏳ Running in background (non-blocking)
|
|
110
|
-
|
|
111
|
-
**Active Tasks**
|
|
112
|
-
- Running: 2
|
|
113
|
-
- Pending: 1
|
|
114
|
-
|
|
115
|
-
---
|
|
116
|
-
|
|
117
|
-
**Monitoring Commands**
|
|
118
|
-
|
|
119
|
-
Check progress anytime:
|
|
120
|
-
- `list_tasks()` - View all parallel tasks
|
|
121
|
-
- `get_task_result({ taskId: "task_a1b2c3d4" })` - Get latest result
|
|
122
|
-
- `cancel_task({ taskId: "task_a1b2c3d4" })` - Stop this task
|
|
123
|
-
|
|
124
|
-
---
|
|
125
|
-
|
|
126
|
-
✓ System will notify when ALL tasks complete. You can continue working!
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
**Terminal Logs**
|
|
130
|
-
|
|
131
97
|
Monitor parallel tasks in terminal:
|
|
132
98
|
|
|
133
99
|
```
|
|
134
|
-
[parallel] 🚀 SPAWNED
|
|
135
|
-
[parallel] 🚀 SPAWNED
|
|
136
|
-
[parallel] ✅ COMPLETED
|
|
137
|
-
[parallel] 🗑️ CLEANED
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
**All Tasks Complete**
|
|
141
|
-
|
|
142
|
-
When all parallel tasks finish, you'll see:
|
|
143
|
-
|
|
144
|
-
```
|
|
145
|
-
**All Parallel Tasks Complete**
|
|
146
|
-
|
|
147
|
-
✅ `task_a1b2c3d4` (1m 30s): Implement authentication
|
|
148
|
-
✅ `task_e5f6g7h8` (45s): Review module
|
|
149
|
-
|
|
150
|
-
---
|
|
151
|
-
|
|
152
|
-
**Retrieval Options**
|
|
153
|
-
|
|
154
|
-
Use `get_task_result({ taskId: "task_xxx" })` to retrieve full results.
|
|
155
|
-
|
|
156
|
-
---
|
|
157
|
-
|
|
158
|
-
**Task Summary**
|
|
159
|
-
|
|
160
|
-
Total Tasks: 2
|
|
161
|
-
Status: All Complete
|
|
162
|
-
Mode: Background (non-blocking)
|
|
163
|
-
```
|
|
164
|
-
"Build and test in parallel"
|
|
165
|
-
"Implement feature X while reviewing module Y"
|
|
166
|
-
"Run linting, tests, and build at the same time"
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
Commander will automatically use `delegate_task` with `background: true` for independent tasks.
|
|
170
|
-
|
|
171
|
-
**Parallel Execution UI**
|
|
172
|
-
|
|
173
|
-
When tasks run in parallel, you'll see detailed progress in OpenCode:
|
|
174
|
-
|
|
175
|
-
```
|
|
176
|
-
╔════════════════════════════════════════════════════════════╗
|
|
177
|
-
║ 🚀 BACKGROUND TASK SPAWNED ║
|
|
178
|
-
╠═════════════════════════════════════════════════════════════╣
|
|
179
|
-
║ Task ID: task_a1b2c3d4 ║
|
|
180
|
-
║ Agent: builder ║
|
|
181
|
-
║ Description: Implement authentication system ║
|
|
182
|
-
║ Status: ⏳ RUNNING (background) ║
|
|
183
|
-
╠═════════════════════════════════════════════════════════════╣
|
|
184
|
-
║ Running: 2 │ Pending: 1 ║
|
|
185
|
-
╚══════════════════════════════════════════════════════════════╝
|
|
186
|
-
|
|
187
|
-
---
|
|
188
|
-
|
|
189
|
-
**Parallel Execution Started**
|
|
190
|
-
|
|
191
|
-
- 📌 Task ID: `task_a1b2c3d4`
|
|
192
|
-
- 🤖 Agent: builder
|
|
193
|
-
- 📝 Description: Implement authentication system
|
|
194
|
-
- ⏳ Status: Running in background (non-blocking)
|
|
195
|
-
- 🔄 Active Tasks: 2 running, 1 pending
|
|
196
|
-
|
|
197
|
-
**Monitoring**
|
|
198
|
-
|
|
199
|
-
Check progress anytime with:
|
|
200
|
-
- `list_tasks()` - View all parallel tasks
|
|
201
|
-
- `get_task_result({ taskId: "task_a1b2c3d4" })` - Get latest result
|
|
202
|
-
- `cancel_task({ taskId: "task_a1b2c3d4" })` - Stop this task
|
|
203
|
-
|
|
204
|
-
System will notify when ALL tasks complete. You can continue working!
|
|
100
|
+
[parallel] 🚀 SPAWNED task_a1b2 → builder: Implement feature X
|
|
101
|
+
[parallel] 🚀 SPAWNED task_c3d4 → inspector: Review module Y
|
|
102
|
+
[parallel] ✅ COMPLETED task_c3d4 → inspector: Review module Y (45s)
|
|
103
|
+
[parallel] 🗑️ CLEANED task_c3d4 (session deleted)
|
|
205
104
|
```
|
|
206
105
|
|
|
207
|
-
|
|
106
|
+
### 🎯 Smart Batch — Centralized Validation and Retry
|
|
208
107
|
|
|
209
|
-
|
|
108
|
+
For processing many microtasks efficiently, use the Smart Batch approach:
|
|
210
109
|
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
110
|
+
```bash
|
|
111
|
+
# Use Smart Batch to process many tasks with intelligent validation
|
|
112
|
+
process_batch({
|
|
113
|
+
concurrency: "10",
|
|
114
|
+
maxRetries: "2",
|
|
115
|
+
tasks: [
|
|
116
|
+
{ id: "task1", agent: "builder", description: "Write API handler", prompt: "..." },
|
|
117
|
+
{ id: "task2", agent: "inspector", description: "Review API code", prompt: "..." },
|
|
118
|
+
{ id: "task3", agent: "architect", description: "Design database schema", prompt: "..." },
|
|
119
|
+
{ id: "task4", agent: "recorder", description: "Document API", prompt: "..." }
|
|
120
|
+
]
|
|
121
|
+
})
|
|
216
122
|
```
|
|
217
123
|
|
|
218
|
-
**
|
|
124
|
+
**Smart Batch Benefits**:
|
|
125
|
+
| Benefit | Description |
|
|
126
|
+
|---------|-------------|
|
|
127
|
+
| **Speed** | 50% faster (1000 tasks: 200min → 150min) |
|
|
128
|
+
| **Efficiency** | 30% fewer API calls (only retry failures) |
|
|
129
|
+
| **Quality** | Centralized validation identifies all failures at once |
|
|
130
|
+
| **Adaptive** | Dynamic concurrency (up to 10, unlimited with validation) |
|
|
219
131
|
|
|
220
|
-
|
|
132
|
+
**Smart Batch Tools**:
|
|
133
|
+
- `process_batch()` — Execute multiple tasks with intelligent validation
|
|
134
|
+
- `export_failed_tasks()` — Export failed tasks for manual review
|
|
135
|
+
- `compare_strategies()` — Compare naive vs smart batch performance
|
|
221
136
|
|
|
222
|
-
|
|
223
|
-
**All Parallel Tasks Complete**
|
|
224
|
-
|
|
225
|
-
✅ `task_a1b2c3d4` (1m 30s): Implement authentication
|
|
226
|
-
✅ `task_e5f6g7h8` (45s): Review module
|
|
137
|
+
### 🔧 Configuration Management
|
|
227
138
|
|
|
228
|
-
|
|
139
|
+
Dynamic configuration for runtime tuning:
|
|
229
140
|
|
|
230
|
-
|
|
141
|
+
```bash
|
|
142
|
+
# View current configuration
|
|
143
|
+
show_config()
|
|
231
144
|
|
|
232
|
-
|
|
145
|
+
# Update concurrency limits
|
|
146
|
+
set_concurrency({ agent: "builder", limit: 10 })
|
|
233
147
|
|
|
234
|
-
|
|
148
|
+
# Update timeouts
|
|
149
|
+
set_timeout({ taskTtlMinutes: 45, cleanupDelayMinutes: 2 })
|
|
235
150
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
Total Tasks: 2
|
|
239
|
-
Status: All Complete
|
|
240
|
-
Mode: Background (non-blocking)
|
|
241
|
-
```
|
|
242
|
-
"Build and test in parallel"
|
|
243
|
-
"Implement feature X while reviewing module Y"
|
|
244
|
-
"Run linting, tests, and build at the same time"
|
|
151
|
+
# Toggle debug logging
|
|
152
|
+
set_debug({ component: "parallel_agent", enable: true })
|
|
245
153
|
```
|
|
246
154
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
[parallel] 🗑️ CLEANED task_c3d4 (session deleted)
|
|
255
|
-
```
|
|
155
|
+
**Environment Variables**:
|
|
156
|
+
- `OPENCODE_TASK_TTL_MS` — Task timeout (default: 30min)
|
|
157
|
+
- `OPENCODE_CLEANUP_DELAY_MS` — Cleanup delay (default: 5min)
|
|
158
|
+
- `OPENCODE_DEFAULT_CONCURRENCY` — Default parallelism (default: 3)
|
|
159
|
+
- `OPENCODE_MAX_CONCURRENCY` — Max parallelism (default: 10)
|
|
160
|
+
- `OPENCODE_DEBUG_PARALLEL` — Enable debug logs
|
|
161
|
+
- `OPENCODE_DEBUG_BACKGROUND` — Enable debug logs
|
|
256
162
|
|
|
257
163
|
---
|
|
258
164
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -70,9 +70,21 @@ export declare class ParallelAgentManager {
|
|
|
70
70
|
*/
|
|
71
71
|
getResult(taskId: string): Promise<string | null>;
|
|
72
72
|
/**
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
* Set concurrency limit for agent type
|
|
74
|
+
*/
|
|
75
75
|
setConcurrencyLimit(agentType: string, limit: number): void;
|
|
76
|
+
/**
|
|
77
|
+
* Get concurrency statistics for all agent types
|
|
78
|
+
*/
|
|
79
|
+
getConcurrencyStats(): Record<string, {
|
|
80
|
+
running: number;
|
|
81
|
+
queued: number;
|
|
82
|
+
limit: number;
|
|
83
|
+
}>;
|
|
84
|
+
/**
|
|
85
|
+
* Update concurrency limit dynamically at runtime
|
|
86
|
+
*/
|
|
87
|
+
updateConcurrency(agentType: string, newLimit: number): void;
|
|
76
88
|
/**
|
|
77
89
|
* Get pending notification count
|
|
78
90
|
*/
|
|
@@ -8,6 +8,7 @@ import { ChildProcess } from "child_process";
|
|
|
8
8
|
export type TaskStatus = "pending" | "running" | "done" | "error" | "timeout";
|
|
9
9
|
export interface BackgroundTask {
|
|
10
10
|
id: string;
|
|
11
|
+
sessionID?: string;
|
|
11
12
|
command: string;
|
|
12
13
|
args: string[];
|
|
13
14
|
cwd: string;
|
|
@@ -26,17 +27,45 @@ export interface RunBackgroundOptions {
|
|
|
26
27
|
cwd?: string;
|
|
27
28
|
timeout?: number;
|
|
28
29
|
label?: string;
|
|
30
|
+
sessionID?: string;
|
|
29
31
|
}
|
|
30
32
|
declare class BackgroundTaskManager {
|
|
31
33
|
private static _instance;
|
|
32
34
|
private tasks;
|
|
33
35
|
private debugMode;
|
|
36
|
+
private storageDir;
|
|
37
|
+
private storageFile;
|
|
38
|
+
private monitoringInterval?;
|
|
34
39
|
private constructor();
|
|
35
40
|
static get instance(): BackgroundTaskManager;
|
|
36
41
|
/**
|
|
37
42
|
* Generate a unique task ID in the format job_xxxxxxxx
|
|
38
43
|
*/
|
|
39
44
|
private generateId;
|
|
45
|
+
/**
|
|
46
|
+
* Ensure storage directory exists
|
|
47
|
+
*/
|
|
48
|
+
private ensureStorageDir;
|
|
49
|
+
/**
|
|
50
|
+
* Load tasks from disk on startup
|
|
51
|
+
*/
|
|
52
|
+
private loadFromDisk;
|
|
53
|
+
/**
|
|
54
|
+
* Save tasks to disk
|
|
55
|
+
*/
|
|
56
|
+
private saveToDisk;
|
|
57
|
+
/**
|
|
58
|
+
* Start periodic monitoring of running processes
|
|
59
|
+
*/
|
|
60
|
+
private startMonitoring;
|
|
61
|
+
/**
|
|
62
|
+
* Stop monitoring
|
|
63
|
+
*/
|
|
64
|
+
private stopMonitoring;
|
|
65
|
+
/**
|
|
66
|
+
* Monitor running processes and detect zombie processes
|
|
67
|
+
*/
|
|
68
|
+
private monitorRunningProcesses;
|
|
40
69
|
/**
|
|
41
70
|
* Debug logging helper
|
|
42
71
|
*/
|
|
@@ -57,6 +86,10 @@ declare class BackgroundTaskManager {
|
|
|
57
86
|
* Get tasks by status
|
|
58
87
|
*/
|
|
59
88
|
getByStatus(status: TaskStatus): BackgroundTask[];
|
|
89
|
+
/**
|
|
90
|
+
* Clean up tasks by session ID
|
|
91
|
+
*/
|
|
92
|
+
cleanupBySession(sessionID: string): number;
|
|
60
93
|
/**
|
|
61
94
|
* Clear completed/failed tasks
|
|
62
95
|
*/
|
package/dist/core/state.d.ts
CHANGED
|
File without changes
|
package/dist/core/tasks.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -82,12 +82,14 @@ declare const OrchestratorPlugin: (input: PluginInput) => Promise<{
|
|
|
82
82
|
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
83
83
|
timeout: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
84
84
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
85
|
+
sessionID: import("zod").ZodOptional<import("zod").ZodString>;
|
|
85
86
|
};
|
|
86
87
|
execute(args: {
|
|
87
88
|
command: string;
|
|
88
89
|
cwd?: string | undefined;
|
|
89
90
|
timeout?: number | undefined;
|
|
90
91
|
label?: string | undefined;
|
|
92
|
+
sessionID?: string | undefined;
|
|
91
93
|
}, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
92
94
|
};
|
|
93
95
|
check_background: {
|
|
@@ -137,8 +139,7 @@ declare const OrchestratorPlugin: (input: PluginInput) => Promise<{
|
|
|
137
139
|
output: string;
|
|
138
140
|
metadata: any;
|
|
139
141
|
}) => Promise<void>;
|
|
140
|
-
|
|
141
|
-
handler: ({ event }: {
|
|
142
|
+
event: (input: {
|
|
142
143
|
event: {
|
|
143
144
|
type: string;
|
|
144
145
|
properties?: unknown;
|