opencode-plugin-flow 4.1.7 → 4.1.9
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 +8 -0
- package/README.md +19 -10
- package/dist/index.js +468 -460
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.9] - 2026-06-17
|
|
7
|
+
|
|
8
|
+
Make public Flow command lore self-contained so stale native skill discovery cannot block the required loop.
|
|
9
|
+
|
|
10
|
+
## [4.1.8] - 2026-06-17
|
|
11
|
+
|
|
12
|
+
Make Flow command preflight overrule stale OpenCode command lore, with review instructions bundled where skill discovery can lag.
|
|
13
|
+
|
|
6
14
|
## [4.1.7] - 2026-06-17
|
|
7
15
|
|
|
8
16
|
Teach Flow's managed skill lore to test, commit, and trigger more precisely while keeping release state and `.flow/**` artifacts guarded by explicit maintainer intent.
|
package/README.md
CHANGED
|
@@ -21,8 +21,8 @@ The manager still owns every Flow state change. Workers gather evidence; they do
|
|
|
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.9 --global --force
|
|
25
|
+
npx -y opencode-plugin-flow@4.1.9 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.9"]
|
|
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.9 sync
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
Project-local skill overrides still work through OpenCode's normal lookup:
|
|
@@ -84,15 +84,22 @@ 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.9 doctor
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
If a command reports `Skill "flow-review" not found. Available skills...` or a
|
|
91
|
-
similar Flow skill-loading error
|
|
92
|
-
|
|
91
|
+
similar Flow skill-loading error after upgrading, it is usually an older
|
|
92
|
+
OpenCode process or stale resolved command body. Flow command preflight replaces
|
|
93
|
+
public Flow command bodies in the running process, and `/flow-review` no longer
|
|
94
|
+
asks OpenCode to native-load required public Flow skills. Public Flow command
|
|
95
|
+
preflight replaces stale command bodies with bundled command instructions, so
|
|
96
|
+
`/flow-auto`, `/flow-plan`, `/flow-run`, and `/flow-review` can continue even
|
|
97
|
+
when native skill discovery lags. Run `/flow-status` or the doctor command
|
|
98
|
+
above first. Missing, incomplete, or outdated managed skills can still be
|
|
99
|
+
repaired with:
|
|
93
100
|
|
|
94
101
|
```bash
|
|
95
|
-
npx -y opencode-plugin-flow@4.1.
|
|
102
|
+
npx -y opencode-plugin-flow@4.1.9 sync
|
|
96
103
|
```
|
|
97
104
|
|
|
98
105
|
Then restart OpenCode so the refreshed registry is loaded. `sync` manages all
|
|
@@ -103,7 +110,9 @@ asks for a user decision instead of overwriting local work.
|
|
|
103
110
|
|
|
104
111
|
## Commands
|
|
105
112
|
|
|
106
|
-
Commands are
|
|
113
|
+
Commands are bundled entrypoints. OpenCode still syncs the Flow skills for
|
|
114
|
+
discoverability and manual use, but public command execution does not depend on
|
|
115
|
+
native skill discovery for the required Flow loop:
|
|
107
116
|
|
|
108
117
|
| Command | Purpose |
|
|
109
118
|
| --- | --- |
|
|
@@ -188,7 +197,7 @@ First remove `opencode-plugin-flow` from your OpenCode plugin config so future
|
|
|
188
197
|
OpenCode startups stop loading Flow. Then remove Flow-owned synced skills:
|
|
189
198
|
|
|
190
199
|
```bash
|
|
191
|
-
npx -y opencode-plugin-flow@4.1.
|
|
200
|
+
npx -y opencode-plugin-flow@4.1.9 uninstall
|
|
192
201
|
```
|
|
193
202
|
|
|
194
203
|
Restart OpenCode after both steps. This removes Flow-owned synced skills when
|