opencode-plugin-flow 4.2.0 → 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 +43 -0
- package/README.md +8 -4
- package/dist/cli.js +301 -471
- package/dist/cli.js.map +3 -3
- package/dist/index.js +302 -478
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,49 @@
|
|
|
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
|
+
|
|
28
|
+
## [4.2.1] - 2026-07-05
|
|
29
|
+
|
|
30
|
+
Skill routing and boundary clarity across the managed skill set:
|
|
31
|
+
|
|
32
|
+
- Frontmatter descriptions now route single-phase asks cleanly: `flow`
|
|
33
|
+
defers plan-only work to `flow-plan` and single-feature execution to
|
|
34
|
+
`flow-run`, `flow-test` no longer claims every testing intent,
|
|
35
|
+
`flow-deslop` leaves review verdicts to `flow-review`, and
|
|
36
|
+
`flow-ui-quality` hands browser-run mechanics to `flow-test`.
|
|
37
|
+
- `flow-deslop` and `flow-ui-quality` now state explicitly that they are
|
|
38
|
+
helper skills: they contribute evidence only, and the manager owns every
|
|
39
|
+
state-changing `flow_*` call.
|
|
40
|
+
- The `flow` skill gained a routing note covering plan-only, single-feature,
|
|
41
|
+
and status-only asks, and `flow-review` names its manager context
|
|
42
|
+
accurately (the `flow`/`flow-run` skills or a bundled public Flow command).
|
|
43
|
+
- The repo-local contribution preflight now states its output is commit/push
|
|
44
|
+
readiness evidence only and never substitutes for Flow validation or
|
|
45
|
+
review evidence.
|
|
46
|
+
- README lists all four managed non-command helper skills.
|
|
47
|
+
|
|
5
48
|
## [4.2.0] - 2026-07-01
|
|
6
49
|
|
|
7
50
|
Safety and usability overhaul across the runtime, packaging, skills, and docs:
|
package/README.md
CHANGED
|
@@ -11,11 +11,14 @@ review, and orchestration judgment, while the plugin runtime stays deliberately
|
|
|
11
11
|
small — it keeps the session ledger and enforces the hard gates prompts should
|
|
12
12
|
not be trusted to remember.
|
|
13
13
|
|
|
14
|
+
Full project documentation is available in the
|
|
15
|
+
[Flow OpenCode wiki](https://github.com/ddv1982/flow-opencode/wiki).
|
|
16
|
+
|
|
14
17
|
## Quick start
|
|
15
18
|
|
|
16
19
|
```bash
|
|
17
|
-
opencode plugin opencode-plugin-flow@4.
|
|
18
|
-
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
|
|
19
22
|
```
|
|
20
23
|
|
|
21
24
|
Restart OpenCode, then give Flow a goal:
|
|
@@ -71,7 +74,8 @@ Commands are bundled entrypoints: they carry their own instructions, so they
|
|
|
71
74
|
keep working even when OpenCode's native skill discovery lags behind a fresh
|
|
72
75
|
install (see [docs/troubleshooting.md](docs/troubleshooting.md)).
|
|
73
76
|
|
|
74
|
-
`flow-test` and `flow-commit` are managed
|
|
77
|
+
`flow-test`, `flow-deslop`, `flow-ui-quality`, and `flow-commit` are managed
|
|
78
|
+
helper skills, not public commands.
|
|
75
79
|
`flow-commit` is user-triggered only and stays outside the autonomous loop.
|
|
76
80
|
|
|
77
81
|
## Tools
|
|
@@ -131,7 +135,7 @@ To update a pinned Flow version, rerun the install command with the new
|
|
|
131
135
|
version. To inspect skill health:
|
|
132
136
|
|
|
133
137
|
```bash
|
|
134
|
-
npx -y opencode-plugin-flow@4.
|
|
138
|
+
npx -y opencode-plugin-flow@4.3.0 doctor
|
|
135
139
|
```
|
|
136
140
|
|
|
137
141
|
## Experimental: compaction context
|