opencode-plugin-flow 8.1.2 → 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 +26 -0
- package/README.md +2 -2
- package/dist/index.js +468 -291
- package/dist/index.js.map +22 -20
- package/dist/platform/opencode/sdk.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
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
|
+
|
|
5
31
|
## [8.1.2] - 2026-08-26
|
|
6
32
|
|
|
7
33
|
Long Grok eval turns no longer fail at Bun's implicit five-minute fetch cutoff.
|
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
|
|