opencode-plugin-flow 5.2.2 → 5.3.1
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 +50 -0
- package/README.md +92 -16
- package/dist/cli.js +1919 -58
- package/dist/cli.js.map +6 -5
- package/dist/index.js +11454 -7617
- package/dist/index.js.map +36 -23
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-plugin-flow",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Stateful planning and execution workflow plugin for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"lint": "bunx biome check biome.json src tests scripts --files-ignore-unknown=true --vcs-use-ignore-file=true",
|
|
41
41
|
"prompt:quality": "bun run scripts/prompt-quality.ts",
|
|
42
42
|
"prompt:model-eval": "bun run scripts/prompt-model-eval.ts",
|
|
43
|
+
"harness:report": "bun run scripts/harness-resource-report.ts --fixture tests/fixtures/harness/full-repo-audit-v1.json",
|
|
44
|
+
"harness:gate": "bun run scripts/harness-resource-report.ts --fixture tests/fixtures/harness/full-repo-audit-v1.json --require standard && bun run scripts/harness-resource-report.ts --fixture tests/fixtures/harness/full-repo-audit-v1.json --require assurance",
|
|
43
45
|
"release:metadata": "bun run scripts/release-metadata.ts",
|
|
44
46
|
"replay:report": "bun run scripts/replay-report.ts",
|
|
45
47
|
"transport:report": "bun run scripts/causal-transport-report.ts",
|