opencode-plugin-flow 4.3.5 → 4.3.7

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.
@@ -24,11 +24,13 @@ export declare function summarizeSession(session: Session | null): {
24
24
  status: string;
25
25
  summary: string;
26
26
  nextAction: string;
27
+ statusSummary?: never;
27
28
  dataNote?: never;
28
29
  session?: never;
29
30
  } | {
30
31
  status: "completed" | "blocked" | "planning" | "ready" | "running";
31
32
  summary: string;
33
+ statusSummary: string;
32
34
  nextAction: string;
33
35
  dataNote: string;
34
36
  session: {
@@ -46,9 +48,30 @@ export declare function summarizeSession(session: Session | null): {
46
48
  validation: string[];
47
49
  dependsOn: string[];
48
50
  } | null;
51
+ nextFeature: {
52
+ id: string;
53
+ title: string;
54
+ summary: string;
55
+ status: "pending" | "in_progress" | "completed" | "blocked";
56
+ reviewDepth: "quick" | "standard" | "detailed";
57
+ targets: string[];
58
+ validation: string[];
59
+ dependsOn: string[];
60
+ } | null;
61
+ pendingFeatures: {
62
+ id: string;
63
+ title: string;
64
+ summary: string;
65
+ status: "pending" | "in_progress" | "completed" | "blocked";
66
+ reviewDepth: "quick" | "standard" | "detailed";
67
+ targets: string[];
68
+ validation: string[];
69
+ dependsOn: string[];
70
+ }[];
49
71
  progress: {
50
72
  completed: number;
51
73
  total: number;
74
+ remaining: number;
52
75
  };
53
76
  features: {
54
77
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-plugin-flow",
3
- "version": "4.3.5",
3
+ "version": "4.3.7",
4
4
  "description": "Stateful planning and execution workflow plugin for OpenCode",
5
5
  "type": "module",
6
6
  "repository": {
@@ -32,6 +32,7 @@
32
32
  "build:types": "tsc -p tsconfig.types.json",
33
33
  "lint": "bunx biome check src tests --files-ignore-unknown=true --vcs-use-ignore-file=true",
34
34
  "package:smoke": "bun test tests/package-smoke.test.ts",
35
+ "release:monitor": "node scripts/release-monitor.mjs",
35
36
  "smoke:live": "FLOW_LIVE_SMOKE=1 bun test tests/live-opencode-smoke.test.ts",
36
37
  "test": "bun test tests",
37
38
  "typecheck": "tsc --noEmit",