opencode-plugin-flow 4.2.1 → 4.3.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/CHANGELOG.md +23 -0
- package/README.md +3 -3
- package/dist/cli.js +291 -392
- package/dist/cli.js.map +3 -3
- package/dist/index.js +292 -399
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [4.3.0] - 2026-07-06
|
|
6
|
+
|
|
7
|
+
Parallel orchestration reworked into a single pass playbook, plus sharper
|
|
8
|
+
planning and routing:
|
|
9
|
+
|
|
10
|
+
- The parallel-orchestration references collapse into one playbook with an
|
|
11
|
+
explicit loop — orient, slice, manifest, fan out, account, verify,
|
|
12
|
+
synthesize, extend or stop — so a manager reads one file instead of four
|
|
13
|
+
cross-linked ones. Every bundled public Flow command got smaller as a result.
|
|
14
|
+
- A new pass manifest doubles as the pre-fan-out coverage gate and the
|
|
15
|
+
accounting contract: one row per slice with its scope, expected coverage, and
|
|
16
|
+
verification tier, and N rows spawned means N handoffs accounted for before
|
|
17
|
+
synthesis.
|
|
18
|
+
- A worker-failure ladder handles a slice that errors, blocks, or returns
|
|
19
|
+
partial: re-spawn once narrower, cover it directly, or carry it into the
|
|
20
|
+
synthesis explicitly as not-covered — never as if coverage were complete.
|
|
21
|
+
- `flow-plan` gains uncertainty-typed decomposition: resolve specification
|
|
22
|
+
uncertainty by stating an assumption (or asking when a wrong guess is costly)
|
|
23
|
+
and environment uncertainty by inspecting, never by asking.
|
|
24
|
+
- Frontmatter descriptions for `flow-plan`, `flow-run`, and `flow-review` now
|
|
25
|
+
describe only when to reach for each skill, so single-phase asks route
|
|
26
|
+
cleanly.
|
|
27
|
+
|
|
5
28
|
## [4.2.1] - 2026-07-05
|
|
6
29
|
|
|
7
30
|
Skill routing and boundary clarity across the managed skill set:
|
package/README.md
CHANGED
|
@@ -17,8 +17,8 @@ Full project documentation is available in the
|
|
|
17
17
|
## Quick start
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
opencode plugin opencode-plugin-flow@4.
|
|
21
|
-
npx -y opencode-plugin-flow@4.
|
|
20
|
+
opencode plugin opencode-plugin-flow@4.3.0 --global --force
|
|
21
|
+
npx -y opencode-plugin-flow@4.3.0 sync
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Restart OpenCode, then give Flow a goal:
|
|
@@ -135,7 +135,7 @@ To update a pinned Flow version, rerun the install command with the new
|
|
|
135
135
|
version. To inspect skill health:
|
|
136
136
|
|
|
137
137
|
```bash
|
|
138
|
-
npx -y opencode-plugin-flow@4.
|
|
138
|
+
npx -y opencode-plugin-flow@4.3.0 doctor
|
|
139
139
|
```
|
|
140
140
|
|
|
141
141
|
## Experimental: compaction context
|