opencode-orchestrator 1.0.27 → 1.0.28

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 CHANGED
@@ -19,7 +19,6 @@ npm install -g opencode-orchestrator
19
19
  In an OpenCode environment:
20
20
  ```bash
21
21
  /task "Implement"
22
- /monitor # Check real-time orchestration & connection status
23
22
  ```
24
23
 
25
24
  ## Overview
@@ -95,7 +94,7 @@ MSVP is a structured verification process that decouples implementation from qua
95
94
  ─────────────────┬─────────────────
96
95
 
97
96
  ┌─────────▼─────────┐
98
- │ MASTER REVIEWER │ (Stage 2: System Integration)
97
+ │ MASTER REVIEWER │ (Stage 2: e2e Verification)
99
98
  └─────────┬─────────┘
100
99
 
101
100
  ┌─────────▼─────────┐
@@ -125,7 +124,6 @@ MSVP is a structured verification process that decouples implementation from qua
125
124
  * **Synchronized Verification**: Ensures all distributed tasks pass Stage 1 review before final integration.
126
125
  * **Fault Tolerance**: Automatically resumes progress from checkpoints in case of tool or session failure.
127
126
  * **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.
129
127
 
130
128
  ---
131
129
 
@@ -43,14 +43,6 @@ 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
- };
54
46
  handleEvent(event: {
55
47
  type: string;
56
48
  properties?: {