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.
@@ -124,6 +124,83 @@ export declare const FlowFeatureCompleteToolSchema: z.ZodObject<{
124
124
  summary: z.ZodString;
125
125
  resolutionHint: z.ZodOptional<z.ZodString>;
126
126
  }, z.core.$strict>]>>;
127
+ orchestrationPasses: z.ZodOptional<z.ZodArray<z.ZodObject<{
128
+ id: z.ZodString;
129
+ kind: z.ZodEnum<{
130
+ discovery: "discovery";
131
+ audit: "audit";
132
+ review: "review";
133
+ validation: "validation";
134
+ verification: "verification";
135
+ candidate: "candidate";
136
+ "implementation-decision": "implementation-decision";
137
+ }>;
138
+ decision: z.ZodOptional<z.ZodEnum<{
139
+ serial: "serial";
140
+ parallel: "parallel";
141
+ "candidate-exact-path": "candidate-exact-path";
142
+ "candidate-worktree": "candidate-worktree";
143
+ tournament: "tournament";
144
+ skipped: "skipped";
145
+ }>>;
146
+ decisionReason: z.ZodOptional<z.ZodString>;
147
+ candidateEligibility: z.ZodDefault<z.ZodEnum<{
148
+ eligible: "eligible";
149
+ not_eligible: "not_eligible";
150
+ unknown: "unknown";
151
+ }>>;
152
+ candidateDecision: z.ZodOptional<z.ZodEnum<{
153
+ skipped: "skipped";
154
+ used: "used";
155
+ serial_required: "serial_required";
156
+ }>>;
157
+ decisionFactors: z.ZodDefault<z.ZodArray<z.ZodEnum<{
158
+ shared_state: "shared_state";
159
+ overlapping_files: "overlapping_files";
160
+ small_slice: "small_slice";
161
+ needs_manager_judgment: "needs_manager_judgment";
162
+ independent_surface: "independent_surface";
163
+ validation_available: "validation_available";
164
+ }>>>;
165
+ modes: z.ZodDefault<z.ZodArray<z.ZodEnum<{
166
+ audit: "audit";
167
+ review: "review";
168
+ validation: "validation";
169
+ evidence: "evidence";
170
+ verifier: "verifier";
171
+ "candidate-implementation": "candidate-implementation";
172
+ }>>>;
173
+ workerCount: z.ZodDefault<z.ZodNumber>;
174
+ candidateWorkerCount: z.ZodDefault<z.ZodNumber>;
175
+ verifierWorkerCount: z.ZodDefault<z.ZodNumber>;
176
+ sliceIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
177
+ dependsOn: z.ZodDefault<z.ZodArray<z.ZodString>>;
178
+ writeScope: z.ZodDefault<z.ZodEnum<{
179
+ none: "none";
180
+ "manager-serial": "manager-serial";
181
+ "exact-path": "exact-path";
182
+ "isolated-worktree": "isolated-worktree";
183
+ mixed: "mixed";
184
+ }>>;
185
+ handoffRefs: z.ZodDefault<z.ZodArray<z.ZodString>>;
186
+ verificationStatus: z.ZodDefault<z.ZodEnum<{
187
+ pending: "pending";
188
+ passed: "passed";
189
+ failed: "failed";
190
+ mixed: "mixed";
191
+ "not-needed": "not-needed";
192
+ downgraded: "downgraded";
193
+ }>>;
194
+ outcome: z.ZodDefault<z.ZodEnum<{
195
+ accepted: "accepted";
196
+ modified: "modified";
197
+ rejected: "rejected";
198
+ partial: "partial";
199
+ "not-covered": "not-covered";
200
+ superseded: "superseded";
201
+ }>>;
202
+ synthesisRef: z.ZodOptional<z.ZodString>;
203
+ }, z.core.$strict>>>;
127
204
  }, z.core.$strict>;
128
205
  export declare function flowStatus(worktree: string): Promise<RuntimeResponse>;
129
206
  export declare function flowPlanSave(worktree: string, input: unknown): Promise<RuntimeResponse>;