opencode-orchestrator 1.6.0 → 1.6.1

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 +27 -12
  2. package/package.json +1 -1
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.6.0`
9
+ **Version:** `1.6.1`
10
10
  <!-- VERSION:END -->
11
11
  </div>
12
12
 
@@ -134,17 +134,32 @@ TUI commands:
134
134
 
135
135
  ## 4. How It Works
136
136
 
137
- ```mermaid
138
- flowchart LR
139
- U["/task input"] --> C["Commander"]
140
- C --> P["Planner"]
141
- C --> W["Worker pool"]
142
- W --> R["Reviewer"]
143
- P --> S["Mission state"]
144
- W --> S
145
- R --> V{"Verified?"}
146
- V -- "no" --> C
147
- V -- "yes" --> D["Done"]
137
+ ```text
138
+ /task input
139
+ |
140
+ v
141
+ +-------------+
142
+ +----->| Commander |
143
+ | +------+------+
144
+ | | delegates
145
+ | +-----+------+
146
+ | v v
147
+ | +---------+ +-------------+
148
+ | | Planner | | Worker pool |
149
+ | +----+----+ +--+-------+--+
150
+ | | writes | impl |
151
+ | v v v
152
+ | +------------------+ +----------+
153
+ | | Mission state | | Reviewer |
154
+ | | (.opencode/) | +----+-----+
155
+ | +------------------+ |
156
+ | v
157
+ | no (keep working) +-----------+
158
+ +-----------------------+ Verified? |
159
+ +-----+-----+
160
+ | yes
161
+ v
162
+ Done
148
163
  ```
149
164
 
150
165
  | Agent | Purpose |
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.6.0",
5
+ "version": "1.6.1",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {