opencode-plugin-flow 4.2.1 → 4.3.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,41 @@
2
2
 
3
3
  One short entry per release, written for users deciding whether to upgrade.
4
4
 
5
+ ## [4.3.1] - 2026-07-06
6
+
7
+ Doctor and uninstall now account for the `.backup` files Flow writes when it
8
+ retires a locally-edited managed skill file:
9
+
10
+ - `doctor` reports leftover `.backup` files as action-required instead of
11
+ saying "ok", lists each one, and explains that they hold your earlier edits
12
+ and can be deleted once you no longer need the saved copy.
13
+ - `uninstall` treats a folder that is pristine apart from Flow-created
14
+ `.backup` residue as removable and names the removed backup files, so the
15
+ cleanup is no longer silently blocked or silently destructive.
16
+
17
+ ## [4.3.0] - 2026-07-06
18
+
19
+ Parallel orchestration reworked into a single pass playbook, plus sharper
20
+ planning and routing:
21
+
22
+ - The parallel-orchestration references collapse into one playbook with an
23
+ explicit loop — orient, slice, manifest, fan out, account, verify,
24
+ synthesize, extend or stop — so a manager reads one file instead of four
25
+ cross-linked ones. Every bundled public Flow command got smaller as a result.
26
+ - A new pass manifest doubles as the pre-fan-out coverage gate and the
27
+ accounting contract: one row per slice with its scope, expected coverage, and
28
+ verification tier, and N rows spawned means N handoffs accounted for before
29
+ synthesis.
30
+ - A worker-failure ladder handles a slice that errors, blocks, or returns
31
+ partial: re-spawn once narrower, cover it directly, or carry it into the
32
+ synthesis explicitly as not-covered — never as if coverage were complete.
33
+ - `flow-plan` gains uncertainty-typed decomposition: resolve specification
34
+ uncertainty by stating an assumption (or asking when a wrong guess is costly)
35
+ and environment uncertainty by inspecting, never by asking.
36
+ - Frontmatter descriptions for `flow-plan`, `flow-run`, and `flow-review` now
37
+ describe only when to reach for each skill, so single-phase asks route
38
+ cleanly.
39
+
5
40
  ## [4.2.1] - 2026-07-05
6
41
 
7
42
  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.2.1 --global --force
21
- npx -y opencode-plugin-flow@4.2.1 sync
20
+ opencode plugin opencode-plugin-flow@4.3.1 --global --force
21
+ npx -y opencode-plugin-flow@4.3.1 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.2.1 doctor
138
+ npx -y opencode-plugin-flow@4.3.1 doctor
139
139
  ```
140
140
 
141
141
  ## Experimental: compaction context