opencode-plugin-flow 8.1.2 → 8.2.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 +51 -0
- package/README.md +27 -5
- package/dist/index.js +736 -315
- package/dist/index.js.map +26 -24
- package/dist/platform/opencode/sdk.d.ts +1 -1
- package/package.json +3 -3
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.2.0] - 2026-08-31
|
|
6
|
+
|
|
7
|
+
Reviewer selection is now native plugin configuration, and Flow reports enough
|
|
8
|
+
derived evidence for a bounded delivery handoff.
|
|
9
|
+
|
|
10
|
+
- OpenCode plugin tuple options can select the reviewer model and step budget.
|
|
11
|
+
Flow resolves the selection once per process and reports it in `/flow-status`.
|
|
12
|
+
Environment variables remain fallback configuration.
|
|
13
|
+
- Every accepted close returns a deterministic, versioned delivery summary with
|
|
14
|
+
feature attempts, outcomes, terminal findings, changed-artifact declarations,
|
|
15
|
+
and tiered assurance. The handoff grants no external action authority.
|
|
16
|
+
- A new quickstart and structured external pilot cover installation, reviewer
|
|
17
|
+
selection, first-run checks, recovery, and feedback without telemetry.
|
|
18
|
+
- Report-only evals now measure repository gate discovery and task-specific risk
|
|
19
|
+
questions. Eval host configuration uses the same reviewer tuple as production,
|
|
20
|
+
and release notes derive their provider evidence from retained artifacts.
|
|
21
|
+
- **Session v5 schema:** unchanged. Runtime tools, commands, guides, and agents
|
|
22
|
+
keep their existing names and inputs.
|
|
23
|
+
|
|
24
|
+
Install or update:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
opencode plugin opencode-plugin-flow@8.2.0 --global --force
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## [8.1.3] - 2026-08-28
|
|
31
|
+
|
|
32
|
+
Release claims now come from retained evidence instead of trusted summaries.
|
|
33
|
+
|
|
34
|
+
- Declared gate assertions must be satisfied before final review and completed
|
|
35
|
+
closure. New named evidence writes JUnit to the plan-bound
|
|
36
|
+
`.flow/results.xml`; execution cannot substitute another path. Reports are read once
|
|
37
|
+
from a stable, bounded workspace file without following symlinks.
|
|
38
|
+
- Eval failures identify the evaluator, provider, host, or persistence boundary
|
|
39
|
+
that produced them. The release matrix uses repository-owned policy with enough
|
|
40
|
+
attempts to measure its 90% and 100% thresholds.
|
|
41
|
+
- Exact-artifact canary results are derived from one OpenCode session lineage.
|
|
42
|
+
Release qualification seals all attempts, transcripts, provenance, canary,
|
|
43
|
+
artifact, and grader source into an immutable bundle that CI independently
|
|
44
|
+
reopens and regrades.
|
|
45
|
+
- Publication requires the tag and packed artifact to match the release evidence.
|
|
46
|
+
npm and GitHub operations are bounded and idempotent, refuse conflicting bytes,
|
|
47
|
+
and recover through an exact draft without destructive asset replacement.
|
|
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.3 --global --force
|
|
54
|
+
```
|
|
55
|
+
|
|
5
56
|
## [8.1.2] - 2026-08-26
|
|
6
57
|
|
|
7
58
|
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.
|
|
43
|
+
opencode plugin opencode-plugin-flow@8.2.0 --global --force
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
Omit `--global` for project scope. Version pins are exact and never update on
|
|
@@ -51,10 +51,28 @@ 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.2.0"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
+
For an explicit reviewer model, use OpenCode's plugin tuple options:
|
|
59
|
+
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"$schema": "https://opencode.ai/config.json",
|
|
63
|
+
"plugin": [
|
|
64
|
+
[
|
|
65
|
+
"opencode-plugin-flow@8.2.0",
|
|
66
|
+
{ "reviewer": { "model": "provider/model", "steps": 80 } }
|
|
67
|
+
]
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The tuple values take precedence over `OPENCODE_FLOW_REVIEWER_MODEL` and
|
|
73
|
+
`OPENCODE_FLOW_REVIEWER_STEPS`. `/flow-status` reports the process-local
|
|
74
|
+
selection, but only a successful reviewer run confirms model availability.
|
|
75
|
+
|
|
58
76
|
Restart OpenCode after changing configuration. OpenCode owns installation and
|
|
59
77
|
configuration; see its
|
|
60
78
|
[plugin documentation](https://opencode.ai/docs/plugins/). Flow has no installer
|
|
@@ -68,6 +86,9 @@ remain inert history, and there is no migration or rollback layer.
|
|
|
68
86
|
|
|
69
87
|
## Quick start
|
|
70
88
|
|
|
89
|
+
For a clean installation and reviewer-configuration check, follow the
|
|
90
|
+
[quickstart](docs/quickstart.md).
|
|
91
|
+
|
|
71
92
|
```text
|
|
72
93
|
/flow-auto add rate limiting to the public API
|
|
73
94
|
```
|
|
@@ -127,9 +148,10 @@ you granted.
|
|
|
127
148
|
6. A passing review advances the plan. A failed feature is never picked up again
|
|
128
149
|
implicitly — Flow reports the blocker and waits for an explicit retry or an
|
|
129
150
|
independent-feature choice. The last passing feature allows closure, and every
|
|
130
|
-
accepted close returns a delivery summary derived from recorded state:
|
|
131
|
-
feature's attempts, latest outcome, terminal findings, and tiered assurance
|
|
132
|
-
explicit limitations.
|
|
151
|
+
accepted close returns a versioned delivery summary derived from recorded state:
|
|
152
|
+
each feature's attempts, latest outcome, terminal findings, and tiered assurance
|
|
153
|
+
with explicit limitations. Delivery grants no PR, merge, publish, or release
|
|
154
|
+
authority.
|
|
133
155
|
|
|
134
156
|
Findings keep stable ids across retries, and a failed review must carry every
|
|
135
157
|
still-live finding forward — the runtime rejects a submission that drops one. A
|