@effect-agent/pr-review 0.1.0-beta.21 → 0.1.0-beta.23
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/README.md +63 -46
- package/dist/action.d.mts +13 -13
- package/dist/action.mjs +33 -25
- package/dist/action.mjs.map +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/{fan-out-D5xrmadQ.d.mts → fan-out-BJBTAYuh.d.mts} +278 -303
- package/dist/{github-DSqZp3Ce.mjs → github-BbwYzNrC.mjs} +588 -243
- package/dist/github-BbwYzNrC.mjs.map +1 -0
- package/dist/index.d.mts +72 -116
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/dist/{providers-CblG1G9b.mjs → providers-NyP-4rS6.mjs} +162 -578
- package/dist/providers-NyP-4rS6.mjs.map +1 -0
- package/dist/testing.d.mts +4 -15
- package/dist/testing.mjs +12 -41
- package/dist/testing.mjs.map +1 -1
- package/package.json +2 -2
- package/src/action.ts +40 -34
- package/src/internal/action-entry.ts +0 -1
- package/src/internal/coverage.ts +147 -532
- package/src/internal/factory.ts +29 -50
- package/src/internal/fan-out-scripted.ts +26 -80
- package/src/internal/fan-out.ts +577 -426
- package/src/internal/profiles.ts +8 -8
- package/src/internal/render.ts +34 -45
- package/src/internal/retirement.ts +3 -1
- package/src/internal/review-agent.ts +6 -1
- package/src/internal/review-state.ts +43 -19
- package/src/internal/review-units.ts +25 -0
- package/src/internal/run.ts +211 -174
- package/src/internal/source.ts +1 -1
- package/dist/github-DSqZp3Ce.mjs.map +0 -1
- package/dist/providers-CblG1G9b.mjs.map +0 -1
|
@@ -1,438 +1,10 @@
|
|
|
1
|
-
import { An as
|
|
1
|
+
import { An as clampMaxFindings, Cn as ReviewConcern, Dn as ReviewToolkitLayer, Fn as makeReviewInstructions, Gn as ReviewInputViolation, Gt as rankAndDedupeConcerns, H as toStoredConcern, Hn as PullRequestMetadata, I as buildProfileMission, J as computeChangesetFingerprint, Kt as rankAndDedupeFindings, L as computeProfileFingerprint, Qt as assessFlatReview, R as fromStoredConcern, Rn as resolveGuidance, Sn as ReadFileDiff, T as ReviewExecutionContext, Tn as ReviewMission, U as toStoredFinding, Un as PullRequestSource, X as renderFingerprintMarker, Xt as ReviewCoverage, Yt as ReviewAssurance, Zt as ReviewInputCoverage, an as CodeReview, d as gitHubReviewPublisherLayer, en as compatibilityCoverage, f as gitHubReviewRetirementHostLayer, fn as ListChangedFiles, jn as defaultReviewPolicy, k as ReviewState, l as gitHubPriorReviewsLayer, n as GitHubApiFailure, o as PublishedReview, qn as anchorViolation, r as GitHubReviewTarget, s as ReviewPublisher, t as DEFAULT_GITHUB_REVIEW_AUTHOR_LOGIN, tn as fanOutInputCoverage, u as gitHubPullRequestSourceLayer, wn as ReviewFinding, wt as runFanOutReview, xn as ReadFile, xt as makeFileReviewerDefinition, z as fromStoredFinding } from "./github-BbwYzNrC.mjs";
|
|
2
2
|
import { Config, Context, DateTime, Effect, FileSystem, Layer, Option, Ref, Schema } from "effect";
|
|
3
|
-
import { Agent, AgentPolicy, AgentRuntime, IdGenerator,
|
|
3
|
+
import { Agent, AgentPolicy, AgentRuntime, IdGenerator, UsageBudgetLimits, UsageTotals, getToolExecutionClass, makeUsageBudget, toRunBudgetHook } from "effect-agent";
|
|
4
4
|
import { Toolkit } from "effect/unstable/ai";
|
|
5
5
|
import { FetchHttpClient, HttpClient, HttpClientRequest, HttpClientResponse } from "effect/unstable/http";
|
|
6
6
|
import { AnthropicClient, AnthropicLanguageModel } from "@effect/ai-anthropic";
|
|
7
7
|
import { OpenAiClient, OpenAiLanguageModel } from "@effect/ai-openai";
|
|
8
|
-
//#region src/internal/coverage.ts
|
|
9
|
-
const ReviewShape = Schema.Literals(["flat", "fan-out"]);
|
|
10
|
-
var FailedReviewUnit = class extends Schema.Class("@effect-agent/pr-review/FailedReviewUnit")({
|
|
11
|
-
unitId: Schema.NonEmptyString.check(Schema.isMaxLength(32)),
|
|
12
|
-
errorTag: Schema.NonEmptyString.check(Schema.isMaxLength(256))
|
|
13
|
-
}) {};
|
|
14
|
-
/**
|
|
15
|
-
* Compatibility diagnostic retained for callers that consumed the original
|
|
16
|
-
* `coverage` field. New UI and state decisions use ReviewInputCoverage and
|
|
17
|
-
* ReviewAssurance directly.
|
|
18
|
-
*/
|
|
19
|
-
var ReviewCoverage = class extends Schema.Class("@effect-agent/pr-review/ReviewCoverage")({
|
|
20
|
-
status: Schema.Literals(["complete", "incomplete"]),
|
|
21
|
-
requiredPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
22
|
-
reviewedPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
23
|
-
unreviewedPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
24
|
-
failedUnits: Schema.Array(FailedReviewUnit).check(Schema.isMaxLength(8)),
|
|
25
|
-
reasons: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(1e3))).check(Schema.isMaxLength(32))
|
|
26
|
-
}) {};
|
|
27
|
-
var ReviewInputCoverage = class extends Schema.Class("@effect-agent/pr-review/ReviewInputCoverage")({
|
|
28
|
-
status: Schema.Literals(["complete", "incomplete"]),
|
|
29
|
-
requiredPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
30
|
-
assignedPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
31
|
-
/** Assigned paths whose model-visible diff was truncated by the evidence bound. */
|
|
32
|
-
partialPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
33
|
-
unassignedPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
34
|
-
reasons: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(1e3))).check(Schema.isMaxLength(20))
|
|
35
|
-
}) {};
|
|
36
|
-
var FailedReviewPass = class extends Schema.Class("@effect-agent/pr-review/FailedReviewPass")({
|
|
37
|
-
workId: Schema.NonEmptyString.check(Schema.isMaxLength(96)),
|
|
38
|
-
stage: Schema.Literals([
|
|
39
|
-
"discovery",
|
|
40
|
-
"specialist",
|
|
41
|
-
"verification"
|
|
42
|
-
]),
|
|
43
|
-
errorTag: Schema.NonEmptyString.check(Schema.isMaxLength(256))
|
|
44
|
-
}) {};
|
|
45
|
-
var ReviewAssurance = class extends Schema.Class("@effect-agent/pr-review/ReviewAssurance")({
|
|
46
|
-
status: Schema.Literals([
|
|
47
|
-
"settled",
|
|
48
|
-
"incomplete",
|
|
49
|
-
"unverified"
|
|
50
|
-
]),
|
|
51
|
-
requiredGeneralDiscoveryPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
52
|
-
completedGeneralDiscoveryPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
53
|
-
requiredSpecialistPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
54
|
-
completedSpecialistPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
55
|
-
requiredVerificationPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
56
|
-
completedVerificationPasses: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
57
|
-
discoveredCandidates: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
58
|
-
confirmedCandidates: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
59
|
-
rejectedCandidates: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
60
|
-
unsettledCandidates: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
61
|
-
/** Every failure remains visible within the coordinator's 32-call hard bound. */
|
|
62
|
-
failedPasses: Schema.Array(FailedReviewPass).check(Schema.isMaxLength(64)),
|
|
63
|
-
reasons: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(1e3))).check(Schema.isMaxLength(32))
|
|
64
|
-
}) {};
|
|
65
|
-
const toolTrace = (events) => {
|
|
66
|
-
const declared = /* @__PURE__ */ new Map();
|
|
67
|
-
const succeeded = /* @__PURE__ */ new Map();
|
|
68
|
-
const failed = /* @__PURE__ */ new Map();
|
|
69
|
-
for (const event of events) {
|
|
70
|
-
if (event._tag === "ToolCallDeclared") declared.set(event.toolCallId, event);
|
|
71
|
-
if (event._tag === "ToolCallSucceeded") succeeded.set(event.toolCallId, event);
|
|
72
|
-
if (event._tag === "ToolCallFailed") failed.set(event.toolCallId, event);
|
|
73
|
-
}
|
|
74
|
-
return {
|
|
75
|
-
declared,
|
|
76
|
-
succeeded,
|
|
77
|
-
failed
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
const sortedUnique = (values) => [...new Set(values)].sort((left, right) => left < right ? -1 : left > right ? 1 : 0);
|
|
81
|
-
const boundedListReason = (label, values) => {
|
|
82
|
-
const items = sortedUnique(values);
|
|
83
|
-
let rendered = `${label} (${items.length}): `;
|
|
84
|
-
for (let index = 0; index < items.length; index += 1) {
|
|
85
|
-
const item = items[index] ?? "";
|
|
86
|
-
const separator = index === 0 ? "" : ", ";
|
|
87
|
-
const omitted = items.length - index - 1;
|
|
88
|
-
const suffix = omitted === 0 ? "" : ` … (+${omitted} more)`;
|
|
89
|
-
if (`${rendered}${separator}${item}${suffix}`.length > 1e3) {
|
|
90
|
-
const omission = `… (+${items.length - index} more)`;
|
|
91
|
-
return `${rendered.slice(0, 1e3 - omission.length)}${omission}`;
|
|
92
|
-
}
|
|
93
|
-
rendered = `${rendered}${separator}${item}`;
|
|
94
|
-
}
|
|
95
|
-
return rendered;
|
|
96
|
-
};
|
|
97
|
-
const flatInputCoverage = (files, totalFiles, trace) => {
|
|
98
|
-
const requiredPaths = sortedUnique(files.map((file) => file.path));
|
|
99
|
-
const assigned = /* @__PURE__ */ new Set();
|
|
100
|
-
const partial = /* @__PURE__ */ new Set();
|
|
101
|
-
const failedPaths = /* @__PURE__ */ new Set();
|
|
102
|
-
for (const [toolCallId, declaration] of trace.declared) {
|
|
103
|
-
if (declaration.toolName !== "read_file_diff") continue;
|
|
104
|
-
const query = Schema.decodeUnknownOption(FileDiffQuery)(declaration.parameters);
|
|
105
|
-
if (Option.isNone(query)) continue;
|
|
106
|
-
const success = trace.succeeded.get(toolCallId);
|
|
107
|
-
if (success !== void 0) {
|
|
108
|
-
assigned.add(query.value.path);
|
|
109
|
-
const view = Schema.decodeUnknownOption(FileDiffView)(success.result);
|
|
110
|
-
if (Option.isSome(view) && view.value.truncated) partial.add(query.value.path);
|
|
111
|
-
}
|
|
112
|
-
if (trace.failed.has(toolCallId)) failedPaths.add(query.value.path);
|
|
113
|
-
}
|
|
114
|
-
const undiffable = files.filter((file) => !isReviewableFile(file)).map((file) => file.path);
|
|
115
|
-
const unassigned = requiredPaths.filter((path) => !assigned.has(path) || undiffable.includes(path) || failedPaths.has(path));
|
|
116
|
-
const reasons = [];
|
|
117
|
-
if (files.length < totalFiles) reasons.push(`review range exposed ${files.length} of ${totalFiles} required files`);
|
|
118
|
-
if (undiffable.length > 0) reasons.push(boundedListReason("required paths have no reviewable diff or bounded text", undiffable));
|
|
119
|
-
if (failedPaths.size > 0) reasons.push(boundedListReason("diff reads failed", failedPaths));
|
|
120
|
-
if (partial.size > 0) reasons.push(boundedListReason("model-visible diff evidence was truncated", partial));
|
|
121
|
-
if (unassigned.length > 0) reasons.push(boundedListReason("required paths received no successful diff input", unassigned));
|
|
122
|
-
return ReviewInputCoverage.make({
|
|
123
|
-
status: reasons.length === 0 ? "complete" : "incomplete",
|
|
124
|
-
requiredPaths,
|
|
125
|
-
assignedPaths: sortedUnique(assigned),
|
|
126
|
-
partialPaths: sortedUnique(partial),
|
|
127
|
-
unassignedPaths: sortedUnique(unassigned),
|
|
128
|
-
reasons
|
|
129
|
-
});
|
|
130
|
-
};
|
|
131
|
-
const fanOutInputCoverage = (files, totalFiles) => {
|
|
132
|
-
const plan = planReviewUnits(files, { totalChangedFiles: totalFiles });
|
|
133
|
-
const assignedPaths = sortedUnique(plan.units.flatMap((unit) => unit.paths));
|
|
134
|
-
const unassignedPaths = sortedUnique([...plan.undiffablePaths, ...plan.unassignedPaths]);
|
|
135
|
-
const reasons = [];
|
|
136
|
-
if (plan.truncated) reasons.push(`review range exposed ${files.length} of ${totalFiles} required files`);
|
|
137
|
-
if (plan.undiffablePaths.length > 0) reasons.push(boundedListReason("required paths have no reviewable diff or bounded text", plan.undiffablePaths));
|
|
138
|
-
if (plan.partialEvidencePaths.length > 0) reasons.push(boundedListReason("fan-out capacity left some deterministic evidence shards unassigned", plan.partialEvidencePaths));
|
|
139
|
-
if (plan.unassignedEvidenceShardCount > 0) {
|
|
140
|
-
reasons.push(`${plan.unassignedEvidenceShardCount} deterministic evidence shard(s) exceeded fan-out capacity`);
|
|
141
|
-
reasons.push(boundedListReason(`unassigned evidence shard identifier sample (${plan.unassignedEvidenceShardIds.length} of ${plan.unassignedEvidenceShardCount})`, plan.unassignedEvidenceShardIds));
|
|
142
|
-
}
|
|
143
|
-
if (plan.unassignedPaths.length > 0) reasons.push(boundedListReason("fan-out capacity left paths unassigned", plan.unassignedPaths));
|
|
144
|
-
return ReviewInputCoverage.make({
|
|
145
|
-
status: reasons.length === 0 ? "complete" : "incomplete",
|
|
146
|
-
requiredPaths: sortedUnique(files.map((file) => file.path)),
|
|
147
|
-
assignedPaths,
|
|
148
|
-
partialPaths: plan.partialEvidencePaths,
|
|
149
|
-
unassignedPaths,
|
|
150
|
-
reasons
|
|
151
|
-
});
|
|
152
|
-
};
|
|
153
|
-
const sameStrings = (left, right) => left.length === right.length && left.every((value, index) => value === right[index]);
|
|
154
|
-
const candidateKey = (candidate) => JSON.stringify(Schema.encodeSync(ReviewCandidate)(candidate));
|
|
155
|
-
const sameCandidates = (left, right) => left.length === right.length && left.every((candidate, index) => {
|
|
156
|
-
const corresponding = right[index];
|
|
157
|
-
return corresponding !== void 0 && candidateKey(candidate) === candidateKey(corresponding);
|
|
158
|
-
});
|
|
159
|
-
const delegationDeclarations = (trace) => [...trace.declared].flatMap(([id, declaration]) => {
|
|
160
|
-
if (declaration.toolName !== "delegate_file_review") return [];
|
|
161
|
-
const request = Schema.decodeUnknownOption(FileReviewRequest)(declaration.parameters);
|
|
162
|
-
return Option.isNone(request) ? [] : [{
|
|
163
|
-
id,
|
|
164
|
-
request: request.value
|
|
165
|
-
}];
|
|
166
|
-
});
|
|
167
|
-
const failureTag = (trace, id) => {
|
|
168
|
-
const failed = trace.failed.get(id);
|
|
169
|
-
if (failed !== void 0) return failed.errorTag;
|
|
170
|
-
const succeeded = trace.succeeded.get(id);
|
|
171
|
-
if (succeeded === void 0) return void 0;
|
|
172
|
-
const returned = Schema.decodeUnknownOption(FileReviewDelegationFailure)(succeeded.result);
|
|
173
|
-
if (Option.isNone(returned)) return void 0;
|
|
174
|
-
return returned.value._tag === "FileReviewUnitFailed" ? `${returned.value._tag}:${returned.value.childErrorTag}` : returned.value._tag;
|
|
175
|
-
};
|
|
176
|
-
const exactDiscoveryRequest = (request, pass) => request.phase === "discovery" && request.workId === pass.passId && request.unitId === pass.unitId && request.perspective === pass.perspective && sameStrings(request.paths, pass.paths) && sameStrings(request.evidenceShardIds, pass.evidenceShardIds) && sameStrings(request.riskCategories, pass.riskCategories) && request.candidates.length === 0;
|
|
177
|
-
const validCandidate = (candidate, pass, unit, files, anchorFiles) => {
|
|
178
|
-
const allowed = new Set(pass.paths);
|
|
179
|
-
const kind = candidate._tag === "FindingCandidate" ? "finding" : "concern";
|
|
180
|
-
const idPrefix = `${pass.passId}:${kind}:`;
|
|
181
|
-
return candidate.candidateId.startsWith(idPrefix) && /^\d{3}$/.test(candidate.candidateId.slice(idPrefix.length)) && candidate.workId === pass.passId && candidate.unitId === pass.unitId && candidate.evidencePaths.length > 0 && candidate.evidencePaths.every((path) => allowed.has(path)) && (candidate._tag !== "FindingCandidate" || allowed.has(candidate.finding.path) && anchorViolation(candidate.finding, anchorFiles) === void 0 && findingAnchorInUnitEvidence(candidate.finding, unit, files));
|
|
182
|
-
};
|
|
183
|
-
const flatAssurance = () => ({
|
|
184
|
-
assurance: ReviewAssurance.make({
|
|
185
|
-
status: "unverified",
|
|
186
|
-
requiredGeneralDiscoveryPasses: 1,
|
|
187
|
-
completedGeneralDiscoveryPasses: 1,
|
|
188
|
-
requiredSpecialistPasses: 0,
|
|
189
|
-
completedSpecialistPasses: 0,
|
|
190
|
-
requiredVerificationPasses: 1,
|
|
191
|
-
completedVerificationPasses: 0,
|
|
192
|
-
discoveredCandidates: 0,
|
|
193
|
-
confirmedCandidates: 0,
|
|
194
|
-
rejectedCandidates: 0,
|
|
195
|
-
unsettledCandidates: 0,
|
|
196
|
-
failedPasses: [],
|
|
197
|
-
reasons: ["flat review has no independent candidate-verification pass; use the fan-out pipeline for a settled assurance result"]
|
|
198
|
-
}),
|
|
199
|
-
confirmedFindings: [],
|
|
200
|
-
confirmedConcerns: [],
|
|
201
|
-
walkthrough: []
|
|
202
|
-
});
|
|
203
|
-
const fanOutAssurance = (files, totalFiles, anchorFiles, trace) => {
|
|
204
|
-
const plan = planReviewUnits(files, { totalChangedFiles: totalFiles });
|
|
205
|
-
const declarations = delegationDeclarations(trace);
|
|
206
|
-
const consumedDeclarationIds = /* @__PURE__ */ new Set();
|
|
207
|
-
const failedPasses = [];
|
|
208
|
-
const reasons = [];
|
|
209
|
-
const candidatesByUnit = /* @__PURE__ */ new Map();
|
|
210
|
-
const walkthrough = [];
|
|
211
|
-
let completedGeneralDiscoveryPasses = 0;
|
|
212
|
-
let completedSpecialistPasses = 0;
|
|
213
|
-
for (const pass of plan.discoveryPasses) {
|
|
214
|
-
const unit = plan.units.find((candidate) => candidate.unitId === pass.unitId);
|
|
215
|
-
const matching = declarations.filter(({ request }) => exactDiscoveryRequest(request, pass));
|
|
216
|
-
const stage = pass.perspective === "risk-specialist" ? "specialist" : "discovery";
|
|
217
|
-
if (matching.length !== 1) {
|
|
218
|
-
failedPasses.push(FailedReviewPass.make({
|
|
219
|
-
workId: pass.passId,
|
|
220
|
-
stage,
|
|
221
|
-
errorTag: matching.length === 0 ? "PassNotAssigned" : "PassAssignedMultipleTimes"
|
|
222
|
-
}));
|
|
223
|
-
continue;
|
|
224
|
-
}
|
|
225
|
-
const call = matching[0];
|
|
226
|
-
if (call === void 0) {
|
|
227
|
-
failedPasses.push(FailedReviewPass.make({
|
|
228
|
-
workId: pass.passId,
|
|
229
|
-
stage,
|
|
230
|
-
errorTag: "PassLookupInvariantFailed"
|
|
231
|
-
}));
|
|
232
|
-
continue;
|
|
233
|
-
}
|
|
234
|
-
consumedDeclarationIds.add(call.id);
|
|
235
|
-
const failure = failureTag(trace, call.id);
|
|
236
|
-
const succeeded = trace.succeeded.get(call.id);
|
|
237
|
-
const result = succeeded === void 0 ? Option.none() : Schema.decodeUnknownOption(FileReviewUnitResult)(succeeded.result);
|
|
238
|
-
if (failure !== void 0 || Option.isNone(result) || result.value.phase !== "discovery" || result.value.workId !== pass.passId || result.value.unitId !== pass.unitId || result.value.assessments.length !== 0) {
|
|
239
|
-
failedPasses.push(FailedReviewPass.make({
|
|
240
|
-
workId: pass.passId,
|
|
241
|
-
stage,
|
|
242
|
-
errorTag: failure ?? "DiscoveryDidNotSettleExactly"
|
|
243
|
-
}));
|
|
244
|
-
continue;
|
|
245
|
-
}
|
|
246
|
-
const ids = /* @__PURE__ */ new Set();
|
|
247
|
-
let candidatesValid = true;
|
|
248
|
-
for (const candidate of result.value.candidates) {
|
|
249
|
-
if (unit === void 0 || ids.has(candidate.candidateId) || !validCandidate(candidate, pass, unit, files, anchorFiles)) {
|
|
250
|
-
candidatesValid = false;
|
|
251
|
-
break;
|
|
252
|
-
}
|
|
253
|
-
ids.add(candidate.candidateId);
|
|
254
|
-
}
|
|
255
|
-
const unitCandidates = candidatesByUnit.get(pass.unitId) ?? [];
|
|
256
|
-
const unitIds = new Set(unitCandidates.map((candidate) => candidate.candidateId));
|
|
257
|
-
if (result.value.candidates.some((candidate) => unitIds.has(candidate.candidateId))) candidatesValid = false;
|
|
258
|
-
if (!candidatesValid) {
|
|
259
|
-
failedPasses.push(FailedReviewPass.make({
|
|
260
|
-
workId: pass.passId,
|
|
261
|
-
stage,
|
|
262
|
-
errorTag: "DiscoveryCandidateMismatch"
|
|
263
|
-
}));
|
|
264
|
-
continue;
|
|
265
|
-
}
|
|
266
|
-
if (stage === "specialist") completedSpecialistPasses += 1;
|
|
267
|
-
else completedGeneralDiscoveryPasses += 1;
|
|
268
|
-
const subjectKeys = new Set(unitCandidates.map(reviewCandidateSubjectKey));
|
|
269
|
-
for (const candidate of result.value.candidates) {
|
|
270
|
-
const subjectKey = reviewCandidateSubjectKey(candidate);
|
|
271
|
-
if (subjectKeys.has(subjectKey)) continue;
|
|
272
|
-
subjectKeys.add(subjectKey);
|
|
273
|
-
unitCandidates.push(candidate);
|
|
274
|
-
}
|
|
275
|
-
candidatesByUnit.set(pass.unitId, unitCandidates);
|
|
276
|
-
if (pass.perspective === "general") {
|
|
277
|
-
const allowed = new Set(pass.paths);
|
|
278
|
-
walkthrough.push(...result.value.fileSummaries.filter((entry) => allowed.has(entry.path)));
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
const confirmedCandidates = [];
|
|
282
|
-
let rejectedCandidates = 0;
|
|
283
|
-
let unsettledCandidates = 0;
|
|
284
|
-
let requiredVerificationPasses = 0;
|
|
285
|
-
let completedVerificationPasses = 0;
|
|
286
|
-
for (const unit of plan.units) {
|
|
287
|
-
const candidates = candidatesByUnit.get(unit.unitId) ?? [];
|
|
288
|
-
if (candidates.length === 0) continue;
|
|
289
|
-
requiredVerificationPasses += 1;
|
|
290
|
-
const workId = `${unit.unitId}-verification`;
|
|
291
|
-
const matching = declarations.filter(({ request }) => request.phase === "verification" && request.workId === workId && request.unitId === unit.unitId && request.perspective === "candidate-verification" && sameStrings(request.paths, unit.paths) && sameStrings(request.evidenceShardIds, unit.evidenceShards.map((shard) => shard.shardId)) && sameStrings(request.riskCategories, unit.riskCategories) && sameCandidates(request.candidates, candidates));
|
|
292
|
-
if (matching.length !== 1) {
|
|
293
|
-
unsettledCandidates += candidates.length;
|
|
294
|
-
failedPasses.push(FailedReviewPass.make({
|
|
295
|
-
workId,
|
|
296
|
-
stage: "verification",
|
|
297
|
-
errorTag: matching.length === 0 ? "VerificationNotAssignedOrCandidateMismatch" : "VerificationAssignedMultipleTimes"
|
|
298
|
-
}));
|
|
299
|
-
continue;
|
|
300
|
-
}
|
|
301
|
-
const call = matching[0];
|
|
302
|
-
if (call === void 0) {
|
|
303
|
-
unsettledCandidates += candidates.length;
|
|
304
|
-
failedPasses.push(FailedReviewPass.make({
|
|
305
|
-
workId,
|
|
306
|
-
stage: "verification",
|
|
307
|
-
errorTag: "PassLookupInvariantFailed"
|
|
308
|
-
}));
|
|
309
|
-
continue;
|
|
310
|
-
}
|
|
311
|
-
consumedDeclarationIds.add(call.id);
|
|
312
|
-
const failure = failureTag(trace, call.id);
|
|
313
|
-
const succeeded = trace.succeeded.get(call.id);
|
|
314
|
-
const result = succeeded === void 0 ? Option.none() : Schema.decodeUnknownOption(FileReviewUnitResult)(succeeded.result);
|
|
315
|
-
if (failure !== void 0 || Option.isNone(result) || result.value.phase !== "verification" || result.value.workId !== workId || result.value.unitId !== unit.unitId || result.value.candidates.length !== 0 || result.value.fileSummaries.length !== 0) {
|
|
316
|
-
unsettledCandidates += candidates.length;
|
|
317
|
-
failedPasses.push(FailedReviewPass.make({
|
|
318
|
-
workId,
|
|
319
|
-
stage: "verification",
|
|
320
|
-
errorTag: failure ?? "VerificationDidNotSettleExactly"
|
|
321
|
-
}));
|
|
322
|
-
continue;
|
|
323
|
-
}
|
|
324
|
-
const expectedIds = new Set(candidates.map((candidate) => candidate.candidateId));
|
|
325
|
-
const assessedIds = /* @__PURE__ */ new Set();
|
|
326
|
-
const exactAssessments = result.value.assessments.every((assessment) => {
|
|
327
|
-
if (!expectedIds.has(assessment.candidateId) || assessedIds.has(assessment.candidateId)) return false;
|
|
328
|
-
assessedIds.add(assessment.candidateId);
|
|
329
|
-
return true;
|
|
330
|
-
});
|
|
331
|
-
if (expectedIds.size !== candidates.length || !exactAssessments || assessedIds.size !== expectedIds.size) {
|
|
332
|
-
unsettledCandidates += candidates.length;
|
|
333
|
-
failedPasses.push(FailedReviewPass.make({
|
|
334
|
-
workId,
|
|
335
|
-
stage: "verification",
|
|
336
|
-
errorTag: "VerificationAssessmentMismatch"
|
|
337
|
-
}));
|
|
338
|
-
continue;
|
|
339
|
-
}
|
|
340
|
-
completedVerificationPasses += 1;
|
|
341
|
-
const byId = new Map(candidates.map((candidate) => [candidate.candidateId, candidate]));
|
|
342
|
-
for (const assessment of result.value.assessments) if (assessment.disposition === "confirmed") {
|
|
343
|
-
const candidate = byId.get(assessment.candidateId);
|
|
344
|
-
if (candidate !== void 0) confirmedCandidates.push(candidate);
|
|
345
|
-
} else rejectedCandidates += 1;
|
|
346
|
-
}
|
|
347
|
-
const unexpected = [...trace.declared].filter(([id, declaration]) => declaration.toolName === "delegate_file_review" && !consumedDeclarationIds.has(id));
|
|
348
|
-
for (const [, declaration] of unexpected) {
|
|
349
|
-
const request = Schema.decodeUnknownOption(FileReviewRequest)(declaration.parameters);
|
|
350
|
-
failedPasses.push(FailedReviewPass.make({
|
|
351
|
-
workId: Option.isSome(request) ? request.value.workId : "invalid-delegation-request",
|
|
352
|
-
stage: Option.isSome(request) && request.value.phase === "verification" ? "verification" : "discovery",
|
|
353
|
-
errorTag: "UnexpectedPass"
|
|
354
|
-
}));
|
|
355
|
-
}
|
|
356
|
-
if (failedPasses.length > 0) reasons.push(boundedListReason("configured review passes did not settle", failedPasses.map((pass) => `${pass.workId} (${pass.errorTag})`)));
|
|
357
|
-
if (unsettledCandidates > 0) reasons.push(`${unsettledCandidates} discovered candidate(s) did not receive exact verification`);
|
|
358
|
-
const requiredSpecialistPasses = plan.discoveryPasses.filter((pass) => pass.perspective === "risk-specialist").length;
|
|
359
|
-
const requiredGeneralDiscoveryPasses = plan.discoveryPasses.length - requiredSpecialistPasses;
|
|
360
|
-
const discoveredCandidates = [...candidatesByUnit.values()].reduce((total, candidates) => total + candidates.length, 0);
|
|
361
|
-
return {
|
|
362
|
-
assurance: ReviewAssurance.make({
|
|
363
|
-
status: reasons.length === 0 ? "settled" : "incomplete",
|
|
364
|
-
requiredGeneralDiscoveryPasses,
|
|
365
|
-
completedGeneralDiscoveryPasses,
|
|
366
|
-
requiredSpecialistPasses,
|
|
367
|
-
completedSpecialistPasses,
|
|
368
|
-
requiredVerificationPasses,
|
|
369
|
-
completedVerificationPasses,
|
|
370
|
-
discoveredCandidates,
|
|
371
|
-
confirmedCandidates: confirmedCandidates.length,
|
|
372
|
-
rejectedCandidates,
|
|
373
|
-
unsettledCandidates,
|
|
374
|
-
failedPasses,
|
|
375
|
-
reasons
|
|
376
|
-
}),
|
|
377
|
-
confirmedFindings: confirmedCandidates.flatMap((candidate) => candidate._tag === "FindingCandidate" ? [candidate.finding] : []),
|
|
378
|
-
confirmedConcerns: confirmedCandidates.flatMap((candidate) => candidate._tag === "ConcernCandidate" ? [candidate.concern] : []),
|
|
379
|
-
walkthrough
|
|
380
|
-
};
|
|
381
|
-
};
|
|
382
|
-
const compatibilityCoverage = (inputCoverage, assurance) => {
|
|
383
|
-
const assuranceIncomplete = assurance.status === "incomplete";
|
|
384
|
-
const failedUnits = /* @__PURE__ */ new Map();
|
|
385
|
-
for (const pass of assurance.failedPasses) {
|
|
386
|
-
const unitId = pass.workId.slice(0, 8);
|
|
387
|
-
if (!failedUnits.has(unitId)) failedUnits.set(unitId, FailedReviewUnit.make({
|
|
388
|
-
unitId,
|
|
389
|
-
errorTag: `${pass.stage}:${pass.errorTag}`
|
|
390
|
-
}));
|
|
391
|
-
}
|
|
392
|
-
return ReviewCoverage.make({
|
|
393
|
-
status: inputCoverage.status === "complete" && !assuranceIncomplete ? "complete" : "incomplete",
|
|
394
|
-
requiredPaths: inputCoverage.requiredPaths,
|
|
395
|
-
reviewedPaths: inputCoverage.assignedPaths,
|
|
396
|
-
unreviewedPaths: sortedUnique([...inputCoverage.partialPaths, ...inputCoverage.unassignedPaths]),
|
|
397
|
-
failedUnits: [...failedUnits.values()].slice(0, 8),
|
|
398
|
-
reasons: [...inputCoverage.reasons, ...assuranceIncomplete ? assurance.reasons : []]
|
|
399
|
-
});
|
|
400
|
-
};
|
|
401
|
-
/** Assess one settled run without trusting coordinator prose or findings. */
|
|
402
|
-
const assessReviewPipeline = (input) => {
|
|
403
|
-
const trace = toolTrace(input.events);
|
|
404
|
-
let inputCoverage = input.shape === "fan-out" ? fanOutInputCoverage(input.files, input.totalFiles) : flatInputCoverage(input.files, input.totalFiles, trace);
|
|
405
|
-
if (input.anchorFiles.length < input.totalAnchorFiles) inputCoverage = ReviewInputCoverage.make({
|
|
406
|
-
...inputCoverage,
|
|
407
|
-
status: "incomplete",
|
|
408
|
-
reasons: [...inputCoverage.reasons, `full pull-request anchor surface exposed ${input.anchorFiles.length} of ${input.totalAnchorFiles} required files`]
|
|
409
|
-
});
|
|
410
|
-
const assessed = input.shape === "fan-out" ? fanOutAssurance(input.files, input.totalFiles, input.anchorFiles, trace) : flatAssurance();
|
|
411
|
-
return {
|
|
412
|
-
inputCoverage,
|
|
413
|
-
assurance: assessed.assurance,
|
|
414
|
-
coverage: compatibilityCoverage(inputCoverage, assessed.assurance),
|
|
415
|
-
confirmedFindings: assessed.confirmedFindings,
|
|
416
|
-
confirmedConcerns: assessed.confirmedConcerns,
|
|
417
|
-
walkthrough: assessed.walkthrough
|
|
418
|
-
};
|
|
419
|
-
};
|
|
420
|
-
/** Compatibility helper; prefer assessReviewPipeline for precise claims. */
|
|
421
|
-
const assessReviewCoverage = (input) => assessReviewPipeline(input).coverage;
|
|
422
|
-
/** Host-verified summaries from successful general discovery passes only. */
|
|
423
|
-
const collectUnitFileSummaries = (events) => {
|
|
424
|
-
const trace = toolTrace(events);
|
|
425
|
-
return delegationDeclarations(trace).flatMap(({ id, request }) => {
|
|
426
|
-
if (request.phase !== "discovery" || request.perspective !== "general") return [];
|
|
427
|
-
const success = trace.succeeded.get(id);
|
|
428
|
-
if (success === void 0 || trace.failed.has(id)) return [];
|
|
429
|
-
const result = Schema.decodeUnknownOption(FileReviewUnitResult)(success.result);
|
|
430
|
-
if (Option.isNone(result) || result.value.phase !== "discovery" || result.value.workId !== request.workId || result.value.unitId !== request.unitId) return [];
|
|
431
|
-
const assigned = new Set(request.paths);
|
|
432
|
-
return result.value.fileSummaries.filter((entry) => assigned.has(entry.path));
|
|
433
|
-
});
|
|
434
|
-
};
|
|
435
|
-
//#endregion
|
|
436
8
|
//#region src/internal/effort.ts
|
|
437
9
|
/**
|
|
438
10
|
* Names accepted on user-facing surfaces (the action input, the CLI flag),
|
|
@@ -561,7 +133,7 @@ const severityEmoji = {
|
|
|
561
133
|
important: "⚠️",
|
|
562
134
|
nit: "💅"
|
|
563
135
|
};
|
|
564
|
-
const severityRank
|
|
136
|
+
const severityRank = {
|
|
565
137
|
blocking: 0,
|
|
566
138
|
important: 1,
|
|
567
139
|
nit: 2
|
|
@@ -661,9 +233,9 @@ const severityCounts = (review, carriedFindings = [], carriedConcerns = []) => {
|
|
|
661
233
|
*/
|
|
662
234
|
const renderVerdictCallout = (review, options) => {
|
|
663
235
|
const counts = severityCounts(review, options.carriedFindings, options.carriedConcerns);
|
|
664
|
-
if (options.inputCoverage?.status === "incomplete" || options.inputCoverage === void 0 && options.coverage?.status === "incomplete") return `> [!CAUTION]\n> Input coverage is incomplete — the check must not pass.${counts.blocking > 0 ? ` It also has ${countNoun(counts.blocking, "blocking finding")}.` : ""}`;
|
|
665
|
-
if (options.assurance !== void 0 && options.assurance.status !== "settled") return `> [!CAUTION]\n> Configured review assurance did not settle — the check must not pass.${counts.blocking > 0 ? ` It also has ${countNoun(counts.blocking, "blocking finding")}.` : ""}`;
|
|
666
236
|
if (counts.blocking > 0) return `> [!CAUTION]\n> ${countNoun(counts.blocking, "blocking finding")} — do not merge before addressing ${counts.blocking === 1 ? "it" : "them"}.`;
|
|
237
|
+
const carried = options.unreviewedPaths?.length ?? 0;
|
|
238
|
+
if (options.inputCoverage?.status === "incomplete" || options.assurance?.status === "incomplete") return `> [!WARNING]\n> Review infrastructure did not settle — a reviewer-side gap, NOT a request to change code.${carried > 0 ? ` ${countNoun(carried, "affected path")} ${carried === 1 ? "is" : "are"} carried forward and retried automatically on the next run.` : ""} The check reports "incomplete" until a run settles.`;
|
|
667
239
|
if (counts.important > 0) return `> [!IMPORTANT]\n> ${countNoun(counts.important, "important finding")} to address before merging.`;
|
|
668
240
|
if (counts.total > 0) return "> ℹ️ Minor suggestions only — mergeable as-is.";
|
|
669
241
|
return review.verdict === "approve" ? "> ✅ No issues found." : "> ℹ️ No findings — see the summary.";
|
|
@@ -780,14 +352,11 @@ const planPublication = (review, files, options) => {
|
|
|
780
352
|
});
|
|
781
353
|
}
|
|
782
354
|
const walkthrough = planWalkthrough(review.walkthrough, files);
|
|
783
|
-
const sortedConcerns = [...review.concerns ?? []].sort((a, b) => severityRank
|
|
784
|
-
const sortedDemoted = [...demoted].sort((a, b) => severityRank
|
|
355
|
+
const sortedConcerns = [...review.concerns ?? []].sort((a, b) => severityRank[a.severity] - severityRank[b.severity]);
|
|
356
|
+
const sortedDemoted = [...demoted].sort((a, b) => severityRank[a.finding.severity] - severityRank[b.finding.severity]);
|
|
785
357
|
const footerParts = ["Automated review by @effect-agent/pr-review"];
|
|
786
358
|
if (options.modelLabel !== void 0) footerParts.push(options.modelLabel);
|
|
787
|
-
if (options.usage !== void 0
|
|
788
|
-
const scope = options.usageScope === "coordinator" ? " (coordinator)" : "";
|
|
789
|
-
footerParts.push(`${options.usage.inputTokens} in / ${options.usage.outputTokens} out tokens${scope}`);
|
|
790
|
-
}
|
|
359
|
+
if (options.usage !== void 0) footerParts.push(`${options.usage.inputTokens} in / ${options.usage.outputTokens} out tokens`);
|
|
791
360
|
if (options.runUrl !== void 0) footerParts.push(`[run](${options.runUrl})`);
|
|
792
361
|
footerParts.push(`reviewed at ${options.headSha.slice(0, 7)}`);
|
|
793
362
|
const footer = `_${footerParts.join(" · ")}._`;
|
|
@@ -805,20 +374,19 @@ const planPublication = (review, files, options) => {
|
|
|
805
374
|
const parts = [renderVerdictCallout(review, {
|
|
806
375
|
carriedFindings,
|
|
807
376
|
carriedConcerns,
|
|
808
|
-
coverage: options.coverage,
|
|
809
377
|
inputCoverage: options.inputCoverage,
|
|
810
|
-
assurance: options.assurance
|
|
378
|
+
assurance: options.assurance,
|
|
379
|
+
unreviewedPaths: options.unreviewedPaths
|
|
811
380
|
})];
|
|
812
381
|
if (options.reviewMode !== void 0 && options.reviewReason !== void 0) parts.push("", options.reviewMode === "incremental" ? `**Incremental scope:** reopened ${options.reviewFilesVisible ?? files.length} affected file(s) ${options.reviewReason}. Unchanged settled scope was preserved and not reopened.` : `**Full-diff scope:** ${options.reviewReason}.`);
|
|
813
382
|
if (options.stateNotice !== void 0) parts.push("", `⚠️ Continuity state was not stored (${options.stateNotice.slice(0, 1e3)}); the next run will safely review the full diff.`);
|
|
814
383
|
parts.push("", renderReviewStats(files, options.totalChangedFiles, counts));
|
|
815
|
-
if (options.inputCoverage !== void 0 && options.assurance !== void 0) parts.push("", `**Input coverage:** ${options.inputCoverage.status} (${options.inputCoverage.assignedPaths.length}/${options.inputCoverage.requiredPaths.length} paths assigned, ${options.inputCoverage.partialPaths.length} partial) · **Review assurance:** ${options.assurance.status} (${options.assurance.completedGeneralDiscoveryPasses}/${options.assurance.requiredGeneralDiscoveryPasses} general discovery, ${options.assurance.completedSpecialistPasses}/${options.assurance.requiredSpecialistPasses} specialist, ${options.assurance.completedVerificationPasses}/${options.assurance.requiredVerificationPasses} verification; ${options.assurance.confirmedCandidates} confirmed / ${options.assurance.rejectedCandidates} rejected / ${options.assurance.unsettledCandidates} unsettled candidates)`);
|
|
384
|
+
if (options.inputCoverage !== void 0 && options.assurance !== void 0) parts.push("", `**Input coverage:** ${options.inputCoverage.status} (${options.inputCoverage.assignedPaths.length}/${options.inputCoverage.requiredPaths.length} paths assigned, ${options.inputCoverage.partialPaths.length} partial) · **Review assurance:** ${options.assurance.status} (${options.assurance.completedGeneralDiscoveryPasses}/${options.assurance.requiredGeneralDiscoveryPasses} general discovery, ${options.assurance.completedSpecialistPasses}/${options.assurance.requiredSpecialistPasses} specialist, ${options.assurance.completedVerificationPasses}/${options.assurance.requiredVerificationPasses} verification; ${options.assurance.confirmedCandidates} confirmed / ${options.assurance.rejectedCandidates} rejected / ${options.assurance.unsettledCandidates} unsettled${options.assurance.discardedInvalidFindings > 0 ? ` / ${options.assurance.discardedInvalidFindings} discarded` : ""} candidates)`);
|
|
816
385
|
parts.push("", review.summary);
|
|
817
386
|
if (walkthroughKept && walkthrough.length > 0) parts.push("", renderWalkthrough(walkthrough));
|
|
818
387
|
else if (walkthrough.length > 0) parts.push("", "⚠️ Walkthrough omitted — the body exceeded GitHub's review size cap.");
|
|
819
|
-
if (options.inputCoverage?.status === "incomplete") parts.push("", "###
|
|
820
|
-
|
|
821
|
-
if (options.assurance !== void 0 && options.assurance.status !== "settled") parts.push("", "### 🛑 Incomplete review assurance", "", ...options.assurance.reasons.map((reason) => `- ${reason}`));
|
|
388
|
+
if (options.inputCoverage?.status === "incomplete") parts.push("", "### ⚠️ Incomplete input coverage", "", ...options.inputCoverage.reasons.map((reason) => `- ${reason}`));
|
|
389
|
+
if (options.assurance?.status === "incomplete") parts.push("", "### ⚠️ Unsettled review passes", "", "The passes below failed on the reviewer's side after a bounded retry. Their paths are carried forward and re-reviewed automatically on the next run — do not change code to satisfy this section.", "", ...options.assurance.reasons.map((reason) => `- ${reason}`));
|
|
822
390
|
if (carriedFindings.length > 0) parts.push("", "<details>", `<summary>Unresolved findings carried from unchanged scope (${carriedFindings.length})</summary>`, "", ...carriedFindings.map(renderCarriedFinding), "", "</details>");
|
|
823
391
|
if (carriedConcerns.length > 0) {
|
|
824
392
|
parts.push("", "### Unresolved concerns carried to the final audit");
|
|
@@ -833,7 +401,8 @@ const planPublication = (review, files, options) => {
|
|
|
833
401
|
return parts.join("\n");
|
|
834
402
|
};
|
|
835
403
|
const counts = severityCounts(review, options.carriedFindings ?? [], options.carriedConcerns ?? []);
|
|
836
|
-
const
|
|
404
|
+
const unclean = options.inputCoverage?.status === "incomplete" || options.assurance?.status === "incomplete";
|
|
405
|
+
const event = !options.applyVerdict ? "COMMENT" : counts.blocking > 0 ? "REQUEST_CHANGES" : review.verdict === "approve" && counts.important === 0 && !unclean ? "APPROVE" : "COMMENT";
|
|
837
406
|
const tail = [
|
|
838
407
|
renderReviewMetadata({
|
|
839
408
|
headSha: options.headSha,
|
|
@@ -890,12 +459,9 @@ const reviewBudgetLimits = UsageBudgetLimits.make({
|
|
|
890
459
|
maxDurationMillis: 48e4
|
|
891
460
|
});
|
|
892
461
|
/**
|
|
893
|
-
* Run-level bounds for the fan-out
|
|
894
|
-
*
|
|
895
|
-
*
|
|
896
|
-
* own `AgentPolicy`, never silently by the parent's budget. The duration
|
|
897
|
-
* ceiling is wider because delegation Tool Calls hold the parent turn open
|
|
898
|
-
* while bounded children run.
|
|
462
|
+
* Run-level bounds for the fan-out pipeline. One budget observes EVERY child
|
|
463
|
+
* pass, so the ceiling covers bounded parallel discovery and verification
|
|
464
|
+
* plus the one-retry allowance.
|
|
899
465
|
*/
|
|
900
466
|
const fanOutReviewBudgetLimits = UsageBudgetLimits.make({
|
|
901
467
|
maxInputTokens: 6e5,
|
|
@@ -915,23 +481,16 @@ var ReviewRunOutcome = class extends Schema.Class("@effect-agent/pr-review/Revie
|
|
|
915
481
|
coverage: ReviewCoverage,
|
|
916
482
|
/** Exact path/evidence assignment, distinct from semantic review work. */
|
|
917
483
|
inputCoverage: ReviewInputCoverage,
|
|
918
|
-
/** Settlement of
|
|
484
|
+
/** Settlement of scheduled discovery, specialist, and verification work. */
|
|
919
485
|
assurance: ReviewAssurance,
|
|
486
|
+
/** Retryable scope this run could not settle; carried to the next run. */
|
|
487
|
+
unreviewedPaths: Schema.Array(Schema.NonEmptyString.check(Schema.isMaxLength(512))).check(Schema.isMaxLength(300)),
|
|
920
488
|
plan: ReviewPublicationPlan,
|
|
921
489
|
published: Schema.optionalKey(PublishedReview),
|
|
922
|
-
turns
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
* the COORDINATOR only — delegated children are bounded and accounted
|
|
926
|
-
* separately by their reservations.
|
|
927
|
-
*/
|
|
490
|
+
/** Total settled model turns (all child passes for the fan-out pipeline). */
|
|
491
|
+
turns: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),
|
|
492
|
+
/** The run budget's observed usage across the whole run. */
|
|
928
493
|
usage: Schema.optionalKey(UsageTotals),
|
|
929
|
-
/**
|
|
930
|
-
* What `usage` observed: the whole run, or a fan-out coordinator only.
|
|
931
|
-
* Absent when the caller declared no scope — consumers must not present
|
|
932
|
-
* unscoped usage as whole-run totals.
|
|
933
|
-
*/
|
|
934
|
-
usageScope: Schema.optionalKey(Schema.Literals(["run", "coordinator"])),
|
|
935
494
|
reviewMode: Schema.optionalKey(Schema.Literals(["incremental", "full"])),
|
|
936
495
|
reviewReason: Schema.optionalKey(Schema.String.check(Schema.isMaxLength(1e3))),
|
|
937
496
|
state: Schema.optionalKey(ReviewState)
|
|
@@ -955,63 +514,20 @@ const enforceFindingsBound = (review, maxFindings) => review.findings.length <=
|
|
|
955
514
|
...review.walkthrough !== void 0 ? { walkthrough: review.walkthrough } : {}
|
|
956
515
|
});
|
|
957
516
|
const findingKey = (finding) => `${finding.path}\u0000${finding.startLine}\u0000${finding.endLine}\u0000${finding.severity}\u0000${finding.title}`;
|
|
958
|
-
const severityRank = {
|
|
959
|
-
blocking: 0,
|
|
960
|
-
important: 1,
|
|
961
|
-
nit: 2
|
|
962
|
-
};
|
|
963
|
-
const rankAndDedupeConcerns = (concerns) => {
|
|
964
|
-
const byContent = /* @__PURE__ */ new Map();
|
|
965
|
-
for (const concern of concerns) {
|
|
966
|
-
const key = `${concern.title}\u0000${concern.body}`;
|
|
967
|
-
const previous = byContent.get(key);
|
|
968
|
-
if (previous === void 0 || severityRank[concern.severity] < severityRank[previous.severity]) byContent.set(key, concern);
|
|
969
|
-
}
|
|
970
|
-
return [...byContent.values()].sort((left, right) => severityRank[left.severity] - severityRank[right.severity]).slice(0, 10);
|
|
971
|
-
};
|
|
972
517
|
/**
|
|
973
|
-
*
|
|
974
|
-
*
|
|
975
|
-
*
|
|
976
|
-
*
|
|
977
|
-
*
|
|
978
|
-
* Layer's requirements stay visible in this Effect's `R`.
|
|
518
|
+
* The shared settlement tail: carry unchanged prior scope, decide whether
|
|
519
|
+
* this run's continuity state can be signed, plan the exact publication, and
|
|
520
|
+
* (optionally) post it. Continuity requires only that the run COMPLETED with
|
|
521
|
+
* a trustworthy full-surface fingerprint — never that every pass settled;
|
|
522
|
+
* unsettled scope travels inside the state instead of freezing it.
|
|
979
523
|
*/
|
|
980
|
-
const
|
|
981
|
-
const
|
|
982
|
-
const metadata = yield* source.metadata;
|
|
983
|
-
const files = yield* source.changedFiles;
|
|
984
|
-
const anchorFiles = yield* source.anchorFiles;
|
|
524
|
+
const settleReviewRun = (core, context, options) => Effect.gen(function* () {
|
|
525
|
+
const { metadata, files, anchorFiles, fingerprint, usage } = context;
|
|
985
526
|
const executionContext = Option.getOrUndefined(yield* Effect.serviceOption(ReviewExecutionContext));
|
|
986
|
-
const
|
|
987
|
-
const
|
|
988
|
-
const
|
|
989
|
-
const budget = yield* makeUsageBudget(options.limits ?? reviewBudgetLimits);
|
|
990
|
-
const detached = yield* AgentRuntime.start(binding, mission, {
|
|
991
|
-
budget: toRunBudgetHook(budget),
|
|
992
|
-
estimateCostMicrousd: () => Effect.succeed(500)
|
|
993
|
-
});
|
|
994
|
-
const result = yield* detached.await;
|
|
995
|
-
const events = yield* detached.events;
|
|
996
|
-
const decoded = yield* Schema.decodeUnknownEffect(CodeReview)(result.output);
|
|
527
|
+
const review = enforceFindingsBound(core.review, clampMaxFindings(options.maxFindings));
|
|
528
|
+
const { inputCoverage, assurance } = core;
|
|
529
|
+
const unreviewedPaths = [...new Set(core.unreviewedPaths)].sort();
|
|
997
530
|
const reviewTotalFiles = executionContext?.totalFiles ?? metadata.totalChangedFiles;
|
|
998
|
-
const pipeline = assessReviewPipeline({
|
|
999
|
-
shape: options.reviewShape ?? "flat",
|
|
1000
|
-
files,
|
|
1001
|
-
totalFiles: reviewTotalFiles,
|
|
1002
|
-
anchorFiles,
|
|
1003
|
-
totalAnchorFiles: metadata.totalChangedFiles,
|
|
1004
|
-
events
|
|
1005
|
-
});
|
|
1006
|
-
const verifiedReview = options.reviewShape !== "fan-out" ? decoded : CodeReview.make({
|
|
1007
|
-
summary: decoded.summary,
|
|
1008
|
-
verdict: decoded.verdict,
|
|
1009
|
-
findings: rankAndDedupeFindings(pipeline.confirmedFindings),
|
|
1010
|
-
...pipeline.confirmedConcerns.length === 0 ? {} : { concerns: rankAndDedupeConcerns(pipeline.confirmedConcerns) },
|
|
1011
|
-
...pipeline.walkthrough.length === 0 ? {} : { walkthrough: pipeline.walkthrough }
|
|
1012
|
-
});
|
|
1013
|
-
const review = enforceFindingsBound(verifiedReview, clampMaxFindings(options.maxFindings));
|
|
1014
|
-
const usage = yield* budget.snapshot;
|
|
1015
531
|
const affectedPaths = new Set(executionContext?.affectedPaths ?? files.flatMap((file) => file.previousPath === void 0 ? [file.path] : [file.path, file.previousPath]));
|
|
1016
532
|
const priorState = executionContext?.mode === "incremental" ? executionContext.priorState : void 0;
|
|
1017
533
|
const carriedCandidates = priorState?.unresolvedFindings.filter((finding) => !affectedPaths.has(finding.path)).map(fromStoredFinding) ?? [];
|
|
@@ -1027,9 +543,11 @@ const executeReview = (binding, options) => Effect.gen(function* () {
|
|
|
1027
543
|
const key = `${concern.title}\u0000${concern.body}`;
|
|
1028
544
|
return activeConcernKeys.has(key) && !currentConcernKeys.has(key);
|
|
1029
545
|
});
|
|
1030
|
-
const
|
|
1031
|
-
const
|
|
1032
|
-
|
|
546
|
+
const settled = inputCoverage.status === "complete" && assurance.status !== "incomplete" && unreviewedPaths.length === 0;
|
|
547
|
+
const skipFingerprint = settled ? fingerprint : void 0;
|
|
548
|
+
const carriedScopeFits = unreviewedPaths.length <= 100;
|
|
549
|
+
const stateCandidate = executionContext !== void 0 && fingerprint !== void 0 && metadata.baseSha !== void 0 && anchorFiles.length >= metadata.totalChangedFiles && carriedScopeFits && executionContext.stateAuthenticator?.status === "available" ? ReviewState.make({
|
|
550
|
+
version: 2,
|
|
1033
551
|
repository: metadata.repository,
|
|
1034
552
|
pullRequestNumber: metadata.number,
|
|
1035
553
|
baseRef: metadata.baseRef,
|
|
@@ -1041,12 +559,14 @@ const executeReview = (binding, options) => Effect.gen(function* () {
|
|
|
1041
559
|
reviewedPathCount: anchorFiles.length,
|
|
1042
560
|
unresolvedFindings: activeFindings.map(toStoredFinding),
|
|
1043
561
|
unresolvedConcerns: activeConcerns.map(toStoredConcern),
|
|
562
|
+
unreviewedPaths,
|
|
563
|
+
settled,
|
|
1044
564
|
lastReviewMode: executionContext.mode
|
|
1045
565
|
}) : void 0;
|
|
1046
566
|
const continuity = stateCandidate === void 0 || executionContext?.stateAuthenticator === void 0 ? {
|
|
1047
567
|
state: void 0,
|
|
1048
568
|
marker: void 0,
|
|
1049
|
-
notice: executionContext
|
|
569
|
+
notice: executionContext !== void 0 && !carriedScopeFits ? `carried unreviewed scope (${unreviewedPaths.length} paths) exceeded the 100-path continuity bound` : executionContext?.stateAuthenticator?.status === "unavailable" ? executionContext.stateAuthenticator.unavailableReason ?? "authenticated continuity state is unavailable" : void 0
|
|
1050
570
|
} : yield* executionContext.stateAuthenticator.render(stateCandidate).pipe(Effect.match({
|
|
1051
571
|
onFailure: (error) => ({
|
|
1052
572
|
state: void 0,
|
|
@@ -1068,11 +588,10 @@ const executeReview = (binding, options) => Effect.gen(function* () {
|
|
|
1068
588
|
modelLabel: options.modelLabel,
|
|
1069
589
|
runUrl: options.runUrl,
|
|
1070
590
|
usage,
|
|
1071
|
-
|
|
1072
|
-
fingerprint: inputCoverage.status === "complete" && assurance.status === "settled" ? fingerprint : void 0,
|
|
1073
|
-
coverage,
|
|
591
|
+
fingerprint: skipFingerprint,
|
|
1074
592
|
inputCoverage,
|
|
1075
593
|
assurance,
|
|
594
|
+
unreviewedPaths,
|
|
1076
595
|
carriedFindings,
|
|
1077
596
|
carriedConcerns,
|
|
1078
597
|
reviewMode: executionContext?.mode,
|
|
@@ -1083,43 +602,119 @@ const executeReview = (binding, options) => Effect.gen(function* () {
|
|
|
1083
602
|
stateMarker: continuity.marker,
|
|
1084
603
|
stateNotice: continuity.notice
|
|
1085
604
|
});
|
|
1086
|
-
const
|
|
1087
|
-
if (!options.post) return ReviewRunOutcome.make({
|
|
605
|
+
const shared = {
|
|
1088
606
|
review,
|
|
1089
607
|
activeFindings,
|
|
1090
608
|
activeConcerns,
|
|
1091
|
-
coverage,
|
|
609
|
+
coverage: compatibilityCoverage(inputCoverage, assurance),
|
|
1092
610
|
inputCoverage,
|
|
1093
611
|
assurance,
|
|
612
|
+
unreviewedPaths,
|
|
1094
613
|
plan,
|
|
1095
|
-
turns:
|
|
1096
|
-
usage,
|
|
1097
|
-
...scope,
|
|
614
|
+
turns: core.turns,
|
|
615
|
+
...usage === void 0 ? {} : { usage },
|
|
1098
616
|
...executionContext === void 0 ? {} : {
|
|
1099
617
|
reviewMode: executionContext.mode,
|
|
1100
618
|
reviewReason: executionContext.reason
|
|
1101
619
|
},
|
|
1102
620
|
...continuity.state === void 0 ? {} : { state: continuity.state }
|
|
1103
|
-
}
|
|
621
|
+
};
|
|
622
|
+
if (!options.post) return ReviewRunOutcome.make(shared);
|
|
1104
623
|
const published = yield* (yield* ReviewPublisher).publish(plan);
|
|
1105
624
|
return ReviewRunOutcome.make({
|
|
625
|
+
...shared,
|
|
626
|
+
published
|
|
627
|
+
});
|
|
628
|
+
});
|
|
629
|
+
/**
|
|
630
|
+
* Execute one flat review with any explicit Agent Binding whose contract is
|
|
631
|
+
* `ReviewMission -> CodeReview`. The binding stays a parameter (D-027): tests
|
|
632
|
+
* pass scripted models, hosts pass live provider bindings, and the model
|
|
633
|
+
* Layer's requirements stay visible in this Effect's `R`.
|
|
634
|
+
*/
|
|
635
|
+
const executeReview = (binding, options) => Effect.gen(function* () {
|
|
636
|
+
const source = yield* PullRequestSource;
|
|
637
|
+
const metadata = yield* source.metadata;
|
|
638
|
+
const files = yield* source.changedFiles;
|
|
639
|
+
const anchorFiles = yield* source.anchorFiles;
|
|
640
|
+
const executionContext = Option.getOrUndefined(yield* Effect.serviceOption(ReviewExecutionContext));
|
|
641
|
+
const mission = buildReviewMission(metadata, files);
|
|
642
|
+
const fullMission = buildReviewMission(metadata, anchorFiles);
|
|
643
|
+
const fingerprint = options.signature === void 0 ? void 0 : yield* computeChangesetFingerprint(anchorFiles, options.signature(fullMission));
|
|
644
|
+
const budget = yield* makeUsageBudget(options.limits ?? reviewBudgetLimits);
|
|
645
|
+
const detached = yield* AgentRuntime.start(binding, mission, {
|
|
646
|
+
budget: toRunBudgetHook(budget),
|
|
647
|
+
estimateCostMicrousd: () => Effect.succeed(500)
|
|
648
|
+
});
|
|
649
|
+
const result = yield* detached.await;
|
|
650
|
+
const events = yield* detached.events;
|
|
651
|
+
const review = yield* Schema.decodeUnknownEffect(CodeReview)(result.output);
|
|
652
|
+
const assessment = assessFlatReview({
|
|
653
|
+
files,
|
|
654
|
+
totalFiles: executionContext?.totalFiles ?? metadata.totalChangedFiles,
|
|
655
|
+
anchorFiles,
|
|
656
|
+
totalAnchorFiles: metadata.totalChangedFiles,
|
|
657
|
+
events
|
|
658
|
+
});
|
|
659
|
+
const usage = yield* budget.snapshot;
|
|
660
|
+
return yield* settleReviewRun({
|
|
1106
661
|
review,
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
662
|
+
inputCoverage: assessment.inputCoverage,
|
|
663
|
+
assurance: assessment.assurance,
|
|
664
|
+
unreviewedPaths: assessment.unreviewedPaths,
|
|
665
|
+
turns: result.turns
|
|
666
|
+
}, {
|
|
667
|
+
metadata,
|
|
668
|
+
files,
|
|
669
|
+
anchorFiles,
|
|
670
|
+
fingerprint,
|
|
671
|
+
usage
|
|
672
|
+
}, options);
|
|
673
|
+
});
|
|
674
|
+
/**
|
|
675
|
+
* Execute one host-scheduled fan-out review: deterministic planning,
|
|
676
|
+
* independent discovery and verification child passes with bounded retries,
|
|
677
|
+
* and a host-composed review from verifier-confirmed candidates only. One
|
|
678
|
+
* budget observes every child pass, so the reported usage is whole-run.
|
|
679
|
+
*/
|
|
680
|
+
const executeFanOutReview = (binding, options) => Effect.gen(function* () {
|
|
681
|
+
const source = yield* PullRequestSource;
|
|
682
|
+
const metadata = yield* source.metadata;
|
|
683
|
+
const files = yield* source.changedFiles;
|
|
684
|
+
const anchorFiles = yield* source.anchorFiles;
|
|
685
|
+
const executionContext = Option.getOrUndefined(yield* Effect.serviceOption(ReviewExecutionContext));
|
|
686
|
+
const fullMission = buildReviewMission(metadata, anchorFiles);
|
|
687
|
+
const fingerprint = options.signature === void 0 ? void 0 : yield* computeChangesetFingerprint(anchorFiles, options.signature(fullMission));
|
|
688
|
+
const budget = yield* makeUsageBudget(options.limits ?? fanOutReviewBudgetLimits);
|
|
689
|
+
const totalFiles = executionContext?.totalFiles ?? metadata.totalChangedFiles;
|
|
690
|
+
const pipeline = yield* runFanOutReview(binding, {
|
|
691
|
+
files,
|
|
692
|
+
anchorFiles,
|
|
693
|
+
totalChangedFiles: totalFiles,
|
|
694
|
+
maxFindings: options.maxFindings,
|
|
695
|
+
budget: toRunBudgetHook(budget)
|
|
1122
696
|
});
|
|
697
|
+
const inputCoverage = fanOutInputCoverage({
|
|
698
|
+
plan: pipeline.plan,
|
|
699
|
+
files,
|
|
700
|
+
totalFiles,
|
|
701
|
+
anchorFiles,
|
|
702
|
+
totalAnchorFiles: metadata.totalChangedFiles
|
|
703
|
+
});
|
|
704
|
+
const usage = yield* budget.snapshot;
|
|
705
|
+
return yield* settleReviewRun({
|
|
706
|
+
review: pipeline.review,
|
|
707
|
+
inputCoverage,
|
|
708
|
+
assurance: pipeline.assurance,
|
|
709
|
+
unreviewedPaths: pipeline.unreviewedPaths,
|
|
710
|
+
turns: pipeline.turns
|
|
711
|
+
}, {
|
|
712
|
+
metadata,
|
|
713
|
+
files,
|
|
714
|
+
anchorFiles,
|
|
715
|
+
fingerprint,
|
|
716
|
+
usage
|
|
717
|
+
}, options);
|
|
1123
718
|
});
|
|
1124
719
|
//#endregion
|
|
1125
720
|
//#region src/internal/factory.ts
|
|
@@ -1206,9 +801,7 @@ const make = (options) => {
|
|
|
1206
801
|
maxFindings: clampMaxFindings(options.maxFindings),
|
|
1207
802
|
signature,
|
|
1208
803
|
modelLabel: options.modelLabel,
|
|
1209
|
-
runUrl: runOptions.runUrl
|
|
1210
|
-
usageScope: "run",
|
|
1211
|
-
reviewShape: "flat"
|
|
804
|
+
runUrl: runOptions.runUrl
|
|
1212
805
|
}).pipe(Effect.provide(Layer.mergeAll(ReviewToolkitLayer, IdGenerator.layer)), Effect.scoped), options.ignore);
|
|
1213
806
|
return {
|
|
1214
807
|
definition,
|
|
@@ -1224,56 +817,47 @@ const make = (options) => {
|
|
|
1224
817
|
};
|
|
1225
818
|
};
|
|
1226
819
|
/**
|
|
1227
|
-
* Build the fan-out reviewer:
|
|
1228
|
-
*
|
|
1229
|
-
*
|
|
1230
|
-
*
|
|
1231
|
-
*
|
|
1232
|
-
*
|
|
820
|
+
* Build the fan-out reviewer: host code schedules host-planned general and
|
|
821
|
+
* specialist discovery plus independent candidate verification directly as
|
|
822
|
+
* bounded child runs — there is no coordinator model and no delegation tool,
|
|
823
|
+
* so review assurance cannot fail on scheduling compliance. Host code
|
|
824
|
+
* composes publication only from exactly confirmed candidates. Child
|
|
825
|
+
* execution bounds are packaged and not configurable here.
|
|
1233
826
|
*/
|
|
1234
827
|
const makeFanOut = (options) => {
|
|
1235
|
-
const
|
|
1236
|
-
guidance: options.guidance,
|
|
1237
|
-
maxFindings: options.maxFindings
|
|
1238
|
-
});
|
|
1239
|
-
const binding = Object.freeze({
|
|
1240
|
-
definition: suite.parent,
|
|
1241
|
-
model: options.model
|
|
1242
|
-
});
|
|
828
|
+
const child = makeFileReviewerDefinition({ guidance: options.guidance });
|
|
1243
829
|
const childBinding = Object.freeze({
|
|
1244
|
-
definition:
|
|
830
|
+
definition: child,
|
|
1245
831
|
model: options.model
|
|
1246
832
|
});
|
|
1247
833
|
const guidanceLines = options.guidance === void 0 ? [] : typeof options.guidance === "string" ? [options.guidance] : options.guidance;
|
|
1248
834
|
const signature = (mission) => [
|
|
1249
|
-
|
|
835
|
+
"pr-review-fan-out-host-scheduled-v1",
|
|
836
|
+
JSON.stringify(Schema.encodeSync(ReviewMission)(mission)),
|
|
1250
837
|
`childGuidance=${JSON.stringify(guidanceLines)}`,
|
|
838
|
+
`maxFindings=${clampMaxFindings(options.maxFindings)}`,
|
|
1251
839
|
`applyVerdict=${String(options.applyVerdict ?? false)}`,
|
|
1252
840
|
...options.modelLabel === void 0 ? [] : [`model=${options.modelLabel}`]
|
|
1253
841
|
].join(" ");
|
|
1254
842
|
const profileSignature = (_mission) => [
|
|
1255
|
-
"pr-review-profile-
|
|
843
|
+
"pr-review-profile-v4-host-scheduled",
|
|
1256
844
|
JSON.stringify(guidanceLines),
|
|
1257
845
|
JSON.stringify(options.ignore ?? []),
|
|
1258
846
|
`maxFindings=${clampMaxFindings(options.maxFindings)}`,
|
|
1259
847
|
`applyVerdict=${String(options.applyVerdict ?? false)}`,
|
|
1260
848
|
...options.modelLabel === void 0 ? [] : [`model=${options.modelLabel}`]
|
|
1261
|
-
].join("
|
|
1262
|
-
const
|
|
1263
|
-
const run = (runOptions = {}) => provideIgnore(executeReview(binding, {
|
|
849
|
+
].join(" ");
|
|
850
|
+
const run = (runOptions = {}) => provideIgnore(executeFanOutReview(childBinding, {
|
|
1264
851
|
post: runOptions.post ?? false,
|
|
1265
852
|
applyVerdict: options.applyVerdict ?? false,
|
|
1266
853
|
limits: options.budget ?? fanOutReviewBudgetLimits,
|
|
1267
854
|
maxFindings: clampMaxFindings(options.maxFindings),
|
|
1268
855
|
signature,
|
|
1269
856
|
modelLabel: options.modelLabel,
|
|
1270
|
-
runUrl: runOptions.runUrl
|
|
1271
|
-
|
|
1272
|
-
reviewShape: "fan-out"
|
|
1273
|
-
}).pipe(Effect.provide(Layer.mergeAll(FanOutCoordinatorToolkitLayer, delegationLayer, IdGenerator.layer)), Effect.scoped), options.ignore);
|
|
857
|
+
runUrl: runOptions.runUrl
|
|
858
|
+
}).pipe(Effect.provide(IdGenerator.layer), Effect.scoped), options.ignore);
|
|
1274
859
|
return {
|
|
1275
|
-
definition:
|
|
1276
|
-
binding,
|
|
860
|
+
definition: child,
|
|
1277
861
|
childBinding,
|
|
1278
862
|
run,
|
|
1279
863
|
fingerprint: makeFingerprint(signature, options.ignore),
|
|
@@ -1615,6 +1199,6 @@ const openAiClientLayer = OpenAiClient.layerConfig({ apiKey: Config.redacted(PRO
|
|
|
1615
1199
|
/** The Anthropic client Layer, credential from `ANTHROPIC_API_KEY`. */
|
|
1616
1200
|
const anthropicClientLayer = AnthropicClient.layerConfig({ apiKey: Config.redacted(PROVIDER_CREDENTIAL_ENV.anthropic) }).pipe(Layer.provide(FetchHttpClient.layer));
|
|
1617
1201
|
//#endregion
|
|
1618
|
-
export {
|
|
1202
|
+
export { reviewBudgetLimits as A, ignoringPullRequestSourceLayer as B, PrReview as C, executeFanOutReview as D, enforceFindingsBound as E, estimateReviewEffort as F, resolveEffortRung as G, InvalidEffortInput as H, planPublication as I, planWalkthrough as L, ReviewCommentDraft as M, ReviewEvent as N, executeReview as O, ReviewPublicationPlan as P, renderAgentPrompt as R, renderProgressSettleBody as S, buildReviewMission as T, isEffortPosition as U, EFFORT_ALIASES as V, parseEffortPosition as W, gitHubReviewProgressLayer as _, anthropicClientLayer as a, renderProgressBeginBody as b, makeOpenAiReviewModel as c, ReviewTargetUnresolved as d, gitHubReviewLayers as f, ReviewProgressReporter as g, PROGRESS_COMMENT_MARKER_PREFIX as h, PROVIDER_EFFORT_RUNGS as i, AGENT_PROMPT_PREAMBLE as j, fanOutReviewBudgetLimits as k, openAiClientLayer as l, resolveReviewTarget as m, DEFAULT_PROVIDER as n, describeReviewModel as o, readGitHubEvent as p, PROVIDER_CREDENTIAL_ENV as r, makeAnthropicReviewModel as s, DEFAULT_MODEL as t, GitHubEventWire as u, noopReviewProgressReporterLayer as v, ReviewRunOutcome as w, renderProgressClaimMarker as x, parseProgressClaim as y, compileIgnoreGlobs as z };
|
|
1619
1203
|
|
|
1620
|
-
//# sourceMappingURL=providers-
|
|
1204
|
+
//# sourceMappingURL=providers-NyP-4rS6.mjs.map
|