opencode-orchestrator 1.0.25 → 1.0.27
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 +21 -9
- package/dist/core/agents/manager.d.ts +8 -0
- package/dist/index.js +2084 -2027
- package/dist/shared/prompt/constants/mandates.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,12 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
<p>Autonomous Multi-Agent Orchestration Engine for Software Engineering</p>
|
|
6
6
|
|
|
7
|
-
[](LICENSE)
|
|
8
8
|
[](https://www.npmjs.com/package/opencode-orchestrator)
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
+
## ⚡ Quick Start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g opencode-orchestrator
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
In an OpenCode environment:
|
|
20
|
+
```bash
|
|
21
|
+
/task "Implement"
|
|
22
|
+
/monitor # Check real-time orchestration & connection status
|
|
23
|
+
```
|
|
24
|
+
|
|
13
25
|
## Overview
|
|
14
26
|
|
|
15
27
|
OpenCode Orchestrator is a framework designed to manage complex software engineering tasks through parallel multi-agent execution. It extends the capabilities of standard AI agents by introducing a hierarchical delegation model and a multi-stage verification pipeline.
|
|
@@ -22,16 +34,14 @@ OpenCode Orchestrator is a framework designed to manage complex software enginee
|
|
|
22
34
|
|
|
23
35
|
---
|
|
24
36
|
|
|
25
|
-
##
|
|
37
|
+
## Core Philosophy: Adaptive Engineering
|
|
26
38
|
|
|
27
|
-
|
|
28
|
-
npm install -g opencode-orchestrator
|
|
29
|
-
```
|
|
39
|
+
The orchestrator follows an **Explore → Learn → Adapt → Act** cycle to ensure agents remain grounded in the project's specific context.
|
|
30
40
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
41
|
+
* **Explore**: Systematically discover the project structure, tech stack, and documentation.
|
|
42
|
+
* **Learn**: Extract existing patterns, naming conventions, and architectural decisions from the codebase.
|
|
43
|
+
* **Adapt**: Adjust implementation strategies and verification parameters based on learned context.
|
|
44
|
+
* **Act**: Execute tasks through parallel delegation with evidence-based verification.
|
|
35
45
|
|
|
36
46
|
---
|
|
37
47
|
|
|
@@ -115,6 +125,7 @@ MSVP is a structured verification process that decouples implementation from qua
|
|
|
115
125
|
* **Synchronized Verification**: Ensures all distributed tasks pass Stage 1 review before final integration.
|
|
116
126
|
* **Fault Tolerance**: Automatically resumes progress from checkpoints in case of tool or session failure.
|
|
117
127
|
* **Context Optimization**: Monitors context window limits and performs automated compaction for long sessions.
|
|
128
|
+
* **Real-time System Monitor**: Provides a professional dashboard via `/monitor` command to track parallel tasks and connection health.
|
|
118
129
|
|
|
119
130
|
---
|
|
120
131
|
|
|
@@ -123,6 +134,7 @@ MSVP is a structured verification process that decouples implementation from qua
|
|
|
123
134
|
OpenCode Orchestrator was developed to solve the "sequential bottleneck" in AI-assisted coding. By treating agents as distributed processing units rather than just chat interfaces, we aim to provide a more reliable and scalable autonomous engineering experience.
|
|
124
135
|
|
|
125
136
|
[Full Developer's Note →](docs/DEVELOPERS_NOTE.md)
|
|
137
|
+
[System Architecture →](docs/SYSTEM_ARCHITECTURE.md)
|
|
126
138
|
|
|
127
139
|
---
|
|
128
140
|
|
|
@@ -43,6 +43,14 @@ export declare class ParallelAgentManager {
|
|
|
43
43
|
getConcurrency(): ConcurrencyController;
|
|
44
44
|
cleanup(): void;
|
|
45
45
|
formatDuration: typeof formatDuration;
|
|
46
|
+
/**
|
|
47
|
+
* Get orchestration stats
|
|
48
|
+
*/
|
|
49
|
+
getStats(): {
|
|
50
|
+
running: number;
|
|
51
|
+
queued: number;
|
|
52
|
+
total: number;
|
|
53
|
+
};
|
|
46
54
|
handleEvent(event: {
|
|
47
55
|
type: string;
|
|
48
56
|
properties?: {
|