opencode-plugin-flow 7.3.1 → 8.0.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 CHANGED
@@ -2,9 +2,44 @@
2
2
 
3
3
  One short entry per release, written for users deciding whether to upgrade.
4
4
 
5
- ## [Unreleased]
5
+ ## [8.0.0] - 2026-08-18
6
6
 
7
- No changes yet.
7
+ One evidence record, a thinner run loop, and a freeze on further declarations.
8
+
9
+ - **Session v5 schema:** `plan.gate` and `plan.externalEvidence` are removed.
10
+ Plans declare `evidence`: exactly one `scope: "gate"` command plus extra
11
+ observations this host may be unable to produce. Satisfaction is one
12
+ function. Finish or close active sessions before upgrading. There is no
13
+ dual reader.
14
+ - `/flow-run` is a route table. Worker waves load only after a feature run
15
+ starts. Compact `flow_status` no longer carries process-local auto-drive
16
+ timing.
17
+ - A new required-at-save evidence field is a major. Do not add another
18
+ declaration to close a measured cheat.
19
+
20
+ Install or update:
21
+
22
+ ```bash
23
+ opencode plugin opencode-plugin-flow@8.0.0 --global --force
24
+ ```
25
+
26
+ ## [7.3.2] - 2026-08-17
27
+
28
+ Eval and release discipline for thin-router planning.
29
+
30
+ - `plan-only-stops` fails worker dispatch during planning and `flow_plan_save`
31
+ without prior `flow_guidance { id: "flow-plan" }`; committed cassettes pin both.
32
+ Eval reports include ungated `guidanceSkipped` counts for lazy-loading compliance.
33
+ `skipped-case-named-binding` isolates ADR 0012's named-case rule without a
34
+ `platform: "win32"` gate. Prompt footprint ceiling ratcheted to 16,000 bytes. The
35
+ Session v5 schema and the published command, tool, guide, and agent inventory are
36
+ unchanged.
37
+
38
+ Install or update:
39
+
40
+ ```bash
41
+ opencode plugin opencode-plugin-flow@7.3.2 --global --force
42
+ ```
8
43
 
9
44
  ## [7.3.1] - 2026-08-17
10
45
 
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@7.3.1 --global --force
43
+ opencode plugin opencode-plugin-flow@8.0.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@7.3.1"]
54
+ "plugin": ["opencode-plugin-flow@8.0.0"]
55
55
  }
56
56
  ```
57
57