opencode-plugin-flow 4.3.7 → 4.3.8
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 +20 -0
- package/README.md +13 -6
- package/dist/adapters/opencode/tools.d.ts +75 -0
- package/dist/cli.js +202 -15
- package/dist/cli.js.map +2 -2
- package/dist/index.js +364 -32
- package/dist/index.js.map +5 -5
- package/dist/runtime/api.d.ts +58 -0
- package/dist/runtime/schema.d.ts +534 -0
- package/dist/runtime/transitions.d.ts +41 -0
- package/package.json +1 -1
|
@@ -89,6 +89,30 @@ 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
|
+
skippedCandidateDecisionCount: number;
|
|
98
|
+
latestPasses: {
|
|
99
|
+
id: string;
|
|
100
|
+
kind: "discovery" | "audit" | "review" | "validation" | "verification" | "candidate" | "implementation-decision";
|
|
101
|
+
modes: ("audit" | "review" | "validation" | "evidence" | "verifier" | "candidate-implementation")[];
|
|
102
|
+
workerCount: number;
|
|
103
|
+
candidateWorkerCount: number;
|
|
104
|
+
verifierWorkerCount: number;
|
|
105
|
+
sliceIds: string[];
|
|
106
|
+
dependsOn: string[];
|
|
107
|
+
writeScope: "none" | "manager-serial" | "exact-path" | "isolated-worktree" | "mixed";
|
|
108
|
+
handoffRefs: string[];
|
|
109
|
+
verificationStatus: "pending" | "passed" | "failed" | "mixed" | "not-needed" | "downgraded";
|
|
110
|
+
outcome: "accepted" | "rejected" | "partial" | "not-covered" | "superseded";
|
|
111
|
+
decision?: "serial" | "parallel" | "candidate-exact-path" | "candidate-worktree" | "tournament" | "skipped" | undefined;
|
|
112
|
+
decisionReason?: string | undefined;
|
|
113
|
+
synthesisRef?: string | undefined;
|
|
114
|
+
}[];
|
|
115
|
+
};
|
|
92
116
|
tokenTelemetry: {
|
|
93
117
|
note: string | undefined;
|
|
94
118
|
source: "host_unavailable" | "reported";
|
|
@@ -144,6 +168,23 @@ export declare function summarizeSession(session: Session | null): {
|
|
|
144
168
|
status: "passed" | "failed";
|
|
145
169
|
summary: string;
|
|
146
170
|
}[];
|
|
171
|
+
orchestrationPasses: {
|
|
172
|
+
id: string;
|
|
173
|
+
kind: "discovery" | "audit" | "review" | "validation" | "verification" | "candidate" | "implementation-decision";
|
|
174
|
+
modes: ("audit" | "review" | "validation" | "evidence" | "verifier" | "candidate-implementation")[];
|
|
175
|
+
workerCount: number;
|
|
176
|
+
candidateWorkerCount: number;
|
|
177
|
+
verifierWorkerCount: number;
|
|
178
|
+
sliceIds: string[];
|
|
179
|
+
dependsOn: string[];
|
|
180
|
+
writeScope: "none" | "manager-serial" | "exact-path" | "isolated-worktree" | "mixed";
|
|
181
|
+
handoffRefs: string[];
|
|
182
|
+
verificationStatus: "pending" | "passed" | "failed" | "mixed" | "not-needed" | "downgraded";
|
|
183
|
+
outcome: "accepted" | "rejected" | "partial" | "not-covered" | "superseded";
|
|
184
|
+
decision?: "serial" | "parallel" | "candidate-exact-path" | "candidate-worktree" | "tournament" | "skipped" | undefined;
|
|
185
|
+
decisionReason?: string | undefined;
|
|
186
|
+
synthesisRef?: string | undefined;
|
|
187
|
+
}[];
|
|
147
188
|
validationScope?: "targeted" | "broad" | undefined;
|
|
148
189
|
featureReviewDepth?: "quick" | "standard" | "detailed" | undefined;
|
|
149
190
|
featureReview?: {
|