opencode-plugin-flow 8.0.0 → 8.1.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 +39 -0
- package/README.md +2 -2
- package/dist/index.js +257 -77
- package/dist/index.js.map +16 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [8.1.1] - 2026-08-21
|
|
6
|
+
|
|
7
|
+
A crashed host no longer wedges the session lock.
|
|
8
|
+
|
|
9
|
+
- The session lock is reclaimed when its owner process is gone, instead of
|
|
10
|
+
waiting out a 30-second timeout that then asks for manual removal. A reused
|
|
11
|
+
PID still waits. Finish or close active sessions before upgrading, as usual.
|
|
12
|
+
- **Session v5 schema:** a run accepts at most one review at the schema
|
|
13
|
+
boundary. The invariant already required this; documents Flow wrote cannot
|
|
14
|
+
carry a second review. Existing documents keep their shape.
|
|
15
|
+
- Without `OPENCODE_FLOW_REVIEWER_MODEL` the reviewer shares the manager's
|
|
16
|
+
model. Independence is structural. The guarantee page now carries a threat
|
|
17
|
+
model.
|
|
18
|
+
|
|
19
|
+
Install or update:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
opencode plugin opencode-plugin-flow@8.1.1 --global --force
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## [8.1.0] - 2026-08-19
|
|
26
|
+
|
|
27
|
+
Inspect surveys can finish with blockers, and `/flow-auto` hands back a findings list.
|
|
28
|
+
|
|
29
|
+
- Compact `flow_status` and close delivery now carry a derived `findingsDigest`
|
|
30
|
+
over every identified finding across attempts. `/flow-auto` prints that list
|
|
31
|
+
when it parks or stops instead of going silent after a blocked review.
|
|
32
|
+
- **Session v5 schema:** `PlanFeature.kind` is optional `change` or `inspect`.
|
|
33
|
+
Absent is `change`. A failed inspect review completes that slice so later
|
|
34
|
+
features can start without `flow_feature_reset`. `completed` then means the
|
|
35
|
+
survey finished, not that the tree is clean. Existing documents keep the
|
|
36
|
+
repair loop.
|
|
37
|
+
|
|
38
|
+
Install or update:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
opencode plugin opencode-plugin-flow@8.1.0 --global --force
|
|
42
|
+
```
|
|
43
|
+
|
|
5
44
|
## [8.0.0] - 2026-08-18
|
|
6
45
|
|
|
7
46
|
One evidence record, a thinner run loop, and a freeze on further declarations.
|
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ expensive, and it is overhead when it is not.
|
|
|
40
40
|
Install the exact npm release through OpenCode:
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
opencode plugin opencode-plugin-flow@8.
|
|
43
|
+
opencode plugin opencode-plugin-flow@8.1.1 --global --force
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
Omit `--global` for project scope. Version pins are exact and never update on
|
|
@@ -51,7 +51,7 @@ The equivalent manual project configuration is:
|
|
|
51
51
|
```json
|
|
52
52
|
{
|
|
53
53
|
"$schema": "https://opencode.ai/config.json",
|
|
54
|
-
"plugin": ["opencode-plugin-flow@8.
|
|
54
|
+
"plugin": ["opencode-plugin-flow@8.1.1"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|