opencode-plugin-flow 4.1.1 → 4.1.3
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 +13 -1
- package/dist/cli.js +1067 -4
- package/dist/index.js +185 -181
- package/dist/index.js.map +7 -7
- 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.3] - 2026-06-16
|
|
7
|
+
|
|
8
|
+
Sharpen Flow's skill/runtime contract with aligned final-review language, broader gate coverage, CLI smoke tests, and skill-aware preflight routing.
|
|
9
|
+
|
|
10
|
+
## [4.1.2] - 2026-06-15
|
|
11
|
+
|
|
12
|
+
Make Flow's skill registry lag visible with restart-aware setup warnings, a doctor command, and a bundled review fallback for stale OpenCode startups.
|
|
13
|
+
|
|
6
14
|
## [4.1.1] - 2026-06-15
|
|
7
15
|
|
|
8
16
|
Keep Flow's local session ledger out of Git by default with a generated `.flow/.gitignore`, while preserving opt-in versioning for teams that intentionally archive session evidence.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Add Flow to your OpenCode config:
|
|
|
20
20
|
|
|
21
21
|
```json
|
|
22
22
|
{
|
|
23
|
-
"plugin": ["opencode-plugin-flow@4.1.
|
|
23
|
+
"plugin": ["opencode-plugin-flow@4.1.3"]
|
|
24
24
|
}
|
|
25
25
|
```
|
|
26
26
|
|
|
@@ -41,6 +41,18 @@ Project-local skill overrides still work through OpenCode's normal lookup:
|
|
|
41
41
|
.opencode/skills/flow-plan/SKILL.md
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
If Flow installs or updates skills during the current OpenCode startup, restart
|
|
45
|
+
OpenCode once more before using Flow commands. OpenCode may have already scanned
|
|
46
|
+
the skill registry for the running process, so a just-synced skill can exist on
|
|
47
|
+
disk while still being unavailable to that process. Flow reports this through
|
|
48
|
+
`flow_status` as `setup.skills.status: "restart_required"`.
|
|
49
|
+
|
|
50
|
+
To inspect the installed skill set:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npx -y opencode-plugin-flow@4.1.3 doctor
|
|
54
|
+
```
|
|
55
|
+
|
|
44
56
|
## Commands
|
|
45
57
|
|
|
46
58
|
Commands are thin pointers into skills:
|