opencode-plugin-flow 3.3.12 → 3.3.13
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 +4 -0
- package/README.md +3 -3
- package/dist/index.js +39 -39
- package/dist/index.js.map +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ the rejected alternatives, and the validation that was run — see
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.3.13] - 2026-06-14
|
|
10
|
+
|
|
11
|
+
Remove v2 session-resume compatibility, tighten retired-key payload parsing, shrink the current maintainer contract, and drop empty `core`/`workflow` owners from seam enforcement.
|
|
12
|
+
|
|
9
13
|
## [3.3.12] - 2026-06-14
|
|
10
14
|
|
|
11
15
|
Fix-forward the hosted release by making the empty `src/core` guard pass on clean checkouts where Git does not materialize empty directories.
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Add Flow to the `plugin` array in your `opencode.json` (global `~/.config/openco
|
|
|
31
31
|
|
|
32
32
|
```json
|
|
33
33
|
{
|
|
34
|
-
"plugin": ["opencode-plugin-flow@3.3.
|
|
34
|
+
"plugin": ["opencode-plugin-flow@3.3.13"]
|
|
35
35
|
}
|
|
36
36
|
```
|
|
37
37
|
|
|
@@ -133,7 +133,7 @@ The plugin registers a small tool surface (8 tools). All `.flow/**` mutations go
|
|
|
133
133
|
| `flow_review_record` | Record a reviewer decision (`scope: feature` or `final`). |
|
|
134
134
|
| `flow_session` | Activate or close a session, list history, or show a stored session. |
|
|
135
135
|
|
|
136
|
-
These eight tools are the whole registered surface — the v2 tool-name redirect stubs that shipped in 3.0 were removed in v3.1 as scheduled.
|
|
136
|
+
These eight tools are the whole registered surface — the v2 tool-name redirect stubs that shipped in 3.0 were removed in v3.1 as scheduled.
|
|
137
137
|
|
|
138
138
|
### Agents
|
|
139
139
|
|
|
@@ -170,7 +170,7 @@ Flow stores workflow state in the project/worktree where OpenCode is running:
|
|
|
170
170
|
|
|
171
171
|
The JSON session files are the source of truth; markdown files are derived views. There is one active session per worktree — activating another parks the current one under `.flow/stored/**`.
|
|
172
172
|
|
|
173
|
-
Flow refuses to write session state at filesystem roots or directly in `$HOME`, and asks before writing `.flow/**` under unusual workspace roots.
|
|
173
|
+
Flow refuses to write session state at filesystem roots or directly in `$HOME`, and asks before writing `.flow/**` under unusual workspace roots. Unsupported persisted session schema versions fail clearly instead of being migrated silently.
|
|
174
174
|
|
|
175
175
|
## Troubleshooting
|
|
176
176
|
|