opencode-plugin-flow 4.1.16 → 4.1.17
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 +6 -2
- package/README.md +11 -11
- package/dist/cli.js +227 -114
- package/dist/index.js +228 -115
- package/dist/index.js.map +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,13 +3,17 @@
|
|
|
3
3
|
One short line per release. For the full rationale behind each entry, see the
|
|
4
4
|
commit history and review evidence.
|
|
5
5
|
|
|
6
|
+
## [4.1.17] - 2026-06-28
|
|
7
|
+
|
|
8
|
+
Teach Flow's parallel pass lore to verify worker handoffs, prune retired managed skill files, and keep manager-owned synthesis explicit.
|
|
9
|
+
|
|
6
10
|
## [4.1.16] - 2026-06-22
|
|
7
11
|
|
|
8
12
|
Quote Flow skill frontmatter lore so GitHub previews parse cleanly and CI guards future YAML slips.
|
|
9
13
|
|
|
10
14
|
## [4.1.15] - 2026-06-22
|
|
11
15
|
|
|
12
|
-
Refine Flow's orchestration lore into a quick path, bundled
|
|
16
|
+
Refine Flow's orchestration lore into a quick path, bundled parallel pass example, tested doc links, and trusted-publishing release guidance.
|
|
13
17
|
|
|
14
18
|
## [4.1.14] - 2026-06-22
|
|
15
19
|
|
|
@@ -17,7 +21,7 @@ Publish Flow through npm trusted publishing so release CI no longer depends on e
|
|
|
17
21
|
|
|
18
22
|
## [4.1.13] - 2026-06-21
|
|
19
23
|
|
|
20
|
-
Teach Flow's parallel orchestration lore to walk a full
|
|
24
|
+
Teach Flow's parallel orchestration lore to walk a full pass while pinning hidden worker permissions to tested docs.
|
|
21
25
|
|
|
22
26
|
## [4.1.12] - 2026-06-18
|
|
23
27
|
|
package/README.md
CHANGED
|
@@ -10,19 +10,19 @@ Flow v4 is a breaking simplification. It does not preserve v3 session layouts or
|
|
|
10
10
|
- Skill-guided planning, running, validation, review, cleanup, and UI quality.
|
|
11
11
|
- First-class validation guidance through `flow-test`, plus user-triggered safe
|
|
12
12
|
commit preparation through `flow-commit`.
|
|
13
|
-
- Hidden evidence, review, validation, audit, verifier, and candidate workers for broad
|
|
13
|
+
- Hidden evidence, review, validation, audit, verifier, and candidate workers for broad parallel evidence passes.
|
|
14
14
|
- Structured handoffs with coverage, evidence, confidence, and gaps.
|
|
15
15
|
- Runtime gates for approval immutability, validation evidence, review evidence, and safe session closure.
|
|
16
16
|
|
|
17
|
-
The manager still owns every Flow state change. Workers gather evidence; they do not approve plans, complete features, or close sessions.
|
|
17
|
+
The manager still owns every Flow state change. Workers gather evidence; they do not approve plans, complete features, or close sessions. Flow may use parallel workers to reduce uncertainty, but Flow remains a serial state machine: parallel work produces candidate evidence, and only the manager records state.
|
|
18
18
|
|
|
19
19
|
## Install or update
|
|
20
20
|
|
|
21
21
|
Use OpenCode's plugin installer when your OpenCode version supports it:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
opencode plugin opencode-plugin-flow@4.1.
|
|
25
|
-
npx -y opencode-plugin-flow@4.1.
|
|
24
|
+
opencode plugin opencode-plugin-flow@4.1.17 --global --force
|
|
25
|
+
npx -y opencode-plugin-flow@4.1.17 sync
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The first command adds Flow to your global OpenCode plugin config or replaces an
|
|
@@ -48,7 +48,7 @@ OpenCode config manually instead:
|
|
|
48
48
|
|
|
49
49
|
```json
|
|
50
50
|
{
|
|
51
|
-
"plugin": ["opencode-plugin-flow@4.1.
|
|
51
|
+
"plugin": ["opencode-plugin-flow@4.1.17"]
|
|
52
52
|
}
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -59,7 +59,7 @@ duplicate entry.
|
|
|
59
59
|
Then run the same pre-start skill sync and start or restart OpenCode:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
npx -y opencode-plugin-flow@4.1.
|
|
62
|
+
npx -y opencode-plugin-flow@4.1.17 sync
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
Project-local skill overrides still work through OpenCode's normal lookup:
|
|
@@ -84,15 +84,15 @@ version in your global `opencode.json`.
|
|
|
84
84
|
To inspect the installed skill set:
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
npx -y opencode-plugin-flow@4.1.
|
|
87
|
+
npx -y opencode-plugin-flow@4.1.17 doctor
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
For automation, keep the default human-readable `doctor` output and opt into
|
|
91
91
|
machine behavior explicitly:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
npx -y opencode-plugin-flow@4.1.
|
|
95
|
-
npx -y opencode-plugin-flow@4.1.
|
|
94
|
+
npx -y opencode-plugin-flow@4.1.17 doctor --json
|
|
95
|
+
npx -y opencode-plugin-flow@4.1.17 doctor --check
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
`doctor --check` and `doctor --strict` exit nonzero when the health status is
|
|
@@ -111,7 +111,7 @@ above first. Missing, incomplete, or outdated managed skills can still be
|
|
|
111
111
|
repaired with:
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
|
-
npx -y opencode-plugin-flow@4.1.
|
|
114
|
+
npx -y opencode-plugin-flow@4.1.17 sync
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
Then restart OpenCode so the refreshed registry is loaded. `sync` manages all
|
|
@@ -226,7 +226,7 @@ First remove `opencode-plugin-flow` from your OpenCode plugin config so future
|
|
|
226
226
|
OpenCode startups stop loading Flow. Then remove Flow-owned synced skills:
|
|
227
227
|
|
|
228
228
|
```bash
|
|
229
|
-
npx -y opencode-plugin-flow@4.1.
|
|
229
|
+
npx -y opencode-plugin-flow@4.1.17 uninstall
|
|
230
230
|
```
|
|
231
231
|
|
|
232
232
|
Restart OpenCode after both steps. This removes Flow-owned synced skills when
|