opencode-orchestrator 1.0.26 → 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 CHANGED
@@ -18,7 +18,8 @@ npm install -g opencode-orchestrator
18
18
 
19
19
  In an OpenCode environment:
20
20
  ```bash
21
- /task "Implement a real-time collaborative editor using WebSocket"
21
+ /task "Implement"
22
+ /monitor # Check real-time orchestration & connection status
22
23
  ```
23
24
 
24
25
  ## Overview
@@ -124,6 +125,7 @@ MSVP is a structured verification process that decouples implementation from qua
124
125
  * **Synchronized Verification**: Ensures all distributed tasks pass Stage 1 review before final integration.
125
126
  * **Fault Tolerance**: Automatically resumes progress from checkpoints in case of tool or session failure.
126
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.
127
129
 
128
130
  ---
129
131
 
@@ -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?: {