opencode-plugin-flow 7.3.2 → 8.1.0
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 +40 -0
- package/README.md +2 -2
- package/dist/index.js +368 -345
- package/dist/index.js.map +16 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [8.1.0] - 2026-08-19
|
|
6
|
+
|
|
7
|
+
Inspect surveys can finish with blockers, and `/flow-auto` hands back a findings list.
|
|
8
|
+
|
|
9
|
+
- Compact `flow_status` and close delivery now carry a derived `findingsDigest`
|
|
10
|
+
over every identified finding across attempts. `/flow-auto` prints that list
|
|
11
|
+
when it parks or stops instead of going silent after a blocked review.
|
|
12
|
+
- **Session v5 schema:** `PlanFeature.kind` is optional `change` or `inspect`.
|
|
13
|
+
Absent is `change`. A failed inspect review completes that slice so later
|
|
14
|
+
features can start without `flow_feature_reset`. `completed` then means the
|
|
15
|
+
survey finished, not that the tree is clean. Existing documents keep the
|
|
16
|
+
repair loop.
|
|
17
|
+
|
|
18
|
+
Install or update:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
opencode plugin opencode-plugin-flow@8.1.0 --global --force
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## [8.0.0] - 2026-08-18
|
|
25
|
+
|
|
26
|
+
One evidence record, a thinner run loop, and a freeze on further declarations.
|
|
27
|
+
|
|
28
|
+
- **Session v5 schema:** `plan.gate` and `plan.externalEvidence` are removed.
|
|
29
|
+
Plans declare `evidence`: exactly one `scope: "gate"` command plus extra
|
|
30
|
+
observations this host may be unable to produce. Satisfaction is one
|
|
31
|
+
function. Finish or close active sessions before upgrading. There is no
|
|
32
|
+
dual reader.
|
|
33
|
+
- `/flow-run` is a route table. Worker waves load only after a feature run
|
|
34
|
+
starts. Compact `flow_status` no longer carries process-local auto-drive
|
|
35
|
+
timing.
|
|
36
|
+
- A new required-at-save evidence field is a major. Do not add another
|
|
37
|
+
declaration to close a measured cheat.
|
|
38
|
+
|
|
39
|
+
Install or update:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
opencode plugin opencode-plugin-flow@8.0.0 --global --force
|
|
43
|
+
```
|
|
44
|
+
|
|
5
45
|
## [7.3.2] - 2026-08-17
|
|
6
46
|
|
|
7
47
|
Eval and release discipline for thin-router planning.
|
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@
|
|
43
|
+
opencode plugin opencode-plugin-flow@8.1.0 --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@
|
|
54
|
+
"plugin": ["opencode-plugin-flow@8.1.0"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|