opencode-plugin-flow 4.3.7 → 4.3.9

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.
@@ -89,6 +89,37 @@ export declare function summarizeSession(session: Session | null): {
89
89
  reviewCount: number;
90
90
  failedReviewCount: number;
91
91
  failedReviewAttemptsByFeature: Record<string, number>;
92
+ orchestration: {
93
+ passCount: number;
94
+ workerCount: number;
95
+ candidatePassCount: number;
96
+ verifierPassCount: number;
97
+ candidateEligibleCount: number;
98
+ candidateUsedDecisionCount: number;
99
+ candidateSerialRequiredDecisionCount: number;
100
+ skippedCandidateDecisionCount: number;
101
+ recordedPassIds: string[];
102
+ latestPasses: {
103
+ id: string;
104
+ kind: "discovery" | "audit" | "review" | "validation" | "verification" | "candidate" | "implementation-decision";
105
+ candidateEligibility: "eligible" | "not_eligible" | "unknown";
106
+ decisionFactors: ("shared_state" | "overlapping_files" | "small_slice" | "needs_manager_judgment" | "independent_surface" | "validation_available")[];
107
+ modes: ("audit" | "review" | "validation" | "evidence" | "verifier" | "candidate-implementation")[];
108
+ workerCount: number;
109
+ candidateWorkerCount: number;
110
+ verifierWorkerCount: number;
111
+ sliceIds: string[];
112
+ dependsOn: string[];
113
+ writeScope: "none" | "manager-serial" | "exact-path" | "isolated-worktree" | "mixed";
114
+ handoffRefs: string[];
115
+ verificationStatus: "pending" | "passed" | "failed" | "mixed" | "not-needed" | "downgraded";
116
+ outcome: "accepted" | "modified" | "rejected" | "partial" | "not-covered" | "superseded";
117
+ decision?: "serial" | "parallel" | "candidate-exact-path" | "candidate-worktree" | "tournament" | "skipped" | undefined;
118
+ decisionReason?: string | undefined;
119
+ candidateDecision?: "skipped" | "used" | "serial_required" | undefined;
120
+ synthesisRef?: string | undefined;
121
+ }[];
122
+ };
92
123
  tokenTelemetry: {
93
124
  note: string | undefined;
94
125
  source: "host_unavailable" | "reported";
@@ -144,6 +175,26 @@ export declare function summarizeSession(session: Session | null): {
144
175
  status: "passed" | "failed";
145
176
  summary: string;
146
177
  }[];
178
+ orchestrationPasses: {
179
+ id: string;
180
+ kind: "discovery" | "audit" | "review" | "validation" | "verification" | "candidate" | "implementation-decision";
181
+ candidateEligibility: "eligible" | "not_eligible" | "unknown";
182
+ decisionFactors: ("shared_state" | "overlapping_files" | "small_slice" | "needs_manager_judgment" | "independent_surface" | "validation_available")[];
183
+ modes: ("audit" | "review" | "validation" | "evidence" | "verifier" | "candidate-implementation")[];
184
+ workerCount: number;
185
+ candidateWorkerCount: number;
186
+ verifierWorkerCount: number;
187
+ sliceIds: string[];
188
+ dependsOn: string[];
189
+ writeScope: "none" | "manager-serial" | "exact-path" | "isolated-worktree" | "mixed";
190
+ handoffRefs: string[];
191
+ verificationStatus: "pending" | "passed" | "failed" | "mixed" | "not-needed" | "downgraded";
192
+ outcome: "accepted" | "modified" | "rejected" | "partial" | "not-covered" | "superseded";
193
+ decision?: "serial" | "parallel" | "candidate-exact-path" | "candidate-worktree" | "tournament" | "skipped" | undefined;
194
+ decisionReason?: string | undefined;
195
+ candidateDecision?: "skipped" | "used" | "serial_required" | undefined;
196
+ synthesisRef?: string | undefined;
197
+ }[];
147
198
  validationScope?: "targeted" | "broad" | undefined;
148
199
  featureReviewDepth?: "quick" | "standard" | "detailed" | undefined;
149
200
  featureReview?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-plugin-flow",
3
- "version": "4.3.7",
3
+ "version": "4.3.9",
4
4
  "description": "Stateful planning and execution workflow plugin for OpenCode",
5
5
  "type": "module",
6
6
  "repository": {