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.
- package/CHANGELOG.md +43 -0
- package/README.md +14 -6
- package/dist/adapters/opencode/tools.d.ts +97 -0
- package/dist/cli.js +332 -15
- package/dist/cli.js.map +2 -2
- package/dist/index.js +614 -60
- package/dist/index.js.map +5 -5
- package/dist/runtime/api.d.ts +77 -0
- package/dist/runtime/schema.d.ts +729 -1
- package/dist/runtime/transitions.d.ts +51 -0
- package/package.json +1 -1
|
@@ -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?: {
|