opencode-plugin-flow 8.1.1 → 8.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 +51 -0
- package/README.md +2 -2
- package/dist/index.js +483 -299
- package/dist/index.js.map +22 -20
- package/dist/platform/opencode/sdk.d.ts +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,57 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [8.1.3] - 2026-08-28
|
|
6
|
+
|
|
7
|
+
Release claims now come from retained evidence instead of trusted summaries.
|
|
8
|
+
|
|
9
|
+
- Declared gate assertions must be satisfied before final review and completed
|
|
10
|
+
closure. New named evidence writes JUnit to the plan-bound
|
|
11
|
+
`.flow/results.xml`; execution cannot substitute another path. Reports are read once
|
|
12
|
+
from a stable, bounded workspace file without following symlinks.
|
|
13
|
+
- Eval failures identify the evaluator, provider, host, or persistence boundary
|
|
14
|
+
that produced them. The release matrix uses repository-owned policy with enough
|
|
15
|
+
attempts to measure its 90% and 100% thresholds.
|
|
16
|
+
- Exact-artifact canary results are derived from one OpenCode session lineage.
|
|
17
|
+
Release qualification seals all attempts, transcripts, provenance, canary,
|
|
18
|
+
artifact, and grader source into an immutable bundle that CI independently
|
|
19
|
+
reopens and regrades.
|
|
20
|
+
- Publication requires the tag and packed artifact to match the release evidence.
|
|
21
|
+
npm and GitHub operations are bounded and idempotent, refuse conflicting bytes,
|
|
22
|
+
and recover through an exact draft without destructive asset replacement.
|
|
23
|
+
- **Session v5 schema:** unchanged. Runtime commands and tools are unchanged.
|
|
24
|
+
|
|
25
|
+
Install or update:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
opencode plugin opencode-plugin-flow@8.1.3 --global --force
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## [8.1.2] - 2026-08-26
|
|
32
|
+
|
|
33
|
+
Long Grok eval turns no longer fail at Bun's implicit five-minute fetch cutoff.
|
|
34
|
+
|
|
35
|
+
- Eval OpenCode requests keep their cancellation and stall guards without Bun's
|
|
36
|
+
five-minute fetch cutoff.
|
|
37
|
+
- Hidden benchmark graders ignore property order and cover sparse, blank, or
|
|
38
|
+
empty Markdown.
|
|
39
|
+
- Release matrices now predeclare three attempts for 100% cases and ten for 90%
|
|
40
|
+
cases. They refuse an unpinned Bun before model calls and pass their measured
|
|
41
|
+
artifact directly to canary preparation. Windows handoff grading accepts the
|
|
42
|
+
exact command in natural instructions, not one fixed sentence shape.
|
|
43
|
+
- Inspect evals require one exact finding certificate in durable review state and
|
|
44
|
+
the final response.
|
|
45
|
+
- A final run with unsatisfied extra evidence now projects
|
|
46
|
+
`await-user-direction` before review and offers the declared environment,
|
|
47
|
+
deferred closure, or abandoned closure as explicit next moves.
|
|
48
|
+
- **Session v5 schema:** unchanged. Runtime commands and tools are unchanged.
|
|
49
|
+
|
|
50
|
+
Install or update:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
opencode plugin opencode-plugin-flow@8.1.2 --global --force
|
|
54
|
+
```
|
|
55
|
+
|
|
5
56
|
## [8.1.1] - 2026-08-21
|
|
6
57
|
|
|
7
58
|
A crashed host no longer wedges the session lock.
|
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.1.
|
|
43
|
+
opencode plugin opencode-plugin-flow@8.1.3 --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.1.
|
|
54
|
+
"plugin": ["opencode-plugin-flow@8.1.3"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|