@effect-agent/pr-review 0.1.0-beta.22 → 0.1.0-beta.24

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.
@@ -1 +0,0 @@
1
- {"version":3,"file":"github-BgtP7Rdv.mjs","names":["EvidenceShardIds"],"sources":["../src/internal/diff.ts","../src/internal/anchors.ts","../src/internal/source.ts","../src/internal/review-agent.ts","../src/internal/review-units.ts","../src/internal/fan-out.ts","../src/internal/fingerprint.ts","../src/internal/review-state.ts","../src/internal/retirement.ts","../src/internal/github.ts"],"sourcesContent":["import { Schema } from \"effect\";\n\n// ---------------------------------------------------------------------------\n// Changed-file and unified-diff primitives shared by the tool surface, the\n// publication planner, and the GitHub adapter. The parser is deterministic\n// and bounded; it never throws on malformed hunks — unparseable patch text\n// simply yields no commentable lines, which fails findings closed.\n// ---------------------------------------------------------------------------\n\n/** A repository-relative file path as transported values carry it. */\nexport const ChangedPath = Schema.NonEmptyString.check(Schema.isMaxLength(512));\n\n/** GitHub's changed-file status vocabulary, kept verbatim. */\nexport const ChangedFileStatus = Schema.Literals([\n \"added\",\n \"removed\",\n \"modified\",\n \"renamed\",\n \"copied\",\n \"changed\",\n \"unchanged\",\n]);\n\n/** One file changed by the pull request, with its optional textual patch. */\nexport class ChangedFile extends Schema.Class<ChangedFile>(\"@effect-agent/pr-review/ChangedFile\")({\n path: ChangedPath,\n status: ChangedFileStatus,\n additions: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n deletions: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** Present for renames/copies: the path the file previously had. */\n previousPath: Schema.optionalKey(ChangedPath),\n /** Unified-diff hunks; absent for binary or oversized files. */\n patch: Schema.optionalKey(Schema.String),\n /**\n * Bounded UTF-8 content used only when the provider omitted `patch`.\n * Modified files require both sides; additions require head content and\n * deletions require base content. These values are review evidence, never\n * GitHub inline-comment anchors.\n */\n reviewBaseContent: Schema.optionalKey(Schema.String.check(Schema.isMaxLength(200_000))),\n reviewHeadContent: Schema.optionalKey(Schema.String.check(Schema.isMaxLength(200_000))),\n}) {}\n\n/** Complete rendered fallback evidence must fit one ordinary model context. */\nexport const MAX_REVIEW_CONTENT_CHARS = 220_000;\n\n/**\n * Render complete patchless evidence, or refuse it when a required side is\n * absent or B/H annotation would exceed the model-facing bound. Callers use\n * this same value for planning and tool output so truncated fallback evidence\n * can never count as complete coverage.\n */\nexport const renderReviewContent = (file: ChangedFile): string | undefined => {\n if (file.patch !== undefined) return undefined;\n const includeBase = file.status !== \"added\";\n const includeHead = file.status !== \"removed\";\n const sections: Array<string> = [\n \"[GitHub omitted the unified diff. B/H lines below are bounded full-file review content, not valid inline-comment anchors. Report defects from this evidence as non-anchored concerns.]\",\n ];\n let renderedLength = sections[0]?.length ?? 0;\n const append = (part: string): boolean => {\n const nextLength = renderedLength + 1 + part.length;\n if (nextLength > MAX_REVIEW_CONTENT_CHARS) return false;\n sections.push(part);\n renderedLength = nextLength;\n return true;\n };\n const appendSide = (side: \"B\" | \"H\", header: string, content: string): boolean => {\n if (!append(header)) return false;\n const lines = content.split(\"\\n\");\n for (let index = 0; index < lines.length; index += 1) {\n if (!append(`${side}${index + 1} ${lines[index] ?? \"\"}`)) return false;\n }\n return true;\n };\n if (includeBase) {\n if (file.reviewBaseContent === undefined) return undefined;\n if (!appendSide(\"B\", \"[BASE VERSION]\", file.reviewBaseContent)) return undefined;\n }\n if (includeHead) {\n if (file.reviewHeadContent === undefined) return undefined;\n if (!appendSide(\"H\", \"[HEAD VERSION]\", file.reviewHeadContent)) return undefined;\n }\n return sections.join(\"\\n\");\n};\n\n/** Whether complete patchless evidence fits the model-facing review bound. */\nexport const hasReviewableContent = (file: ChangedFile): boolean =>\n renderReviewContent(file) !== undefined;\n\n/** Whether the reviewer has either a real patch or bounded textual fallback evidence. */\nexport const isReviewableFile = (file: ChangedFile): boolean =>\n file.patch !== undefined || hasReviewableContent(file);\n\n/** One parsed line of a unified diff, with both coordinate systems. */\nexport interface PatchLine {\n readonly kind: \"context\" | \"add\" | \"del\";\n readonly oldLine: number | undefined;\n readonly newLine: number | undefined;\n readonly text: string;\n}\n\nconst HUNK_HEADER = /^@@ -(\\d+)(?:,\\d+)? \\+(\\d+)(?:,\\d+)? @@/;\n\n/**\n * Parse unified-diff hunk text into coordinate-tagged lines. Lines outside a\n * recognized hunk header are ignored rather than guessed at.\n */\nexport const parsePatch = (patch: string): ReadonlyArray<PatchLine> => {\n const lines: Array<PatchLine> = [];\n let oldLine = 0;\n let newLine = 0;\n let inHunk = false;\n for (const raw of patch.split(\"\\n\")) {\n const header = HUNK_HEADER.exec(raw);\n if (header !== null) {\n oldLine = Number(header[1]);\n newLine = Number(header[2]);\n inHunk = true;\n continue;\n }\n if (!inHunk) continue;\n if (raw.startsWith(\"+\")) {\n lines.push({ kind: \"add\", oldLine: undefined, newLine, text: raw.slice(1) });\n newLine += 1;\n } else if (raw.startsWith(\"-\")) {\n lines.push({ kind: \"del\", oldLine, newLine: undefined, text: raw.slice(1) });\n oldLine += 1;\n } else if (raw.startsWith(\" \") || raw === \"\") {\n lines.push({ kind: \"context\", oldLine, newLine, text: raw.slice(1) });\n oldLine += 1;\n newLine += 1;\n } else if (raw.startsWith(\"\\\\\")) {\n // \"\\" — metadata, not a diff line.\n } else {\n // Unrecognized content ends the current hunk conservatively.\n inHunk = false;\n }\n }\n return lines;\n};\n\n/**\n * The new-file line numbers a GitHub review comment may anchor to on the\n * RIGHT side: every added or context line that appears in the diff.\n */\nexport const commentableLines = (patch: string): ReadonlySet<number> => {\n const lines = new Set<number>();\n for (const line of parsePatch(patch)) {\n if (line.newLine !== undefined) lines.add(line.newLine);\n }\n return lines;\n};\n\n/**\n * Render a patch with explicit RIGHT-side line numbers so the model can\n * anchor findings without arithmetic. `R<n>` marks a line that exists in the\n * new version of the file (`+` added, blank context); deleted lines keep a\n * bare `-` marker and no number.\n */\nexport const annotatePatch = (patch: string): string => {\n const output: Array<string> = [];\n let oldLine = 0;\n let newLine = 0;\n let inHunk = false;\n for (const raw of patch.split(\"\\n\")) {\n const header = HUNK_HEADER.exec(raw);\n if (header !== null) {\n oldLine = Number(header[1]);\n newLine = Number(header[2]);\n inHunk = true;\n output.push(raw);\n continue;\n }\n if (!inHunk) continue;\n if (raw.startsWith(\"+\")) {\n output.push(`R${newLine} + ${raw.slice(1)}`);\n newLine += 1;\n } else if (raw.startsWith(\"-\")) {\n output.push(` - ${raw.slice(1)}`);\n oldLine += 1;\n } else if (raw.startsWith(\" \") || raw === \"\") {\n output.push(`R${newLine} ${raw.slice(1)}`);\n oldLine += 1;\n newLine += 1;\n } else if (raw.startsWith(\"\\\\\")) {\n output.push(` ${raw}`);\n } else {\n inHunk = false;\n }\n }\n return output.join(\"\\n\");\n};\n","import { commentableLines } from \"./diff.ts\";\nimport type { ChangedFile } from \"./diff.ts\";\nimport type { ReviewFinding } from \"./review-agent.ts\";\n\n/** Why a finding cannot anchor to the current new-version diff, if any. */\nexport const anchorViolation = (\n finding: ReviewFinding,\n files: ReadonlyArray<ChangedFile>,\n): string | undefined => {\n const file = files.find((candidate) => candidate.path === finding.path);\n if (file === undefined) return \"path is not part of the changeset\";\n if (file.patch === undefined) return \"file has no anchorable textual diff\";\n if (finding.endLine < finding.startLine) return \"endLine precedes startLine\";\n if (finding.endLine - finding.startLine + 1 > 100) return \"range is implausibly large\";\n const anchors = commentableLines(file.patch);\n for (let line = finding.startLine; line <= finding.endLine; line += 1) {\n if (!anchors.has(line)) return `line ${line} is not part of the diff`;\n }\n return undefined;\n};\n","import { Context, Effect, Schema } from \"effect\";\n\nimport { ChangedFile } from \"./diff.ts\";\n\n// ---------------------------------------------------------------------------\n// The pull-request source port: everything the review tools may observe about\n// one pull request. The live adapter speaks the GitHub REST API; the fixture\n// adapter (testing entry) serves an in-memory pull request so ordinary gates\n// and dry runs need no network or credential.\n// ---------------------------------------------------------------------------\n\n/** Reading a file head version larger than this is refused, never truncated silently. */\nexport const MAX_FILE_CHARS = 200_000;\n\n/** The changeset surface is bounded; larger pull requests fail typed. */\nexport const MAX_CHANGED_FILES = 300;\n\n/** Pull-request identity and framing shown to the agent as its mission. */\nexport class PullRequestMetadata extends Schema.Class<PullRequestMetadata>(\n \"@effect-agent/pr-review/PullRequestMetadata\",\n)({\n /** `owner/name`, exactly as GitHub renders it. */\n repository: Schema.NonEmptyString.check(Schema.isMaxLength(200)),\n number: Schema.Int.check(Schema.isGreaterThan(0)),\n title: Schema.String.check(Schema.isMaxLength(400)),\n /** Author-provided description; empty when the author left none. */\n body: Schema.String.check(Schema.isMaxLength(20_000)),\n baseRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n /** Exact base commit used to validate persisted incremental-review lineage. */\n baseSha: Schema.optionalKey(Schema.NonEmptyString.check(Schema.isMaxLength(64))),\n headRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n headSha: Schema.NonEmptyString.check(Schema.isMaxLength(64)),\n /** GitHub's own changed-file total; may exceed what `changedFiles` returns. */\n totalChangedFiles: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n}) {}\n\n/** The upstream source failed: API error, network fault, or malformed payload. */\nexport class PullRequestSourceFailure extends Schema.TaggedError<PullRequestSourceFailure>()(\n \"PullRequestSourceFailure\",\n {\n operation: Schema.String,\n reason: Schema.String,\n },\n) {\n override get message() {\n return `Pull-request source operation '${this.operation}' failed: ${this.reason}`;\n }\n}\n\n/** A model-supplied path or range was invalid; always fail-closed (SEC-007). */\nexport class ReviewInputViolation extends Schema.TaggedError<ReviewInputViolation>()(\n \"ReviewInputViolation\",\n {\n input: Schema.String,\n reason: Schema.String,\n },\n) {\n override get message() {\n return `Rejected review input '${this.input}': ${this.reason}`;\n }\n}\n\nconst BACKSLASH = String.fromCharCode(92);\n\n/**\n * Normalize and validate one model-supplied repository-relative path.\n * Absolute paths, drive letters, backslashes, empty segments, `.` and `..`\n * segments are all violations — never silently fixed. The changeset list is\n * the real allowlist; this check is defense in depth for URL construction.\n */\nexport const normalizeRepoRelativePath = (\n path: string,\n): Effect.Effect<string, ReviewInputViolation> => {\n const fail = (reason: string) => Effect.fail(ReviewInputViolation.make({ input: path, reason }));\n if (path.length === 0 || path.length > 512) {\n return fail(\"Path length is out of bounds.\");\n }\n if (path.includes(BACKSLASH)) {\n return fail(\"Path contains a forbidden backslash.\");\n }\n if (path.startsWith(\"/\") || /^[A-Za-z]:/.test(path)) {\n return fail(\"Path must be repository-relative, not absolute.\");\n }\n const segments = path.split(\"/\");\n for (const segment of segments) {\n if (segment === \"\" || segment === \".\" || segment === \"..\") {\n return fail(\"Path segments must not be empty, '.', or '..'.\");\n }\n }\n return Effect.succeed(segments.join(\"/\"));\n};\n\n/** Read-only view of one pull request; the only repository access tools get. */\nexport class PullRequestSource extends Context.Service<\n PullRequestSource,\n {\n readonly metadata: Effect.Effect<PullRequestMetadata, PullRequestSourceFailure>;\n /** Files exposed to the model for this run (full PR or selected delta). */\n readonly changedFiles: Effect.Effect<ReadonlyArray<ChangedFile>, PullRequestSourceFailure>;\n /** Full current PR diff used only for host-side anchor/state validation. */\n readonly anchorFiles: Effect.Effect<ReadonlyArray<ChangedFile>, PullRequestSourceFailure>;\n /**\n * The head-version content of one CHANGED file. Paths outside the\n * changeset are violations: the reviewer reads the change, not the tree.\n */\n readonly readFile: (\n path: string,\n ) => Effect.Effect<string, PullRequestSourceFailure | ReviewInputViolation>;\n }\n>()(\"@effect-agent/pr-review/PullRequestSource\") {}\n","import { Effect, Schema } from \"effect\";\nimport { Agent, AgentPolicy, ToolExecutionClass, ToolResultBounds } from \"effect-agent\";\nimport { Tool, Toolkit } from \"effect/unstable/ai\";\n\nimport {\n annotatePatch,\n ChangedFileStatus,\n ChangedPath,\n hasReviewableContent,\n renderReviewContent,\n} from \"./diff.ts\";\nimport type { ChangedFile } from \"./diff.ts\";\nimport {\n normalizeRepoRelativePath,\n PullRequestSource,\n PullRequestSourceFailure,\n ReviewInputViolation,\n} from \"./source.ts\";\n\n// ---------------------------------------------------------------------------\n// The pull-request reviewer: a bounded, read-only agent. Every tool observes\n// the pull request through the PullRequestSource port; nothing the model can\n// call mutates anything. Publishing the review happens OUTSIDE the agent\n// loop, after the finding anchors have been validated against the real diff\n// (model output is untrusted input, AGENTS.md rule 11).\n// ---------------------------------------------------------------------------\n\n/** The hard findings bound carried by the CodeReview schema. */\nexport const MAX_FINDINGS = 20;\n\n/** The hard non-anchored-concerns bound carried by the CodeReview schema. */\nexport const MAX_CONCERNS = 10;\n\n/** Maximum characters in one deterministic model-visible evidence chunk. */\nexport const MAX_PATCH_CHARS = 60_000;\n\n/** The encoded Tool result must retain one complete bounded content fallback. */\nexport const REVIEW_TOOL_RESULT_MAX_BYTES = 2 * 1024 * 1024;\n\n/** One `read_file` slice never exceeds this many lines. */\nconst MAX_SLICE_LINES = 1_000;\nconst DEFAULT_SLICE_LINES = 400;\n\n// ---------------------------------------------------------------------------\n// Tool surface.\n// ---------------------------------------------------------------------------\n\nexport class ChangedFileSummary extends Schema.Class<ChangedFileSummary>(\n \"@effect-agent/pr-review/ChangedFileSummary\",\n)({\n path: ChangedPath,\n status: ChangedFileStatus,\n additions: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n deletions: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n hasTextualDiff: Schema.Boolean,\n /** True when a missing patch was recovered as bounded UTF-8 base/head content. */\n hasReviewableContent: Schema.Boolean,\n}) {}\n\nexport class ChangedFilesView extends Schema.Class<ChangedFilesView>(\n \"@effect-agent/pr-review/ChangedFilesView\",\n)({\n totalFiles: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** True when the pull request has more changed files than are listed here. */\n truncated: Schema.Boolean,\n files: Schema.Array(ChangedFileSummary).check(Schema.isMaxLength(300)),\n}) {}\n\nexport class ListChangedFilesQuery extends Schema.Class<ListChangedFilesQuery>(\n \"@effect-agent/pr-review/ListChangedFilesQuery\",\n)({\n /** Explicit constant keeps the zero-choice operation compatible with strict provider schemas. */\n scope: Schema.Literal(\"all\"),\n}) {}\n\nexport const ListChangedFiles = Tool.make(\"list_changed_files\", {\n description:\n \"List every file changed by this pull request with its status, line counts, and whether a textual diff is available.\",\n parameters: ListChangedFilesQuery,\n success: ChangedFilesView,\n failure: PullRequestSourceFailure,\n failureMode: \"error\",\n dependencies: [PullRequestSource],\n}).annotate(ToolExecutionClass, \"readonly\");\n\nexport class FileDiffQuery extends Schema.Class<FileDiffQuery>(\n \"@effect-agent/pr-review/FileDiffQuery\",\n)({\n path: ChangedPath,\n}) {}\n\nexport class FileDiffView extends Schema.Class<FileDiffView>(\n \"@effect-agent/pr-review/FileDiffView\",\n)({\n path: ChangedPath,\n status: ChangedFileStatus,\n reviewMode: Schema.Literals([\"diff\", \"content\", \"unavailable\"]),\n /**\n * The unified diff with explicit RIGHT-side line numbers: `R<n>` marks a\n * line present in the new file version (only those may anchor findings);\n * `-` marks removed lines. For content fallback, `B<n>` and `H<n>`\n * identify base/head lines for reading only; they are never valid anchors.\n * Empty only when neither a patch nor bounded textual content exists.\n */\n annotatedPatch: Schema.String,\n truncated: Schema.Boolean,\n}) {}\n\nexport interface FileReviewEvidenceChunk {\n readonly reviewMode: \"diff\" | \"content\" | \"unavailable\";\n readonly annotatedPatch: string;\n}\n\n/**\n * Split complete model-visible evidence at deterministic line boundaries.\n * A pathological single line is hard-sliced so every character is still\n * assigned and every chunk remains within the provider-independent bound.\n */\nconst boundedEvidenceChunks = (evidence: string): ReadonlyArray<string> => {\n if (evidence.length <= MAX_PATCH_CHARS) return [evidence];\n const chunks: Array<string> = [];\n let offset = 0;\n while (offset < evidence.length) {\n let end = Math.min(offset + MAX_PATCH_CHARS, evidence.length);\n if (end < evidence.length) {\n const boundary = evidence.lastIndexOf(\"\\n\", end - 1);\n if (boundary >= offset) end = boundary + 1;\n }\n // No newline exists inside the bound: preserve complete input with a\n // deterministic hard slice instead of silently truncating the line.\n if (end === offset) end = Math.min(offset + MAX_PATCH_CHARS, evidence.length);\n chunks.push(evidence.slice(offset, end));\n offset = end;\n }\n return chunks;\n};\n\n/** Complete bounded evidence chunks used by deterministic fan-out planning. */\nexport const fileReviewEvidenceChunks = (\n file: ChangedFile,\n): ReadonlyArray<FileReviewEvidenceChunk> => {\n const contentEvidence = renderReviewContent(file);\n const reviewMode =\n file.patch !== undefined\n ? (\"diff\" as const)\n : contentEvidence !== undefined\n ? (\"content\" as const)\n : (\"unavailable\" as const);\n const annotated = file.patch === undefined ? (contentEvidence ?? \"\") : annotatePatch(file.patch);\n return boundedEvidenceChunks(annotated).map((annotatedPatch) => ({\n reviewMode,\n annotatedPatch,\n }));\n};\n\n/** Host-owned rendering of one changed file's bounded review evidence. */\nexport const fileDiffView = (file: ChangedFile): FileDiffView => {\n const chunks = fileReviewEvidenceChunks(file);\n const first = chunks[0] ?? { reviewMode: \"unavailable\" as const, annotatedPatch: \"\" };\n const truncated = first.reviewMode === \"diff\" && chunks.length > 1;\n return FileDiffView.make({\n path: file.path,\n status: file.status,\n reviewMode: first.reviewMode,\n annotatedPatch: truncated ? `${first.annotatedPatch}\\n[diff truncated]` : first.annotatedPatch,\n truncated,\n });\n};\n\n// Read failures stay model-visible results (\"return\"), never run-killers:\n// a model asking for an out-of-changeset path is expected untrusted-input\n// behavior, and the fail-closed answer is a typed refusal it can correct —\n// aborting the whole review on one bad path guess would be fragility, not\n// security (the run stays bounded by AgentPolicy regardless).\nexport const ReadFileDiff = Tool.make(\"read_file_diff\", {\n description:\n \"Read one changed file's review evidence. A normal unified diff marks valid anchors as R<number>. When GitHub omitted the diff, bounded base/head content is returned with B/H line labels for review but no valid inline anchors.\",\n parameters: FileDiffQuery,\n success: FileDiffView,\n failure: Schema.Union([PullRequestSourceFailure, ReviewInputViolation]),\n failureMode: \"return\",\n dependencies: [PullRequestSource],\n}).annotate(ToolExecutionClass, \"readonly\");\n\nexport class FileSliceQuery extends Schema.Class<FileSliceQuery>(\n \"@effect-agent/pr-review/FileSliceQuery\",\n)({\n path: ChangedPath,\n /** 1-based first line to read; defaults to 1. */\n startLine: Schema.optionalKey(Schema.Int.check(Schema.isGreaterThan(0))),\n /** Number of lines to read; defaults to 400, capped at 1000. */\n maxLines: Schema.optionalKey(\n Schema.Int.check(Schema.isGreaterThan(0)).check(Schema.isLessThanOrEqualTo(MAX_SLICE_LINES)),\n ),\n}) {}\n\nexport class FileSlice extends Schema.Class<FileSlice>(\"@effect-agent/pr-review/FileSlice\")({\n path: ChangedPath,\n startLine: Schema.Int.check(Schema.isGreaterThan(0)),\n endLine: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n totalLines: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** Slice content with each line prefixed by its 1-based line number. */\n content: Schema.String,\n}) {}\n\nexport const ReadFile = Tool.make(\"read_file\", {\n description:\n \"Read a numbered slice of the NEW (head) version of one changed file, for context around the diff. Only files in the changeset are readable.\",\n parameters: FileSliceQuery,\n success: FileSlice,\n failure: Schema.Union([PullRequestSourceFailure, ReviewInputViolation]),\n failureMode: \"return\",\n dependencies: [PullRequestSource],\n}).annotate(ToolExecutionClass, \"readonly\");\n\nexport const ReviewToolkit = Toolkit.make(ListChangedFiles, ReadFileDiff, ReadFile);\n\n/**\n * The `list_changed_files` handler, shared by the flat reviewer's toolkit and\n * any extended toolkit built by the configuration factory.\n */\nexport const listChangedFilesHandler = (_query: ListChangedFilesQuery) =>\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const files = yield* source.changedFiles;\n const metadata = yield* source.metadata;\n return ChangedFilesView.make({\n totalFiles: metadata.totalChangedFiles,\n truncated: files.length < metadata.totalChangedFiles,\n files: files.map((file) =>\n ChangedFileSummary.make({\n path: file.path,\n status: file.status,\n additions: file.additions,\n deletions: file.deletions,\n hasTextualDiff: file.patch !== undefined,\n hasReviewableContent: hasReviewableContent(file),\n }),\n ),\n });\n });\n\n/**\n * The `read_file_diff` handler, shared verbatim by the flat reviewer's\n * toolkit and the fan-out child's toolkit (fan-out.ts).\n */\nexport const readFileDiffHandler = (query: FileDiffQuery) =>\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const relative = yield* normalizeRepoRelativePath(query.path);\n const files = yield* source.changedFiles;\n const file = files.find((candidate) => candidate.path === relative);\n if (file === undefined) {\n return yield* ReviewInputViolation.make({\n input: relative,\n reason: \"Path is not part of this pull request's changeset.\",\n });\n }\n return fileDiffView(file);\n });\n\n/**\n * The `read_file` handler, shared verbatim by the flat reviewer's toolkit\n * and the fan-out child's toolkit (fan-out.ts).\n */\nexport const readFileHandler = (query: FileSliceQuery) =>\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const relative = yield* normalizeRepoRelativePath(query.path);\n const content = yield* source.readFile(relative);\n const lines = content.split(\"\\n\");\n const startLine = query.startLine ?? 1;\n const maxLines = query.maxLines ?? DEFAULT_SLICE_LINES;\n if (startLine > lines.length) {\n return yield* ReviewInputViolation.make({\n input: `${relative}:${startLine}`,\n reason: `startLine is beyond the end of the file (${lines.length} lines).`,\n });\n }\n const slice = lines.slice(startLine - 1, startLine - 1 + maxLines);\n const endLine = startLine + slice.length - 1;\n return FileSlice.make({\n path: relative,\n startLine,\n endLine,\n totalLines: lines.length,\n content: slice\n .map((text, index) => `${String(startLine + index).padStart(5)} ${text}`)\n .join(\"\\n\"),\n });\n });\n\nexport const ReviewToolkitLayer = ReviewToolkit.toLayer({\n list_changed_files: listChangedFilesHandler,\n read_file_diff: readFileDiffHandler,\n read_file: readFileHandler,\n});\n\n// ---------------------------------------------------------------------------\n// Mission input and review output contracts.\n// ---------------------------------------------------------------------------\n\nexport class ReviewMission extends Schema.Class<ReviewMission>(\n \"@effect-agent/pr-review/ReviewMission\",\n)({\n repository: Schema.NonEmptyString.check(Schema.isMaxLength(200)),\n number: Schema.Int.check(Schema.isGreaterThan(0)),\n title: Schema.String.check(Schema.isMaxLength(400)),\n body: Schema.String.check(Schema.isMaxLength(20_000)),\n baseRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n headRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n changedFileCount: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n}) {}\n\nexport const FindingSeverity = Schema.Literals([\"blocking\", \"important\", \"nit\"]);\nexport type FindingSeverity = typeof FindingSeverity.Type;\n\n/**\n * What kind of problem a finding names. Model-claimed like severity — it is a\n * label for scanning a busy review, never an input to the check conclusion.\n */\nexport const FindingCategory = Schema.Literals([\n \"correctness\",\n \"security\",\n \"concurrency\",\n \"performance\",\n \"resources\",\n \"error-handling\",\n \"testing\",\n \"maintainability\",\n \"style\",\n \"docs\",\n]);\nexport type FindingCategory = typeof FindingCategory.Type;\n\nexport class ReviewFinding extends Schema.Class<ReviewFinding>(\n \"@effect-agent/pr-review/ReviewFinding\",\n)({\n path: ChangedPath,\n /** 1-based line numbers in the NEW file version; must appear in the diff. */\n startLine: Schema.Int.check(Schema.isGreaterThan(0)),\n endLine: Schema.Int.check(Schema.isGreaterThan(0)),\n severity: FindingSeverity,\n /** Optional problem-kind label rendered next to the severity. */\n category: Schema.optionalKey(FindingCategory),\n title: Schema.NonEmptyString.check(Schema.isMaxLength(120)),\n body: Schema.NonEmptyString.check(Schema.isMaxLength(2_000)),\n /** Replacement for exactly lines startLine..endLine; omit when unsure. */\n suggestion: Schema.optionalKey(\n Schema.String.annotate({\n description:\n \"Committable replacement source code for exactly lines startLine..endLine: the full replacement for every line in the range and nothing else — never prose describing the change, which belongs in body.\",\n }).check(Schema.isMaxLength(2_000)),\n ),\n}) {}\n\nexport const ReviewVerdict = Schema.Literals([\"approve\", \"comment\", \"request-changes\"]);\nexport type ReviewVerdict = typeof ReviewVerdict.Type;\n\n/**\n * A concern with no diff line to anchor to: a missing deletion or cleanup,\n * rollout or migration sequencing, a coverage gap the diff implies but does\n * not add, or a scope question only the author can answer. Rendered as a\n * review-body section — never as an inline comment, so it needs no anchor and\n * is never demoted.\n */\nexport class ReviewConcern extends Schema.Class<ReviewConcern>(\n \"@effect-agent/pr-review/ReviewConcern\",\n)({\n severity: FindingSeverity,\n title: Schema.NonEmptyString.check(Schema.isMaxLength(120)),\n body: Schema.NonEmptyString.check(Schema.isMaxLength(2_000)),\n}) {}\n\n/** The per-entry walkthrough summary bound, and the entries bound (the changeset cap). */\nexport const MAX_WALKTHROUGH_SUMMARY_CHARS = 240;\nexport const MAX_WALKTHROUGH_ENTRIES = 300;\n\n/**\n * One reviewed file's one-sentence change summary. Rendered only when the\n * path is actually part of the changeset — like finding anchors, walkthrough\n * paths are validated host-side and invented ones are dropped.\n */\nexport class WalkthroughEntry extends Schema.Class<WalkthroughEntry>(\n \"@effect-agent/pr-review/WalkthroughEntry\",\n)({\n path: ChangedPath,\n summary: Schema.NonEmptyString.check(Schema.isMaxLength(MAX_WALKTHROUGH_SUMMARY_CHARS)),\n}) {}\n\nexport class CodeReview extends Schema.Class<CodeReview>(\"@effect-agent/pr-review/CodeReview\")({\n summary: Schema.NonEmptyString.check(Schema.isMaxLength(4_000)),\n verdict: ReviewVerdict,\n findings: Schema.Array(ReviewFinding).check(Schema.isMaxLength(MAX_FINDINGS)),\n /** Non-anchorable concerns; absent when the review raises none. */\n concerns: Schema.optionalKey(Schema.Array(ReviewConcern).check(Schema.isMaxLength(MAX_CONCERNS))),\n /** Per-file change summaries; absent when the model provides none. */\n walkthrough: Schema.optionalKey(\n Schema.Array(WalkthroughEntry).check(Schema.isMaxLength(MAX_WALKTHROUGH_ENTRIES)),\n ),\n}) {}\n\n// ---------------------------------------------------------------------------\n// Instructions. Live models diverge wherever the contract is implicit, so the\n// exact JSON shape, the anchor rule, and the suggestion rule are all spelled\n// out with types. Consumer guidance is injected BETWEEN the mission framing\n// and the procedure — it can widen what the reviewer pays attention to, but\n// the machine contract (anchor rule, JSON shape, bounds) is always appended\n// by this builder and cannot be edited out.\n// ---------------------------------------------------------------------------\n\n/** Consumer-supplied domain guidance: static lines or a function of the mission. */\nexport type ReviewGuidance =\n | string\n | ReadonlyArray<string>\n | ((mission: ReviewMission) => string | ReadonlyArray<string>);\n\nexport const resolveGuidance = (\n guidance: ReviewGuidance | undefined,\n mission: ReviewMission,\n): ReadonlyArray<string> => {\n if (guidance === undefined) return [];\n const value = typeof guidance === \"function\" ? guidance(mission) : guidance;\n const lines = typeof value === \"string\" ? [value] : value;\n return lines.filter((line) => line.length > 0);\n};\n\nexport interface ReviewInstructionOptions {\n readonly guidance?: ReviewGuidance | undefined;\n /** Advertised findings bound; clamped to the CodeReview schema cap. */\n readonly maxFindings?: number | undefined;\n}\n\n/** Clamp a configured findings bound into the schema-supported range. */\nexport const clampMaxFindings = (maxFindings: number | undefined): number =>\n maxFindings === undefined\n ? MAX_FINDINGS\n : Math.min(MAX_FINDINGS, Math.max(1, Math.trunc(maxFindings)));\n\n/** Build the flat reviewer's instructions with optional consumer guidance. */\nexport const makeReviewInstructions =\n (options: ReviewInstructionOptions = {}) =>\n (mission: ReviewMission): string => {\n const maxFindings = clampMaxFindings(options.maxFindings);\n return [\n `You are a senior code reviewer for pull request #${mission.number} (\"${mission.title}\") in ${mission.repository}, merging ${mission.headRef} into ${mission.baseRef}. It changes ${mission.changedFileCount} file(s).`,\n mission.body.length > 0\n ? `Author description:\\n${mission.body}`\n : \"The author provided no description.\",\n ...resolveGuidance(options.guidance, mission),\n \"Work in this order:\",\n \"1. Call list_changed_files once to see the selected input scope. In incremental reviews it is deliberately a subset of the pull request's full diff (totalFiles counts the whole pull request); omitted paths belong to settled prior scope or explicit host exclusions, not to this run.\",\n \"2. Call read_file_diff for every listed file. A normal diff marks new-version anchors as R<number>; only those numbers are valid startLine/endLine values. When GitHub omitted a diff, the tool may return bounded base/head content marked B/H instead. Review that content, but report its defects as non-anchored concerns because B/H lines cannot anchor GitHub comments. Never anchor a finding to a removed (-), B, or H line.\",\n \"3. Call read_file when you need surrounding context the diff does not show. ONLY listed files are readable — read_file_diff and read_file both return a failed result for any other path (an import, a neighbor, a file named in the description). Do not request or retry unlisted paths; reason from the visible diffs instead and note the gap honestly in your summary when it matters.\",\n \"4. Review for real defects first: correctness, security, concurrency, resource leaks, error handling, API misuse. Style nits are least important. Do not praise; do not restate the diff.\",\n \"When the diff adds or changes a test, check that it can actually fail: a test that would still pass with the bug present is theatre, not coverage. The usual tell is a loose assertion standing where an exact one belongs — >= or a truthiness check over an expected value, or a snapshot that absorbs whatever it is handed.\",\n \"Go shallow only when the diff has no behavioral surface at all: doc typos, formatting, lockfile or generated-code regeneration, a mechanical rename. Line count is not the signal — a one-line change to auth, money, SQL, a comparison operator, or a config default is not trivial.\",\n \"Drop bloat-shaped findings before reporting: defensive checks for cases that cannot happen, abstractions used once, comments restating obvious code, tests asserting tautologies, just-in-case guards. A finding must be sound, correct, and worth acting on; prefer an explicit keep over an invented finding.\",\n '5. After collecting anchored findings, deliberately scan for concerns with NO line to point at: deletion or cleanup plans for code the diff replaces, rollout or migration sequencing, coverage gaps the diff implies but does not add, scope questions only the author can answer. Report each as a \"concern\", never as a finding with an invented anchor; report none when none exist.',\n `6. Write a walkthrough: for every file whose evidence you examined, one factual sentence (<= ${MAX_WALKTHROUGH_SUMMARY_CHARS} chars) describing what changed in that file — written for a reader scanning the pull request, never restating the diff line by line. Use only paths from list_changed_files; invented paths are dropped.`,\n '7. Then return ONLY a JSON object — no Markdown fences, no prose before or after — exactly this shape: {\"summary\": <string, 1-3 paragraphs of overall assessment>, \"verdict\": <\"approve\" | \"comment\" | \"request-changes\">, \"findings\": [{\"path\": <string, a changed file path>, \"startLine\": <integer, an R-marked new-file line>, \"endLine\": <integer, >= startLine, same file, R-marked>, \"severity\": <\"blocking\" | \"important\" | \"nit\">, \"category\": <OPTIONAL: \"correctness\" | \"security\" | \"concurrency\" | \"performance\" | \"resources\" | \"error-handling\" | \"testing\" | \"maintainability\" | \"style\" | \"docs\">, \"title\": <string, <= 120 chars>, \"body\": <string, why it matters and what to do>, \"suggestion\": <string, OPTIONAL: replacement text for exactly lines startLine..endLine, ready to commit>}], \"concerns\": <array, OPTIONAL: [{\"severity\": <\"blocking\" | \"important\" | \"nit\">, \"title\": <string, <= 120 chars>, \"body\": <string>}], only for step-5 concerns with no valid anchor — never duplicate a finding here>, \"walkthrough\": <array, OPTIONAL: [{\"path\": <string, a changed file path>, \"summary\": <string, the step-6 sentence>}], one entry per reviewed file>}.',\n `Report at most ${maxFindings} findings and at most ${MAX_CONCERNS} concerns; prefer the most important ones. An empty findings array with verdict \"approve\" is a valid review. Include \"suggestion\" only when you are confident the replacement compiles and preserves intent; its text must contain the full replacement for every line in the range and nothing else.`,\n 'Use verdict \"request-changes\" only when at least one finding or concern is \"blocking\". Line anchors you invent will be discarded, so copy R-numbers from read_file_diff output.',\n ].join(\"\\n\");\n };\n\n/** The default flat-reviewer instructions: no guidance, schema-cap findings. */\nexport const reviewInstructions = makeReviewInstructions();\n\n/** The default flat-reviewer execution bounds. */\nexport const defaultReviewPolicy = AgentPolicy.make({\n maxTurns: 12,\n maxToolCalls: 24,\n maxDuration: \"8 minutes\",\n toolConcurrency: 2,\n // The read tools return refusals as model-visible results (failureMode\n // \"return\"), and a model may probe several out-of-scope paths in ONE\n // parallel batch — e.g. files the PR description names outside an\n // incremental delta — before it has seen a single refusal. The engine's\n // default limit of 3 made that exploration fatal; half the tool-call\n // budget keeps the genuinely-stuck brake while maxToolCalls and\n // maxDuration bound the run regardless.\n repeatedFailureLimit: 12,\n tokenBudget: 300_000,\n // Keep enough output/summary headroom for the 200k-class provider window;\n // tool-heavy histories prune before the engine spends a summarization call.\n contextTokenLimit: 150_000,\n toolResultBounds: ToolResultBounds.make({ maxBytes: REVIEW_TOOL_RESULT_MAX_BYTES }),\n // Budget soft landing (RUN-018): an exhausted reviewer returns its partial\n // review on one final tool-free turn instead of failing the whole run.\n onExhaustion: \"final-answer\",\n});\n\n// ---------------------------------------------------------------------------\n// Agent Definition: model-agnostic (D-027); bindings are created by callers\n// or by the configuration factory.\n// ---------------------------------------------------------------------------\n\nexport const PullRequestReviewer = Agent.define(\"pr-reviewer\", {\n input: ReviewMission,\n output: CodeReview,\n instructions: reviewInstructions,\n toolkit: ReviewToolkit,\n policy: defaultReviewPolicy,\n description:\n \"Review one pull request read-only: list the changeset, read annotated diffs and head-file context, and return a structured, line-anchored code review.\",\n metadata: { deploymentClass: \"E\", surface: \"read-only\" },\n});\n","import { Schema } from \"effect\";\n\nimport type { ChangedFile } from \"./diff.ts\";\nimport { ChangedPath, isReviewableFile } from \"./diff.ts\";\nimport {\n fileReviewEvidenceChunks,\n type FindingSeverity,\n MAX_PATCH_CHARS,\n type ReviewFinding,\n} from \"./review-agent.ts\";\n\n// ---------------------------------------------------------------------------\n// Pure, deterministic planning for the fan-out reviewer: group the changeset\n// into bounded review units (the work one delegated child reviews) and merge\n// the children's findings back into one bounded review. Both operations are\n// plain functions so tests pin them directly and the coordinator's tool\n// surface stays deterministic — grouping is an algorithm, not model prose.\n// ---------------------------------------------------------------------------\n\n/** The delegation fan-out bound: one parent Run spawns at most this many children. */\nexport const MAX_REVIEW_UNITS = 8;\n\n/** A unit never carries more files than this, regardless of their size. */\nexport const MAX_UNIT_FILES = 12;\n\n/** Compatibility export; complete evidence chars now own unit packing. */\nexport const UNIT_CHANGED_LINE_BUDGET = 800;\n\n/**\n * Bound the complete model-visible evidence assigned to one child. This is a\n * character bound rather than a token estimate because it is deterministic,\n * provider-independent, and enforced before any model call.\n */\nexport const UNIT_EVIDENCE_CHAR_BUDGET = 240_000;\n\n/** Maximum complete evidence shards placed in one child brief. */\nexport const MAX_UNIT_EVIDENCE_SHARDS = 12;\n\n/**\n * Keep overflow diagnostics bounded to one plan's total assignment capacity.\n * The plan separately records the exact overflow count and every affected\n * path, so identifiers are a deterministic diagnostic sample rather than the\n * authority for whether input coverage is complete.\n */\nexport const MAX_REPORTED_UNASSIGNED_EVIDENCE_SHARDS = MAX_REVIEW_UNITS * MAX_UNIT_EVIDENCE_SHARDS;\n\n/** @deprecated Use `MAX_PATCH_CHARS`; this is now the per-shard bound. */\nexport const MAX_FILE_EVIDENCE_CHARS = MAX_PATCH_CHARS;\n\n/** The merged review never exceeds the `CodeReview` findings bound. */\nexport const MAX_MERGED_FINDINGS = 20;\n\nexport const ReviewUnitId = Schema.NonEmptyString.check(Schema.isMaxLength(32));\n\n/** High-risk surfaces that receive an explicit specialist focus label. */\nexport const ReviewRiskCategory = Schema.Literals([\n \"authentication-authorization\",\n \"security-boundary\",\n \"persistence-durability\",\n \"concurrency\",\n \"credential-handling\",\n \"external-side-effects\",\n]);\nexport type ReviewRiskCategory = typeof ReviewRiskCategory.Type;\n\nexport const ReviewDiscoveryPerspective = Schema.Literals([\"general\", \"risk-specialist\"]);\nexport type ReviewDiscoveryPerspective = typeof ReviewDiscoveryPerspective.Type;\n\nexport const ReviewPassId = Schema.NonEmptyString.check(Schema.isMaxLength(64));\nexport const ReviewEvidenceShardId = Schema.NonEmptyString.check(Schema.isMaxLength(32));\n\n/** One complete bounded slice of a changed path's model-visible evidence. */\nexport class ReviewEvidenceShard extends Schema.Class<ReviewEvidenceShard>(\n \"@effect-agent/pr-review/ReviewEvidenceShard\",\n)({\n shardId: ReviewEvidenceShardId,\n path: ChangedPath,\n ordinal: Schema.Int.check(Schema.isGreaterThanOrEqualTo(1)),\n total: Schema.Int.check(Schema.isGreaterThanOrEqualTo(1)),\n evidenceChars: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)).check(\n Schema.isLessThanOrEqualTo(MAX_PATCH_CHARS),\n ),\n}) {}\n\nconst EvidenceShardIds = Schema.Array(ReviewEvidenceShardId)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_EVIDENCE_SHARDS));\n\n/** One required, independently scoped discovery attempt. */\nexport class ReviewDiscoveryPass extends Schema.Class<ReviewDiscoveryPass>(\n \"@effect-agent/pr-review/ReviewDiscoveryPass\",\n)({\n passId: ReviewPassId,\n unitId: ReviewUnitId,\n paths: Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_FILES)),\n evidenceShardIds: EvidenceShardIds,\n perspective: ReviewDiscoveryPerspective,\n /** Empty for the general pass; explicit deterministic focus for specialists. */\n riskCategories: Schema.Array(ReviewRiskCategory).check(Schema.isMaxLength(6)),\n}) {}\n\n/** One bounded slice of the changeset delegated to one child reviewer. */\nexport class ReviewUnit extends Schema.Class<ReviewUnit>(\"@effect-agent/pr-review/ReviewUnit\")({\n unitId: ReviewUnitId,\n paths: Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_FILES)),\n evidenceShards: Schema.Array(ReviewEvidenceShard)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_EVIDENCE_SHARDS)),\n /** additions + deletions across the unit's files, for honest sizing. */\n changedLines: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** Complete model-visible diff/content evidence assigned to each child. */\n evidenceChars: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)).check(\n Schema.isLessThanOrEqualTo(UNIT_EVIDENCE_CHAR_BUDGET),\n ),\n /** Host-classified focus labels for the unit's redundant specialist pass. */\n riskCategories: Schema.Array(ReviewRiskCategory).check(Schema.isMaxLength(6)),\n}) {}\n\n/** The complete deterministic fan-out plan over one changeset. */\nexport class ReviewUnitPlan extends Schema.Class<ReviewUnitPlan>(\n \"@effect-agent/pr-review/ReviewUnitPlan\",\n)({\n totalFiles: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** True when the source returned fewer files than the pull request has. */\n truncated: Schema.Boolean,\n units: Schema.Array(ReviewUnit).check(Schema.isMaxLength(MAX_REVIEW_UNITS)),\n /** Exact discovery calls the coordinator must make. */\n discoveryPasses: Schema.Array(ReviewDiscoveryPass).check(\n Schema.isMaxLength(MAX_REVIEW_UNITS * 2),\n ),\n /** Changed files with neither a textual diff nor bounded base/head text. */\n undiffablePaths: Schema.Array(ChangedPath).check(Schema.isMaxLength(300)),\n /** Assigned paths with one or more evidence shards beyond plan capacity. */\n partialEvidencePaths: Schema.Array(ChangedPath).check(Schema.isMaxLength(300)),\n /** Exact number of shards beyond the bounded unit capacity. */\n unassignedEvidenceShardCount: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** Bounded deterministic prefix of the unassigned shard identifiers. */\n unassignedEvidenceShardIds: Schema.Array(ReviewEvidenceShardId).check(\n Schema.isMaxLength(MAX_REPORTED_UNASSIGNED_EVIDENCE_SHARDS),\n ),\n /**\n * Diffable files beyond the fan-out capacity (MAX_REVIEW_UNITS units of\n * MAX_UNIT_FILES files). Never silently dropped: the coordinator must name\n * them as unreviewed in its summary.\n */\n unassignedPaths: Schema.Array(ChangedPath).check(Schema.isMaxLength(300)),\n}) {}\n\nconst riskRules: ReadonlyArray<{\n readonly category: ReviewRiskCategory;\n readonly patterns: ReadonlyArray<RegExp>;\n}> = [\n {\n category: \"authentication-authorization\",\n patterns: [/auth/, /authoriz/, /permission/, /principal/, /access[-_ ]?control/, /role\\b/],\n },\n {\n category: \"security-boundary\",\n patterns: [\n /security/,\n /sandbox/,\n /untrusted/,\n /schema\\.decode/,\n /validation/,\n /injection/,\n /csrf/,\n /xss/,\n /path traversal/,\n ],\n },\n {\n category: \"persistence-durability\",\n patterns: [\n /durab/,\n /persist/,\n /storage/,\n /database/,\n /\\bsql\\b/,\n /journal/,\n /ledger/,\n /checkpoint/,\n /migration/,\n /transaction/,\n ],\n },\n {\n category: \"concurrency\",\n patterns: [\n /concurr/,\n /semaphore/,\n /\\bfiber/,\n /race/,\n /mutex/,\n /\\block\\b/,\n /queue/,\n /parallel/,\n /interrupt/,\n ],\n },\n {\n category: \"credential-handling\",\n patterns: [/credential/, /secret/, /password/, /api[-_ ]?key/, /bearer/, /hmac/, /signature/],\n },\n {\n category: \"external-side-effects\",\n patterns: [\n /publish/,\n /webhook/,\n /github/,\n /fetch\\(/,\n /http/,\n /send[-_ ]?(email|message)/,\n /write[-_ ]?(file|record)/,\n /delete/,\n /mutation/,\n /side[-_ ]?effect/,\n /spawn/,\n /exec/,\n ],\n },\n];\n\n/**\n * Deterministic host policy for specialist assignment. It intentionally\n * favors false positives: an extra bounded pass costs work, while a missed\n * high-risk classification removes redundancy. This is not a claim that the\n * keyword policy recognizes every semantically risky change.\n */\nexport const classifyReviewRisks = (file: ChangedFile): ReadonlyArray<ReviewRiskCategory> => {\n const text = [\n file.path,\n file.previousPath ?? \"\",\n file.patch ?? \"\",\n file.reviewBaseContent ?? \"\",\n file.reviewHeadContent ?? \"\",\n ]\n .join(\"\\n\")\n .toLowerCase();\n return riskRules\n .filter((rule) => rule.patterns.some((pattern) => pattern.test(text)))\n .map((rule) => rule.category);\n};\n\n/**\n * Whether every claimed finding anchor was present in the exact bounded\n * evidence shards assigned to one unit. This is stricter than checking the\n * full pull-request diff when an oversized path spans multiple units.\n */\nexport const findingAnchorInUnitEvidence = (\n finding: ReviewFinding,\n unit: ReviewUnit,\n files: ReadonlyArray<ChangedFile>,\n): boolean => {\n const file = files.find((candidate) => candidate.path === finding.path);\n if (file?.patch === undefined || finding.endLine < finding.startLine) return false;\n const assignedOrdinals = new Set(\n unit.evidenceShards\n .filter((shard) => shard.path === finding.path)\n .map((shard) => shard.ordinal),\n );\n const visibleLines = new Set<number>();\n const chunks = fileReviewEvidenceChunks(file);\n for (let index = 0; index < chunks.length; index += 1) {\n if (!assignedOrdinals.has(index + 1)) continue;\n for (const line of chunks[index]?.annotatedPatch.split(\"\\n\") ?? []) {\n const match = /^R(\\d+) /.exec(line);\n if (match?.[1] !== undefined) visibleLines.add(Number(match[1]));\n }\n }\n for (let line = finding.startLine; line <= finding.endLine; line += 1) {\n if (!visibleLines.has(line)) return false;\n }\n return true;\n};\n\ninterface PlannedEvidenceShard {\n readonly shard: ReviewEvidenceShard;\n readonly file: ChangedFile;\n readonly changedLines: number;\n}\n\nconst uniquePaths = (shards: ReadonlyArray<PlannedEvidenceShard>): ReadonlyArray<string> => [\n ...new Set(shards.map(({ shard }) => shard.path)),\n];\n\nconst plannedEvidenceShards = (\n files: ReadonlyArray<ChangedFile>,\n): ReadonlyArray<PlannedEvidenceShard> => {\n const planned: Array<PlannedEvidenceShard> = [];\n let shardIndex = 0;\n for (const file of files) {\n const chunks = fileReviewEvidenceChunks(file);\n for (let index = 0; index < chunks.length; index += 1) {\n const chunk = chunks[index];\n if (chunk === undefined) continue;\n shardIndex += 1;\n planned.push({\n shard: ReviewEvidenceShard.make({\n shardId: `shard-${String(shardIndex).padStart(4, \"0\")}`,\n path: file.path,\n ordinal: index + 1,\n total: chunks.length,\n evidenceChars: chunk.annotatedPatch.length,\n }),\n file,\n changedLines: index === 0 ? file.additions + file.deletions : 0,\n });\n }\n }\n return planned;\n};\n\nconst unitOf = (index: number, shards: ReadonlyArray<PlannedEvidenceShard>): ReviewUnit =>\n ReviewUnit.make({\n unitId: `unit-${String(index + 1).padStart(3, \"0\")}`,\n paths: uniquePaths(shards),\n evidenceShards: shards.map(({ shard }) => shard),\n changedLines: shards.reduce((total, shard) => total + shard.changedLines, 0),\n evidenceChars: shards.reduce((total, { shard }) => total + shard.evidenceChars, 0),\n riskCategories: [...new Set(shards.flatMap(({ file }) => classifyReviewRisks(file)))],\n });\n\nconst discoveryPassesFor = (units: ReadonlyArray<ReviewUnit>): ReadonlyArray<ReviewDiscoveryPass> =>\n units.flatMap((unit) => [\n ReviewDiscoveryPass.make({\n passId: `${unit.unitId}-general`,\n unitId: unit.unitId,\n paths: unit.paths,\n evidenceShardIds: unit.evidenceShards.map((shard) => shard.shardId),\n perspective: \"general\",\n riskCategories: [],\n }),\n ReviewDiscoveryPass.make({\n passId: `${unit.unitId}-specialist`,\n unitId: unit.unitId,\n paths: unit.paths,\n evidenceShardIds: unit.evidenceShards.map((shard) => shard.shardId),\n perspective: \"risk-specialist\",\n riskCategories: unit.riskCategories,\n }),\n ]);\n\n/**\n * Group the changeset into at most `MAX_REVIEW_UNITS` review units.\n *\n * Deterministic by construction: files are ordered by path (so files sharing\n * a directory become neighbors — directory affinity without a heuristic),\n * then split into complete line-bounded evidence shards and packed greedily\n * under the hard evidence and per-unit shard bounds. Capacity is finite and\n * explicit:\n *\n * - files without a textual diff are still delegated when the source\n * recovered complete bounded UTF-8 base/head content. Findings from that\n * evidence cannot anchor inline and are reported as concerns;\n * - files with neither form of textual evidence surface in\n * `undiffablePaths` instead of laundering missing coverage;\n * - an oversized path spans as many deterministic shards and units as needed;\n * - shards beyond `MAX_REVIEW_UNITS` full units surface explicitly, so a path\n * is partial only when finite plan capacity is genuinely exhausted.\n */\nexport const planReviewUnits = (\n files: ReadonlyArray<ChangedFile>,\n options: { readonly totalChangedFiles: number },\n): ReviewUnitPlan => {\n const ordered = [...files].sort((left, right) => (left.path < right.path ? -1 : 1));\n const reviewable = ordered.filter(isReviewableFile);\n const undiffable = ordered.filter((file) => !isReviewableFile(file));\n\n const shards = plannedEvidenceShards(reviewable);\n const groups: Array<Array<PlannedEvidenceShard>> = [];\n const unassigned: Array<PlannedEvidenceShard> = [];\n let current: Array<PlannedEvidenceShard> = [];\n let currentEvidenceChars = 0;\n for (const shard of shards) {\n const nextPaths = new Set([...uniquePaths(current), shard.shard.path]);\n const wouldOverflow =\n current.length >= MAX_UNIT_EVIDENCE_SHARDS ||\n nextPaths.size > MAX_UNIT_FILES ||\n (current.length > 0 &&\n currentEvidenceChars + shard.shard.evidenceChars > UNIT_EVIDENCE_CHAR_BUDGET);\n if (wouldOverflow) {\n groups.push(current);\n current = [];\n currentEvidenceChars = 0;\n }\n if (groups.length >= MAX_REVIEW_UNITS) {\n unassigned.push(shard);\n continue;\n }\n current.push(shard);\n currentEvidenceChars += shard.shard.evidenceChars;\n }\n if (current.length > 0 && groups.length < MAX_REVIEW_UNITS) {\n groups.push(current);\n }\n\n const units = groups.map((group, index) => unitOf(index, group));\n const assignedShardIds = new Set(\n units.flatMap((unit) => unit.evidenceShards.map((shard) => shard.shardId)),\n );\n const assignedPaths = new Set(\n shards\n .filter(({ shard }) => assignedShardIds.has(shard.shardId))\n .map(({ shard }) => shard.path),\n );\n const unassignedPathsWithEvidence = new Set(unassigned.map(({ shard }) => shard.path));\n return ReviewUnitPlan.make({\n totalFiles: files.length,\n truncated: files.length < options.totalChangedFiles,\n units,\n discoveryPasses: discoveryPassesFor(units),\n undiffablePaths: undiffable.map((file) => file.path),\n partialEvidencePaths: [...unassignedPathsWithEvidence].filter((path) =>\n assignedPaths.has(path),\n ),\n unassignedEvidenceShardCount: unassigned.length,\n unassignedEvidenceShardIds: unassigned\n .slice(0, MAX_REPORTED_UNASSIGNED_EVIDENCE_SHARDS)\n .map(({ shard }) => shard.shardId),\n unassignedPaths: [...unassignedPathsWithEvidence].filter((path) => !assignedPaths.has(path)),\n });\n};\n\nconst severityRank: Record<FindingSeverity, number> = {\n blocking: 0,\n important: 1,\n nit: 2,\n};\n\nconst anchorKey = (finding: ReviewFinding): string =>\n `${finding.path} ${finding.startLine} ${finding.endLine}`;\n\n/**\n * Merge the children's findings into one bounded, deterministic list: dedupe\n * findings sharing an anchor (path + line range) keeping the most severe —\n * and, at equal severity, the first in declaration order — then rank by\n * severity, path, and line, and cap at the `CodeReview` findings bound.\n * This is the merge policy the coordinator's instructions state in prose;\n * pinning it here keeps the policy itself deterministic and testable.\n */\nexport const rankAndDedupeFindings = (\n findings: ReadonlyArray<ReviewFinding>,\n): ReadonlyArray<ReviewFinding> => {\n const byAnchor = new Map<string, ReviewFinding>();\n for (const finding of findings) {\n const key = anchorKey(finding);\n const existing = byAnchor.get(key);\n if (\n existing === undefined ||\n severityRank[finding.severity] < severityRank[existing.severity]\n ) {\n byAnchor.set(key, finding);\n }\n }\n return [...byAnchor.values()]\n .sort((left, right) => {\n const bySeverity = severityRank[left.severity] - severityRank[right.severity];\n if (bySeverity !== 0) return bySeverity;\n if (left.path !== right.path) return left.path < right.path ? -1 : 1;\n return left.startLine - right.startLine;\n })\n .slice(0, MAX_MERGED_FINDINGS);\n};\n","import { Effect, Layer, Schema } from \"effect\";\nimport {\n Agent,\n AgentPolicy,\n Subagent,\n SubagentPolicy,\n SubagentRuntime,\n ToolExecutionClass,\n ToolResultBounds,\n type RuntimeBinding,\n} from \"effect-agent\";\nimport { Tool, Toolkit } from \"effect/unstable/ai\";\n\nimport { anchorViolation } from \"./anchors.ts\";\nimport { ChangedFileStatus, ChangedPath } from \"./diff.ts\";\nimport {\n clampMaxFindings,\n CodeReview,\n fileReviewEvidenceChunks,\n MAX_PATCH_CHARS,\n MAX_WALKTHROUGH_SUMMARY_CHARS,\n REVIEW_TOOL_RESULT_MAX_BYTES,\n ReviewConcern,\n ReviewFinding,\n ReviewMission,\n WalkthroughEntry,\n} from \"./review-agent.ts\";\nimport {\n MAX_REVIEW_UNITS,\n MAX_UNIT_EVIDENCE_SHARDS,\n MAX_UNIT_FILES,\n findingAnchorInUnitEvidence,\n planReviewUnits,\n ReviewEvidenceShardId,\n ReviewPassId,\n ReviewRiskCategory,\n ReviewUnitId,\n ReviewUnitPlan,\n} from \"./review-units.ts\";\nimport { PullRequestSource, PullRequestSourceFailure } from \"./source.ts\";\n\n// ---------------------------------------------------------------------------\n// The assured fan-out reviewer is a bounded, deterministic three-stage\n// pipeline driven through attached S1 children:\n//\n// host plan -> independent discovery passes -> independent verification\n//\n// Host code owns partitioning, risk classification, bounded evidence, exact\n// pass settlement, candidate provenance, and the final confirmed-candidate\n// fold. The coordinator only schedules the declared work and writes prose.\n// ---------------------------------------------------------------------------\n\n/** One discovery pass returns at most this many anchored candidates. */\nexport const MAX_CHILD_FINDINGS = 6;\n\n/** One discovery pass returns at most this many non-anchored candidates. */\nexport const MAX_CHILD_CONCERNS = 3;\n\n/** Every unit receives independent general and specialist discovery passes. */\nexport const MAX_UNIT_CANDIDATES = (MAX_CHILD_FINDINGS + MAX_CHILD_CONCERNS) * 2;\n\n/** General + specialist discovery for every unit, then one verifier per unit. */\nexport const MAX_REVIEW_CHILDREN = MAX_REVIEW_UNITS * 3;\n\n/** Structural minimum for a child that exposes no tools. */\nexport const MAX_FILE_REVIEW_TOOL_CALLS = 1;\n\nexport const ReviewWorkPhase = Schema.Literals([\"discovery\", \"verification\"]);\nexport type ReviewWorkPhase = typeof ReviewWorkPhase.Type;\n\nexport const ReviewWorkPerspective = Schema.Literals([\n \"general\",\n \"risk-specialist\",\n \"candidate-verification\",\n]);\nexport type ReviewWorkPerspective = typeof ReviewWorkPerspective.Type;\n\nexport const ReviewCandidateId = Schema.NonEmptyString.check(Schema.isMaxLength(96));\n\nexport class FindingCandidate extends Schema.TaggedClass<FindingCandidate>()(\"FindingCandidate\", {\n candidateId: ReviewCandidateId,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n finding: ReviewFinding,\n evidencePaths: Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(1)),\n}) {}\n\nexport class ConcernCandidate extends Schema.TaggedClass<ConcernCandidate>()(\"ConcernCandidate\", {\n candidateId: ReviewCandidateId,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n concern: ReviewConcern,\n evidencePaths: Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(3)),\n}) {}\n\nexport const ReviewCandidate = Schema.Union([FindingCandidate, ConcernCandidate]);\nexport type ReviewCandidate = typeof ReviewCandidate.Type;\n\n/** Deterministic host equivalence for claims repeated across discovery passes. */\nexport const reviewCandidateSubjectKey = (candidate: ReviewCandidate): string =>\n candidate._tag === \"FindingCandidate\"\n ? `finding:${JSON.stringify(Schema.encodeSync(ReviewFinding)(candidate.finding))}`\n : `concern:${JSON.stringify(Schema.encodeSync(ReviewConcern)(candidate.concern))}`;\n\nexport class CandidateAssessment extends Schema.Class<CandidateAssessment>(\n \"@effect-agent/pr-review/CandidateAssessment\",\n)({\n candidateId: ReviewCandidateId,\n disposition: Schema.Literals([\"confirmed\", \"rejected\"]),\n /**\n * Exact suggestion settlement: required when the candidate finding carries\n * a suggestion, forbidden otherwise. Untrusted child output cannot publish\n * a GitHub replacement block by prompt compliance alone — the host keeps a\n * confirmed finding's suggestion only on an exact \"committable\" settlement.\n */\n suggestion: Schema.optionalKey(\n Schema.Literals([\"committable\", \"not-committable\"]).annotate({\n description:\n 'Required exactly when the candidate finding carries a suggestion: \"committable\" only when its text is the full replacement source for exactly lines startLine..endLine and nothing else. Forbidden for candidates without a suggestion.',\n }),\n ),\n rationale: Schema.NonEmptyString.check(Schema.isMaxLength(600)),\n}) {}\n\n/**\n * Exact suggestion settlement shape: a carried suggestion must be settled and\n * nothing else may be. Enforced identically by the live delegation projection\n * and the independent host coverage fold.\n */\nexport const assessmentSettlesSuggestionExactly = (\n assessment: CandidateAssessment,\n candidate: ReviewCandidate,\n): boolean =>\n candidate._tag === \"FindingCandidate\" && candidate.finding.suggestion !== undefined\n ? assessment.suggestion !== undefined\n : assessment.suggestion === undefined;\n\n/**\n * Fail-closed publication of a confirmed finding: only an exact \"committable\"\n * settlement keeps the suggestion; anything else publishes the finding with\n * the suggestion stripped so unverified text can never become a one-click\n * GitHub replacement block.\n */\nexport const confirmedFindingForPublication = (\n assessment: CandidateAssessment,\n candidate: FindingCandidate,\n): ReviewFinding => {\n if (candidate.finding.suggestion === undefined || assessment.suggestion === \"committable\") {\n return candidate.finding;\n }\n const { suggestion: _stripped, ...finding } = candidate.finding;\n return ReviewFinding.make(finding);\n};\n\n/**\n * Concern candidates need explicit paths internally to bind the claim to\n * scheduled evidence. The verifier receives the complete bounded unit so it\n * can use neighboring evidence to falsify the claim. The public ReviewConcern\n * remains path-free after the host confirms and projects it.\n */\nexport class DiscoveredConcern extends Schema.Class<DiscoveredConcern>(\n \"@effect-agent/pr-review/DiscoveredConcern\",\n)({\n concern: ReviewConcern,\n evidencePaths: Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(3)),\n}) {}\n\nconst UnitPaths = Schema.Array(ChangedPath)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_FILES));\n\nconst RiskCategories = Schema.Array(ReviewRiskCategory).check(Schema.isMaxLength(6));\nconst Candidates = Schema.Array(ReviewCandidate).check(Schema.isMaxLength(MAX_UNIT_CANDIDATES));\nconst EvidenceShardIds = Schema.Array(ReviewEvidenceShardId)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_EVIDENCE_SHARDS));\n\n/** Strict-object coordinator request for either discovery or verification. */\nexport class FileReviewRequest extends Schema.Class<FileReviewRequest>(\n \"@effect-agent/pr-review/FileReviewRequest\",\n)({\n phase: ReviewWorkPhase,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n paths: UnitPaths,\n evidenceShardIds: EvidenceShardIds,\n perspective: ReviewWorkPerspective,\n riskCategories: RiskCategories,\n /** Empty for discovery; the exact discovered set for unit verification. */\n candidates: Candidates,\n}) {}\n\n/** One complete host-selected evidence shard supplied to a review child. */\nexport class FileReviewEvidence extends Schema.Class<FileReviewEvidence>(\n \"@effect-agent/pr-review/FileReviewEvidence\",\n)({\n shardId: ReviewEvidenceShardId,\n path: ChangedPath,\n status: ChangedFileStatus,\n reviewMode: Schema.Literals([\"diff\", \"content\", \"unavailable\"]),\n ordinal: Schema.Int.check(Schema.isGreaterThanOrEqualTo(1)),\n total: Schema.Int.check(Schema.isGreaterThanOrEqualTo(1)),\n annotatedPatch: Schema.String.check(Schema.isMaxLength(MAX_PATCH_CHARS)),\n}) {}\n\n/** Host-prepared child input with complete bounded diff/content evidence. */\nexport class FileReviewBrief extends Schema.Class<FileReviewBrief>(\n \"@effect-agent/pr-review/FileReviewBrief\",\n)({\n phase: ReviewWorkPhase,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n paths: UnitPaths,\n evidenceShardIds: EvidenceShardIds,\n perspective: ReviewWorkPerspective,\n riskCategories: RiskCategories,\n candidates: Candidates,\n evidence: Schema.Array(FileReviewEvidence)\n .check(Schema.isMinLength(1))\n .check(Schema.isMaxLength(MAX_UNIT_EVIDENCE_SHARDS)),\n}) {}\n\n/** Child output; phase-inapplicable collections must be empty. */\nexport class FileReviewReport extends Schema.Class<FileReviewReport>(\n \"@effect-agent/pr-review/FileReviewReport\",\n)({\n phase: ReviewWorkPhase,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n findings: Schema.Array(ReviewFinding).check(Schema.isMaxLength(MAX_CHILD_FINDINGS)),\n concerns: Schema.Array(DiscoveredConcern).check(Schema.isMaxLength(MAX_CHILD_CONCERNS)),\n fileSummaries: Schema.Array(WalkthroughEntry).check(Schema.isMaxLength(MAX_UNIT_FILES)),\n assessments: Schema.Array(CandidateAssessment).check(Schema.isMaxLength(MAX_UNIT_CANDIDATES)),\n}) {}\n\n/** Bounded coordinator-visible result with host-assigned candidate IDs. */\nexport class FileReviewUnitResult extends Schema.Class<FileReviewUnitResult>(\n \"@effect-agent/pr-review/FileReviewUnitResult\",\n)({\n phase: ReviewWorkPhase,\n workId: ReviewPassId,\n unitId: ReviewUnitId,\n candidates: Candidates,\n fileSummaries: Schema.Array(WalkthroughEntry).check(Schema.isMaxLength(MAX_UNIT_FILES)),\n assessments: Schema.Array(CandidateAssessment).check(Schema.isMaxLength(MAX_UNIT_CANDIDATES)),\n}) {}\n\nexport class FileReviewUnitFailed extends Schema.TaggedError<FileReviewUnitFailed>()(\n \"FileReviewUnitFailed\",\n {\n childErrorTag: Schema.NonEmptyString.check(Schema.isMaxLength(256)),\n message: Schema.String.check(Schema.isMaxLength(400)),\n },\n) {}\n\nexport class FileReviewWorkRejected extends Schema.TaggedError<FileReviewWorkRejected>()(\n \"FileReviewWorkRejected\",\n {\n workId: ReviewPassId,\n reason: Schema.NonEmptyString.check(Schema.isMaxLength(600)),\n },\n) {}\n\nexport const FileReviewFailure = Schema.Union([FileReviewUnitFailed, FileReviewWorkRejected]);\n\nexport interface FanOutInstructionOptions {\n readonly guidance?: string | ReadonlyArray<string> | undefined;\n}\n\nconst staticGuidanceLines = (\n guidance: string | ReadonlyArray<string> | undefined,\n): ReadonlyArray<string> => {\n if (guidance === undefined) return [];\n const lines = typeof guidance === \"string\" ? [guidance] : guidance;\n return lines.filter((line) => line.length > 0);\n};\n\nconst evidenceInstructions = [\n \"The host placed complete bounded review evidence shards in the input evidence array. Treat every shard as required input; ordinal/total identifies multi-shard paths.\",\n \"You have no tools and cannot roam outside this evidence. If it is insufficient for a candidate, reject or omit that candidate rather than guessing.\",\n \"A diff marks new-version anchors as R<number>; only those lines may anchor findings. B/H content evidence is non-anchorable.\",\n];\n\n/** Discovery and verification instructions share one child definition. */\nexport const makeFileReviewerInstructions =\n (options: FanOutInstructionOptions = {}) =>\n (brief: FileReviewBrief): string => {\n const common = [\n `You are an attached review worker for ${brief.workId} in host-planned unit ${brief.unitId}: ${brief.paths.join(\", \")}.`,\n ...staticGuidanceLines(options.guidance),\n ...evidenceInstructions,\n ];\n if (brief.phase === \"verification\") {\n return [\n ...common,\n \"Independently verify every candidate in the input. You did not receive another reviewer's transcript or reasoning; use only the candidate claim and bounded evidence.\",\n \"The evidence array contains the complete bounded unit, including neighboring changed code that may confirm or falsify a locally plausible claim.\",\n \"For each candidate, try to falsify it first. Confirm only when the cited behavior is supported and actionable. Reject unsupported, speculative, duplicate, or non-actionable candidates.\",\n 'Return ONLY JSON with phase \"verification\", the exact workId/unitId, empty findings/concerns/fileSummaries arrays, and exactly one assessment per candidateId. Each assessment is {\"candidateId\": <exact id>, \"disposition\": <\"confirmed\" | \"rejected\">, \"suggestion\": <\"committable\" | \"not-committable\", present exactly when the candidate finding carries a suggestion>, \"rationale\": <bounded evidence-based reason>}. Never add or omit an id.',\n 'Settle every carried suggestion independently of the claim: answer \"committable\" only when its text is the full replacement source for exactly lines startLine..endLine and nothing else — it compiles in context and preserves the finding\\'s intent, never prose describing a change. Otherwise answer \"not-committable\"; the host then publishes the confirmed finding without its suggestion. Omit the assessment \"suggestion\" field for candidates without one.',\n ].join(\"\\n\");\n }\n const focus =\n brief.perspective === \"risk-specialist\"\n ? brief.riskCategories.length > 0\n ? `This is a fresh specialist discovery pass. Concentrate on these host-classified risks without relying on another pass: ${brief.riskCategories.join(\", \")}.`\n : \"This is a fresh specialist discovery pass. The host found no keyword-classified category, so independently scrutinize authentication/authorization, security boundaries, durability, concurrency, credentials, and external side effects rather than treating classification silence as low risk.\"\n : \"This is the general discovery pass. Review broadly for correctness, security, concurrency, resource, API, and error-handling defects.\";\n return [\n ...common,\n focus,\n \"The discovery evidence array contains every complete shard in the unit. Review every entry and every shard of a multi-shard path. A later independent verifier, not you, decides which candidates publish.\",\n \"When a non-anchored concern depends on one or more unit files, list 1-3 exact evidencePaths to bind the claim to scheduled evidence.\",\n `Return ONLY JSON with phase \"discovery\", the exact workId/unitId, up to ${MAX_CHILD_FINDINGS} findings, up to ${MAX_CHILD_CONCERNS} concerns shaped as {concern, evidencePaths}, one factual file summary per path (<= ${MAX_WALKTHROUGH_SUMMARY_CHARS} chars), and an empty assessments array. Empty candidate arrays are valid; do not invent defects.`,\n 'Each finding is {\"path\": <a unit file path>, \"startLine\": <integer, an R-marked new-file line>, \"endLine\": <integer, >= startLine, same file, R-marked>, \"severity\": <\"blocking\" | \"important\" | \"nit\">, \"category\": <OPTIONAL problem-kind label>, \"title\": <string, <= 120 chars>, \"body\": <string, why it matters and what to do>, \"suggestion\": <string, OPTIONAL: replacement source code for exactly lines startLine..endLine, ready to commit>}.',\n 'Include \"suggestion\" only when you are confident the replacement compiles and preserves intent; its text must contain the full replacement source for every line in the range and nothing else — never prose describing the change, which belongs in \"body\".',\n ].join(\"\\n\");\n };\n\nexport const fileReviewerInstructions = makeFileReviewerInstructions();\n\nexport const FileReviewToolkit = Toolkit.empty;\n\n/** Compatibility export: the evidence-only child has no handler requirements. */\nexport const FileReviewToolkitLayer = Layer.empty;\n\nexport const defaultFileReviewerPolicy = AgentPolicy.make({\n maxTurns: 6,\n maxToolCalls: MAX_FILE_REVIEW_TOOL_CALLS,\n maxDuration: \"6 minutes\",\n toolConcurrency: 2,\n repeatedFailureLimit: 6,\n tokenBudget: 200_000,\n contextTokenLimit: 150_000,\n toolResultBounds: ToolResultBounds.make({ maxBytes: REVIEW_TOOL_RESULT_MAX_BYTES }),\n // Discovery or verification that exhausts is unsettled work, never a\n // schema-valid partial that can contribute to a green assurance claim.\n onExhaustion: \"fail\",\n});\n\nexport const fileReviewPolicy = SubagentPolicy.make({\n maxChildren: MAX_REVIEW_CHILDREN,\n maxConcurrency: 4,\n maxTurns: 6,\n maxToolCalls: MAX_FILE_REVIEW_TOOL_CALLS,\n maxDuration: \"6 minutes\",\n maxResultBytes: 256 * 1024,\n});\n\nexport const mapFileReviewChildFailure = (failure: {\n readonly _tag: string;\n readonly message?: string;\n}): FileReviewUnitFailed =>\n FileReviewUnitFailed.make({\n childErrorTag: failure._tag,\n message: (failure.message ?? \"\").slice(0, 400),\n });\n\nconst sameStrings = (left: ReadonlyArray<string>, right: ReadonlyArray<string>): boolean =>\n left.length === right.length && left.every((value, index) => value === right[index]);\n\nconst rejectWork = (workId: string, reason: string) =>\n FileReviewWorkRejected.make({ workId, reason });\n\n/** Validate coordinator scheduling against the current deterministic plan. */\nconst prepareReviewBrief = (request: FileReviewRequest) =>\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const mapSourceFailure = (failure: PullRequestSourceFailure) =>\n rejectWork(\n request.workId,\n `pull-request source ${failure.operation} failed: ${failure.reason}`.slice(0, 600),\n );\n const files = yield* source.changedFiles.pipe(Effect.mapError(mapSourceFailure));\n const metadata = yield* source.metadata.pipe(Effect.mapError(mapSourceFailure));\n const plan = planReviewUnits(files, { totalChangedFiles: metadata.totalChangedFiles });\n const unit = plan.units.find((candidate) => candidate.unitId === request.unitId);\n if (\n unit === undefined ||\n !sameStrings(request.paths, unit.paths) ||\n !sameStrings(\n request.evidenceShardIds,\n unit.evidenceShards.map((shard) => shard.shardId),\n )\n ) {\n return yield* rejectWork(request.workId, \"request does not match a host-planned unit\");\n }\n\n if (request.phase === \"discovery\") {\n const pass = plan.discoveryPasses.find((candidate) => candidate.passId === request.workId);\n if (\n pass === undefined ||\n pass.unitId !== request.unitId ||\n !sameStrings(pass.paths, request.paths) ||\n !sameStrings(pass.evidenceShardIds, request.evidenceShardIds) ||\n pass.perspective !== request.perspective ||\n !sameStrings(pass.riskCategories, request.riskCategories) ||\n request.candidates.length !== 0\n ) {\n return yield* rejectWork(request.workId, \"discovery request does not match the host plan\");\n }\n } else {\n if (\n request.workId !== `${request.unitId}-verification` ||\n request.perspective !== \"candidate-verification\" ||\n !sameStrings(request.riskCategories, unit.riskCategories) ||\n request.candidates.length === 0\n ) {\n return yield* rejectWork(\n request.workId,\n \"verification request does not match the host-planned unit\",\n );\n }\n const candidateIds = new Set<string>();\n const candidateSubjects = new Set<string>();\n const allowed = new Set(unit.paths);\n for (const candidate of request.candidates) {\n const subjectKey = reviewCandidateSubjectKey(candidate);\n if (\n candidateIds.has(candidate.candidateId) ||\n candidateSubjects.has(subjectKey) ||\n candidate.unitId !== unit.unitId ||\n candidate.evidencePaths.some((path) => !allowed.has(path)) ||\n (candidate._tag === \"FindingCandidate\" && !allowed.has(candidate.finding.path))\n ) {\n return yield* rejectWork(\n request.workId,\n \"verification candidates are duplicated or outside the planned unit\",\n );\n }\n candidateIds.add(candidate.candidateId);\n candidateSubjects.add(subjectKey);\n }\n }\n\n const byPath = new Map(files.map((file) => [file.path, file] as const));\n const evidence: Array<FileReviewEvidence> = [];\n for (const shard of unit.evidenceShards) {\n const file = byPath.get(shard.path);\n if (file === undefined) {\n return yield* rejectWork(\n request.workId,\n `planned evidence path is unavailable: ${shard.path}`,\n );\n }\n const chunks = fileReviewEvidenceChunks(file);\n const chunk = chunks[shard.ordinal - 1];\n if (\n chunk === undefined ||\n chunks.length !== shard.total ||\n chunk.annotatedPatch.length !== shard.evidenceChars\n ) {\n return yield* rejectWork(\n request.workId,\n `planned evidence shard no longer matches source: ${shard.shardId}`,\n );\n }\n evidence.push(\n FileReviewEvidence.make({\n shardId: shard.shardId,\n path: shard.path,\n status: file.status,\n reviewMode: chunk.reviewMode,\n ordinal: shard.ordinal,\n total: shard.total,\n annotatedPatch: chunk.annotatedPatch,\n }),\n );\n }\n return FileReviewBrief.make({ ...request, evidence });\n });\n\nconst candidateOrdinal = (index: number): string => String(index + 1).padStart(3, \"0\");\n\nconst projectReviewResult = (\n report: FileReviewReport,\n context: { readonly budgetExhausted: boolean },\n request: FileReviewRequest,\n) => {\n if (context.budgetExhausted) {\n return Effect.fail(\n rejectWork(report.workId, \"review work exhausted its budget before exact settlement\"),\n );\n }\n if (\n report.phase !== request.phase ||\n report.workId !== request.workId ||\n report.unitId !== request.unitId\n ) {\n return Effect.fail(\n rejectWork(request.workId, \"review output identity does not match the scheduled request\"),\n );\n }\n if (report.phase === \"verification\") {\n if (\n report.findings.length > 0 ||\n report.concerns.length > 0 ||\n report.fileSummaries.length > 0\n ) {\n return Effect.fail(\n rejectWork(report.workId, \"verification output contained discovery-only fields\"),\n );\n }\n const expectedById = new Map(\n request.candidates.map((candidate) => [candidate.candidateId, candidate] as const),\n );\n const assessedIds = new Set<string>();\n for (const assessment of report.assessments) {\n const candidate = expectedById.get(assessment.candidateId);\n if (candidate === undefined || assessedIds.has(assessment.candidateId)) {\n return Effect.fail(\n rejectWork(report.workId, \"verification output did not assess the exact candidate set\"),\n );\n }\n if (!assessmentSettlesSuggestionExactly(assessment, candidate)) {\n return Effect.fail(\n rejectWork(\n report.workId,\n \"verification output did not settle suggestion publication exactly\",\n ),\n );\n }\n assessedIds.add(assessment.candidateId);\n }\n if (assessedIds.size !== expectedById.size) {\n return Effect.fail(\n rejectWork(report.workId, \"verification output did not assess the exact candidate set\"),\n );\n }\n return Effect.succeed(\n FileReviewUnitResult.make({\n phase: report.phase,\n workId: report.workId,\n unitId: report.unitId,\n candidates: [],\n fileSummaries: [],\n assessments: report.assessments,\n }),\n );\n }\n if (report.assessments.length > 0) {\n return Effect.fail(\n rejectWork(report.workId, \"discovery output contained verification-only assessments\"),\n );\n }\n const allowed = new Set(request.paths);\n if (\n report.findings.some((finding) => !allowed.has(finding.path)) ||\n report.concerns.some((candidate) =>\n candidate.evidencePaths.some((path) => !allowed.has(path)),\n ) ||\n report.fileSummaries.some((entry) => !allowed.has(entry.path))\n ) {\n return Effect.fail(\n rejectWork(report.workId, \"discovery output referenced evidence outside the scheduled unit\"),\n );\n }\n return Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const mapSourceFailure = (failure: PullRequestSourceFailure) =>\n rejectWork(\n request.workId,\n `pull-request source ${failure.operation} failed: ${failure.reason}`.slice(0, 600),\n );\n const files = yield* source.changedFiles.pipe(Effect.mapError(mapSourceFailure));\n const metadata = yield* source.metadata.pipe(Effect.mapError(mapSourceFailure));\n const anchorFiles = yield* source.anchorFiles.pipe(Effect.mapError(mapSourceFailure));\n const unit = planReviewUnits(files, {\n totalChangedFiles: metadata.totalChangedFiles,\n }).units.find((candidate) => candidate.unitId === request.unitId);\n if (unit === undefined) {\n return yield* rejectWork(request.workId, \"scheduled review unit is no longer available\");\n }\n for (const finding of report.findings) {\n const violation = anchorViolation(finding, anchorFiles);\n if (violation !== undefined || !findingAnchorInUnitEvidence(finding, unit, files)) {\n return yield* rejectWork(\n request.workId,\n `discovery finding has no valid anchor in its assigned evidence: ${violation ?? finding.path}`,\n );\n }\n }\n const findingCandidates = report.findings.map((finding, index) =>\n FindingCandidate.make({\n candidateId: `${request.workId}:finding:${candidateOrdinal(index)}`,\n workId: request.workId,\n unitId: request.unitId,\n finding,\n evidencePaths: [finding.path],\n }),\n );\n const concernCandidates = report.concerns.map((candidate, index) =>\n ConcernCandidate.make({\n candidateId: `${request.workId}:concern:${candidateOrdinal(index)}`,\n workId: request.workId,\n unitId: request.unitId,\n concern: candidate.concern,\n evidencePaths: candidate.evidencePaths,\n }),\n );\n return FileReviewUnitResult.make({\n phase: report.phase,\n workId: report.workId,\n unitId: report.unitId,\n candidates: [...findingCandidates, ...concernCandidates],\n fileSummaries: report.fileSummaries,\n assessments: [],\n });\n });\n};\n\nconst delegationDescription =\n \"Run exactly one host-planned discovery or candidate-verification child. Copy every plan field and candidate verbatim; never retry failed work.\";\n\nconst makeFileReviewDelegation = (child: ReturnType<typeof makeFileReviewerDefinition>) =>\n Subagent.define(\"delegate_file_review\", {\n description: delegationDescription,\n target: child,\n parameters: FileReviewRequest,\n success: FileReviewUnitResult,\n failure: FileReviewFailure,\n failureMode: \"return\",\n prepareInput: prepareReviewBrief,\n projectResult: projectReviewResult,\n policy: fileReviewPolicy,\n });\n\nexport class ListReviewUnitsQuery extends Schema.Class<ListReviewUnitsQuery>(\n \"@effect-agent/pr-review/ListReviewUnitsQuery\",\n)({\n scope: Schema.Literal(\"all\"),\n}) {}\n\nexport const ListReviewUnits = Tool.make(\"list_review_units\", {\n description:\n \"List deterministic bounded review units, explicit risk categories, every required discovery pass, and paths the pipeline cannot cover.\",\n parameters: ListReviewUnitsQuery,\n success: ReviewUnitPlan,\n failure: PullRequestSourceFailure,\n failureMode: \"error\",\n dependencies: [PullRequestSource],\n}).annotate(ToolExecutionClass, \"readonly\");\n\nexport const FanOutCoordinatorToolkit = Toolkit.make(ListReviewUnits);\n\nexport const FanOutCoordinatorToolkitLayer = FanOutCoordinatorToolkit.toLayer({\n list_review_units: () =>\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const files = yield* source.changedFiles;\n const metadata = yield* source.metadata;\n return planReviewUnits(files, { totalChangedFiles: metadata.totalChangedFiles });\n }),\n});\n\nexport const makeFanOutReviewInstructions =\n (options: FanOutInstructionOptions & { readonly maxFindings?: number | undefined } = {}) =>\n (mission: ReviewMission): string => {\n const maxFindings = clampMaxFindings(options.maxFindings);\n return [\n `You coordinate the bounded multi-pass review of pull request #${mission.number} (\"${mission.title}\") in ${mission.repository}.`,\n mission.body.length > 0 ? `Author description:\\n${mission.body}` : \"No author description.\",\n ...staticGuidanceLines(options.guidance),\n \"1. Call list_review_units exactly once.\",\n '2. For EVERY discoveryPass, call delegate_file_review exactly once with phase \"discovery\", workId=passId, and the pass unitId/paths/evidenceShardIds/perspective/riskCategories verbatim; candidates must be []. Prefer one bounded parallel batch. Never retry.',\n '3. Group candidates returned by all successful discovery passes by unit. Deterministically deduplicate byte-identical finding or concern payloads, retaining the first candidate in discoveryPass plan order. For every unit with at least one retained candidate, call delegate_file_review exactly once with phase \"verification\", workId \"<unitId>-verification\", perspective \"candidate-verification\", the unit paths/evidenceShardIds/riskCategories, and EVERY retained candidate copied byte-for-byte. Prefer one bounded parallel batch. Never retry.',\n \"4. Verification is authoritative: rejected candidates must not be reported. The host independently reconstructs publishable findings from exact confirmed assessments, so do not select, rewrite, downgrade, or invent findings.\",\n `5. Return ONLY CodeReview JSON. Write a concise summary of completed and failed stages. Set findings=[] and concerns=[]; the host injects exact confirmed candidates. Copy factual fileSummaries into walkthrough without invention. The host publication cap is ${maxFindings}.`,\n \"No configured pipeline can prove absence of defects. Describe settled work, never an exhaustive or defect-free review.\",\n ].join(\"\\n\");\n };\n\nexport const fanOutReviewInstructions = makeFanOutReviewInstructions();\n\nexport const defaultFanOutPolicy = AgentPolicy.make({\n maxTurns: 7,\n maxToolCalls: 1 + MAX_REVIEW_CHILDREN,\n maxDuration: \"20 minutes\",\n toolConcurrency: 4,\n repeatedFailureLimit: 3,\n tokenBudget: 400_000,\n contextTokenLimit: 150_000,\n // Coordinator exhaustion cannot become an assured result; exact stage\n // settlement, not this final prose, determines assurance.\n onExhaustion: \"final-answer\",\n});\n\nexport interface FanOutReviewSuite {\n readonly child: ReturnType<typeof makeFileReviewerDefinition>;\n readonly parent: ReturnType<typeof makeFanOutReviewerDefinition>;\n readonly delegation: ReturnType<typeof makeFileReviewDelegation>;\n}\n\nconst makeFileReviewerDefinition = (options: FanOutInstructionOptions = {}) =>\n Agent.define(\"pr-review-worker\", {\n input: FileReviewBrief,\n output: FileReviewReport,\n instructions: makeFileReviewerInstructions(options),\n toolkit: FileReviewToolkit,\n policy: defaultFileReviewerPolicy,\n description:\n \"Perform one bounded discovery or independent candidate-verification pass over host-supplied pull-request evidence.\",\n metadata: { deploymentClass: \"E\", surface: \"read-only\", stage: \"discovery-verification\" },\n });\n\nconst delegationToolFor = (delegation: ReturnType<typeof makeFileReviewDelegation>) =>\n delegation.tool.annotate(ToolExecutionClass, \"readonly\");\n\nconst makeFanOutReviewerDefinition = (\n options: FanOutInstructionOptions & { readonly maxFindings?: number | undefined },\n delegation: ReturnType<typeof makeFileReviewDelegation>,\n) =>\n Agent.define(\"pr-fanout-reviewer\", {\n input: ReviewMission,\n output: CodeReview,\n instructions: makeFanOutReviewInstructions(options),\n toolkit: Toolkit.make(ListReviewUnits, delegationToolFor(delegation)),\n policy: defaultFanOutPolicy,\n description:\n \"Coordinate deterministic general/specialist discovery and independent candidate verification over bounded review units.\",\n metadata: {\n deploymentClass: \"E\",\n surface: \"read-only\",\n delegation: \"S1-attached\",\n assurance: \"multi-pass\",\n },\n });\n\nexport interface FanOutSuiteOptions extends FanOutInstructionOptions {\n readonly maxFindings?: number | undefined;\n}\n\nexport const makeFanOutReviewSuite = (options: FanOutSuiteOptions = {}): FanOutReviewSuite => {\n const child = makeFileReviewerDefinition({ guidance: options.guidance });\n const delegation = makeFileReviewDelegation(child);\n return {\n child,\n parent: makeFanOutReviewerDefinition(options, delegation),\n delegation,\n };\n};\n\nconst defaultSuite = makeFanOutReviewSuite();\n\nexport const FileReviewer = defaultSuite.child;\nexport const FanOutReviewer = defaultSuite.parent;\nexport const fileReviewDelegation = defaultSuite.delegation;\nexport const DelegateFileReview = delegationToolFor(fileReviewDelegation);\nexport const FanOutReviewToolkit = FanOutReviewer.toolkit;\nexport const FileReviewDelegationFailure = fileReviewDelegation.containedFailure;\n\nexport const fanOutHandlersLayerFor =\n (delegation: ReturnType<typeof makeFileReviewDelegation>) =>\n <Provider, ModelProvides, ModelRequires>(\n childBinding: RuntimeBinding<\n typeof FileReviewBrief,\n typeof FileReviewReport,\n ReturnType<typeof makeFileReviewerInstructions>,\n Toolkit.Tools<typeof FileReviewToolkit>,\n Provider,\n ModelProvides,\n ModelRequires\n >,\n ) =>\n SubagentRuntime.layer(delegation, childBinding, {\n mapChildFailure: mapFileReviewChildFailure,\n });\n\nexport const fanOutHandlersLayer = fanOutHandlersLayerFor(fileReviewDelegation);\n","import { Effect } from \"effect\";\n\nimport type { ChangedFile } from \"./diff.ts\";\n\n// ---------------------------------------------------------------------------\n// Changeset fingerprinting: dedupe re-reviews of an UNCHANGED effective diff.\n// Repositories that auto-merge the base branch into open pull requests fire\n// `synchronize` on every base update; the head SHA moves but the three-dot\n// changeset the reviewer reads is byte-identical. The fingerprint hashes the\n// (ignore-filtered) changeset together with a prompt signature — everything\n// that shapes the review — so a rebase with no content change skips, while a\n// real change, a conflict resolution, or a guidance change reviews again.\n//\n// The reviewer is deployment class E and owns no storage: the fingerprint is\n// embedded in the posted review body as an invisible HTML comment, so the\n// published review itself is the deduplication state.\n// ---------------------------------------------------------------------------\n\nconst MARKER_PREFIX = \"<!-- effect-agent-pr-review fingerprint=sha256:\";\nconst MARKER_SUFFIX = \" -->\";\nconst MARKER_PATTERN = /<!-- effect-agent-pr-review fingerprint=sha256:([0-9a-f]{64}) -->/g;\n\n/** Render the invisible review-body marker for one fingerprint. */\nexport const renderFingerprintMarker = (fingerprint: string): string =>\n `${MARKER_PREFIX}${fingerprint}${MARKER_SUFFIX}`;\n\n/** The rendered marker length is fixed; publication reserves room for it. */\nexport const FINGERPRINT_MARKER_LENGTH = renderFingerprintMarker(\"0\".repeat(64)).length;\n\n/** Extract the last fingerprint marker in one review body, if any. */\nexport const extractFingerprint = (body: string): string | undefined => {\n let last: string | undefined;\n for (const match of body.matchAll(MARKER_PATTERN)) {\n last = match[1];\n }\n return last;\n};\n\n/** WebCrypto SHA-256; unavailable crypto is a defect, not an expected failure. */\nconst sha256Hex = (text: string): Effect.Effect<string> =>\n Effect.promise(async () => {\n const digest = await globalThis.crypto.subtle.digest(\"SHA-256\", new TextEncoder().encode(text));\n return Array.from(new Uint8Array(digest))\n .map((byte) => byte.toString(16).padStart(2, \"0\"))\n .join(\"\");\n });\n\nconst FIELD = \"\\u0000\";\nconst RECORD = \"\\u0001\";\nconst SECTION = \"\\u0002\";\n\n/**\n * Unified-diff hunk coordinates describe where a patch applies, not what it\n * changes. A content-equivalent rebase can shift both coordinates while\n * leaving every context/addition/deletion line unchanged, so exclude only\n * those coordinates from the canonical patch representation.\n */\nconst canonicalPatch = (patch: string): string =>\n patch.replace(/^@@ -\\d+(?:,\\d+)? \\+\\d+(?:,\\d+)? @@/gm, \"@@ -_ +_ @@\");\n\n/**\n * Canonical changeset encoding: sorted by path so provider ordering never\n * matters, with every review-relevant field of every file.\n */\nconst canonicalChangeset = (files: ReadonlyArray<ChangedFile>): string =>\n files\n .map(\n (file) =>\n `${file.path}${FIELD}${file.status}${FIELD}${String(file.additions)}${FIELD}${String(file.deletions)}${FIELD}${file.patch === undefined ? \"\" : canonicalPatch(file.patch)}${FIELD}${file.reviewBaseContent ?? \"\"}${FIELD}${file.reviewHeadContent ?? \"\"}`,\n )\n .sort()\n .join(RECORD);\n\n/**\n * Fingerprint one review's complete input surface: the (already\n * ignore-filtered) changeset plus the caller's prompt signature — the\n * rendered instructions and any review-shaping options the instructions do\n * not carry.\n */\nexport const computeChangesetFingerprint = (\n files: ReadonlyArray<ChangedFile>,\n signature: string,\n): Effect.Effect<string> => sha256Hex(`${canonicalChangeset(files)}${SECTION}${signature}`);\n","import { Context, Effect, Encoding, Layer, Option, Redacted, Result, Schema } from \"effect\";\n\nimport { ChangedFile, ChangedPath } from \"./diff.ts\";\nimport { FindingSeverity, ReviewConcern, ReviewFinding, ReviewMission } from \"./review-agent.ts\";\nimport { PullRequestSource, ReviewInputViolation, type PullRequestMetadata } from \"./source.ts\";\n\n// ---------------------------------------------------------------------------\n// Bounded review continuity. The Action is still deployment class E, but every\n// completed review can publish authenticated state inside its GitHub review body.\n// A later Action run validates the state against the live PR/base lineage and\n// uses a head-to-head comparison to select only newly affected scope.\n// ---------------------------------------------------------------------------\n\nexport const ReviewMode = Schema.Literals([\"incremental\", \"final\"]);\nexport type ReviewMode = typeof ReviewMode.Type;\n\nexport const ReviewScopeMode = Schema.Literals([\"incremental\", \"full\"]);\nexport type ReviewScopeMode = typeof ReviewScopeMode.Type;\n\nexport const GitCommitSha = Schema.NonEmptyString.check(\n Schema.isMaxLength(64),\n Schema.isPattern(/^[0-9a-f]{40,64}$/),\n);\n\nconst Fingerprint = Schema.String.check(Schema.isPattern(/^[0-9a-f]{64}$/));\nconst StoredText = Schema.NonEmptyString.check(Schema.isMaxLength(800));\n\n/** A compact unresolved finding suitable for the bounded review-body marker. */\nexport class StoredReviewFinding extends Schema.Class<StoredReviewFinding>(\n \"@effect-agent/pr-review/StoredReviewFinding\",\n)({\n path: ChangedPath,\n startLine: Schema.Int.check(Schema.isGreaterThan(0)),\n endLine: Schema.Int.check(Schema.isGreaterThan(0)),\n severity: FindingSeverity,\n title: Schema.NonEmptyString.check(Schema.isMaxLength(120)),\n body: StoredText,\n}) {}\n\n/** A compact unresolved non-anchored concern carried until a final audit. */\nexport class StoredReviewConcern extends Schema.Class<StoredReviewConcern>(\n \"@effect-agent/pr-review/StoredReviewConcern\",\n)({\n severity: FindingSeverity,\n title: Schema.NonEmptyString.check(Schema.isMaxLength(120)),\n body: StoredText,\n}) {}\n\n/**\n * Versioned state embedded only after complete input assignment and settled\n * configured review assurance. The head plus full-scope fingerprint forms an\n * incremental baseline; an absent unresolved item never means the path is\n * defect-free. The `acceptedScopeFingerprint` name is retained for wire\n * compatibility. Storing hundreds of path strings separately would not fit\n * GitHub's bounded review body in the worst case.\n */\nexport class ReviewState extends Schema.Class<ReviewState>(\"@effect-agent/pr-review/ReviewState\")({\n version: Schema.Literal(1),\n repository: Schema.NonEmptyString.check(Schema.isMaxLength(200)),\n pullRequestNumber: Schema.Int.check(Schema.isGreaterThan(0)),\n baseRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n baseSha: GitCommitSha,\n headRef: Schema.NonEmptyString.check(Schema.isMaxLength(300)),\n reviewedHeadSha: GitCommitSha,\n profileFingerprint: Fingerprint,\n acceptedScopeFingerprint: Fingerprint,\n reviewedPathCount: Schema.Int.check(Schema.isBetween({ minimum: 0, maximum: 300 })),\n unresolvedFindings: Schema.Array(StoredReviewFinding).check(Schema.isMaxLength(20)),\n unresolvedConcerns: Schema.Array(StoredReviewConcern).check(Schema.isMaxLength(10)),\n lastReviewMode: ReviewScopeMode,\n}) {}\n\nexport const toStoredFinding = (finding: ReviewFinding): StoredReviewFinding =>\n StoredReviewFinding.make({\n path: finding.path,\n startLine: finding.startLine,\n endLine: finding.endLine,\n severity: finding.severity,\n title: finding.title,\n body: finding.body.slice(0, 800),\n });\n\nexport const fromStoredFinding = (finding: StoredReviewFinding): ReviewFinding =>\n ReviewFinding.make({\n path: finding.path,\n startLine: finding.startLine,\n endLine: finding.endLine,\n severity: finding.severity,\n title: finding.title,\n body: finding.body,\n });\n\nexport const toStoredConcern = (concern: ReviewConcern): StoredReviewConcern =>\n StoredReviewConcern.make({\n severity: concern.severity,\n title: concern.title,\n body: concern.body.slice(0, 800),\n });\n\nexport const fromStoredConcern = (concern: StoredReviewConcern): ReviewConcern =>\n ReviewConcern.make({ severity: concern.severity, title: concern.title, body: concern.body });\n\nconst STATE_MARKER_PREFIX = \"<!-- effect-agent-pr-review state-v1:\";\nconst STATE_MARKER_SUFFIX = \" -->\";\nconst STATE_MARKER_PATTERN =\n /(?:^|\\n)<!-- effect-agent-pr-review state-v1:([A-Za-z0-9+/]+={0,2})\\.([0-9a-f]{64}) -->$/;\nconst STATE_SIGNATURE_DOMAIN = \"effect-agent-pr-review/state-v1\\u0000\";\nexport const MAX_REVIEW_STATE_MARKER_CHARS = 24_000;\nexport const ReviewStateMarker = Schema.NonEmptyString.check(\n Schema.isMaxLength(MAX_REVIEW_STATE_MARKER_CHARS),\n Schema.isPattern(/^<!-- effect-agent-pr-review state-v1:[A-Za-z0-9+/]+={0,2}\\.[0-9a-f]{64} -->$/),\n).pipe(Schema.brand(\"@effect-agent/pr-review/ReviewStateMarker\"));\nexport type ReviewStateMarker = typeof ReviewStateMarker.Type;\n\nexport class ReviewStateAuthenticationFailure extends Schema.TaggedError<ReviewStateAuthenticationFailure>()(\n \"ReviewStateAuthenticationFailure\",\n {\n operation: Schema.Literals([\"sign\", \"verify\"]),\n reason: Schema.NonEmptyString.check(Schema.isMaxLength(2_048)),\n },\n) {}\n\nexport class ReviewStateMarkerTooLarge extends Schema.TaggedError<ReviewStateMarkerTooLarge>()(\n \"ReviewStateMarkerTooLarge\",\n {\n observedChars: Schema.Int.check(Schema.isGreaterThan(0)),\n maximumChars: Schema.Int.check(Schema.isGreaterThan(0)),\n },\n) {}\n\nexport class ReviewStateAuthenticator extends Context.Service<\n ReviewStateAuthenticator,\n {\n readonly status: \"available\" | \"unavailable\";\n readonly unavailableReason: string | undefined;\n readonly render: (\n state: ReviewState,\n ) => Effect.Effect<\n ReviewStateMarker,\n ReviewStateAuthenticationFailure | ReviewStateMarkerTooLarge\n >;\n readonly extract: (\n body: string,\n ) => Effect.Effect<Option.Option<ReviewState>, ReviewStateAuthenticationFailure>;\n }\n>()(\"@effect-agent/pr-review/ReviewStateAuthenticator\") {}\n\nconst authenticationFailure = (\n operation: \"sign\" | \"verify\",\n cause: unknown,\n): ReviewStateAuthenticationFailure =>\n ReviewStateAuthenticationFailure.make({\n operation,\n reason: String(cause).slice(0, 2_048),\n });\n\nconst hmacKey = (secret: Redacted.Redacted<string>, operation: \"sign\" | \"verify\") =>\n Effect.tryPromise({\n try: () =>\n globalThis.crypto.subtle.importKey(\n \"raw\",\n new TextEncoder().encode(Redacted.value(secret)),\n { name: \"HMAC\", hash: \"SHA-256\" },\n false,\n [\"sign\", \"verify\"],\n ),\n catch: (cause) => authenticationFailure(operation, cause),\n });\n\nconst signatureBytes = (signature: string): ArrayBuffer => {\n const pairs = signature.match(/../g) ?? [];\n const buffer = new ArrayBuffer(pairs.length);\n const bytes = new Uint8Array(buffer);\n for (let index = 0; index < pairs.length; index += 1) {\n bytes[index] = Number.parseInt(pairs[index] ?? \"\", 16);\n }\n return buffer;\n};\n\n/** Validated WebCrypto adapter selected at the Action composition root. */\nexport const webCryptoReviewStateAuthenticatorLayer = (\n secret: Redacted.Redacted<string>,\n): Layer.Layer<ReviewStateAuthenticator> =>\n Layer.succeed(ReviewStateAuthenticator)(\n ReviewStateAuthenticator.of({\n status: \"available\",\n unavailableReason: undefined,\n render: (state) =>\n Effect.gen(function* () {\n const json = yield* Schema.encodeUnknownEffect(Schema.fromJsonString(ReviewState))(\n state,\n ).pipe(Effect.mapError((cause) => authenticationFailure(\"sign\", cause)));\n const payload = Encoding.encodeBase64(json);\n const message = new TextEncoder().encode(`${STATE_SIGNATURE_DOMAIN}${payload}`);\n const key = yield* hmacKey(secret, \"sign\");\n const signature = yield* Effect.tryPromise({\n try: () => globalThis.crypto.subtle.sign(\"HMAC\", key, message),\n catch: (cause) => authenticationFailure(\"sign\", cause),\n });\n const hex = Array.from(new Uint8Array(signature))\n .map((byte) => byte.toString(16).padStart(2, \"0\"))\n .join(\"\");\n const marker = `${STATE_MARKER_PREFIX}${payload}.${hex}${STATE_MARKER_SUFFIX}`;\n if (marker.length > MAX_REVIEW_STATE_MARKER_CHARS) {\n return yield* ReviewStateMarkerTooLarge.make({\n observedChars: marker.length,\n maximumChars: MAX_REVIEW_STATE_MARKER_CHARS,\n });\n }\n return yield* Schema.decodeUnknownEffect(ReviewStateMarker)(marker).pipe(\n Effect.mapError((cause) => authenticationFailure(\"sign\", cause)),\n );\n }),\n extract: (body) => {\n if (body.length > 60_000) return Effect.succeed(Option.none());\n const match = STATE_MARKER_PATTERN.exec(body);\n const payload = match?.[1];\n const signature = match?.[2];\n if (payload === undefined || signature === undefined) return Effect.succeed(Option.none());\n const marker = `${STATE_MARKER_PREFIX}${payload}.${signature}${STATE_MARKER_SUFFIX}`;\n if (!Schema.is(ReviewStateMarker)(marker)) return Effect.succeed(Option.none());\n const json = Result.getOrUndefined(Encoding.decodeBase64String(payload));\n if (json === undefined) return Effect.succeed(Option.none());\n const decoded = Schema.decodeUnknownOption(Schema.fromJsonString(ReviewState))(json);\n if (Option.isNone(decoded)) return Effect.succeed(Option.none());\n const message = new TextEncoder().encode(`${STATE_SIGNATURE_DOMAIN}${payload}`);\n return Effect.gen(function* () {\n const key = yield* hmacKey(secret, \"verify\");\n const valid = yield* Effect.tryPromise({\n try: () =>\n globalThis.crypto.subtle.verify(\"HMAC\", key, signatureBytes(signature), message),\n catch: (cause) => authenticationFailure(\"verify\", cause),\n });\n return valid ? Option.some(decoded.value) : Option.none();\n });\n },\n }),\n );\n\n/** Explicit no-state implementation for hosts without a stable authentication secret. */\nexport const unavailableReviewStateAuthenticatorLayer = (\n reason: string,\n): Layer.Layer<ReviewStateAuthenticator> => {\n const safeReason = reason === \"\" ? \"review-state authentication is unavailable\" : reason;\n return Layer.succeed(ReviewStateAuthenticator)(\n ReviewStateAuthenticator.of({\n status: \"unavailable\",\n unavailableReason: safeReason.slice(0, 1_000),\n render: () =>\n Effect.fail(\n ReviewStateAuthenticationFailure.make({\n operation: \"sign\",\n reason: safeReason.slice(0, 2_048),\n }),\n ),\n extract: () => Effect.succeed(Option.none()),\n }),\n );\n};\n\n/** The bounded result of GitHub's previous-head...current-head comparison. */\nexport class ReviewHeadComparison extends Schema.Class<ReviewHeadComparison>(\n \"@effect-agent/pr-review/ReviewHeadComparison\",\n)({\n status: Schema.Literals([\"ahead\", \"behind\", \"diverged\", \"identical\"]),\n baseSha: GitCommitSha,\n headSha: GitCommitSha,\n mergeBaseSha: GitCommitSha,\n files: Schema.Array(ChangedFile).check(Schema.isMaxLength(300)),\n /** GitHub caps compare-file payloads at 300; equality is conservatively truncated. */\n truncated: Schema.Boolean,\n}) {}\n\n/** Internal review selection applied as a decorator over the full PR source. */\nexport interface ReviewSelection {\n readonly mode: ReviewScopeMode;\n readonly reason: string;\n readonly files: ReadonlyArray<ChangedFile>;\n /** Paths whose changes invalidate prior findings, including paths reverted out of the PR. */\n readonly affectedPaths: ReadonlyArray<string>;\n readonly totalFiles: number;\n readonly baselineSha: string | undefined;\n readonly priorState: ReviewState | undefined;\n readonly profileFingerprint: string;\n /** Action-owned authentication capability, constructed at the composition root. */\n readonly stateAuthenticator?: ReviewStateAuthenticator[\"Service\"] | undefined;\n}\n\nconst fullSelection = (input: {\n readonly reason: string;\n readonly files: ReadonlyArray<ChangedFile>;\n readonly totalFiles: number;\n readonly profileFingerprint: string;\n}): ReviewSelection => ({\n mode: \"full\",\n reason: input.reason,\n files: input.files,\n affectedPaths: input.files.flatMap((file) =>\n file.previousPath === undefined ? [file.path] : [file.path, file.previousPath],\n ),\n totalFiles: input.totalFiles,\n baselineSha: undefined,\n priorState: undefined,\n profileFingerprint: input.profileFingerprint,\n});\n\n/**\n * Validate that persisted state belongs to this exact PR/base lineage and the\n * same review profile. A mismatch is a full-review reason, never an error that\n * silently suppresses review work.\n */\nexport const validateReviewState = (\n state: ReviewState,\n current: PullRequestMetadata,\n profileFingerprint: string,\n): string | undefined => {\n if (state.repository !== current.repository || state.pullRequestNumber !== current.number) {\n return \"stored state belongs to a different pull request\";\n }\n if (current.baseSha === undefined) return \"the current base commit is unavailable\";\n if (state.baseRef !== current.baseRef) return \"the pull request base ref changed\";\n if (state.headRef !== current.headRef) return \"the pull request head ref changed\";\n if (state.profileFingerprint !== profileFingerprint) {\n return \"the reviewer profile or model configuration changed\";\n }\n return undefined;\n};\n\n/** Pure, deterministic range selection with conservative full-review fallbacks. */\nexport const selectReviewRange = (input: {\n readonly requestedMode: ReviewMode;\n readonly current: PullRequestMetadata;\n readonly fullFiles: ReadonlyArray<ChangedFile>;\n readonly profileFingerprint: string;\n readonly priorState: ReviewState | undefined;\n readonly comparison: ReviewHeadComparison | undefined;\n readonly baseComparison?: ReviewHeadComparison | undefined;\n readonly lookupFailure?: string | undefined;\n}): ReviewSelection => {\n const full = (reason: string) =>\n fullSelection({\n reason,\n files: input.fullFiles,\n totalFiles: input.current.totalChangedFiles,\n profileFingerprint: input.profileFingerprint,\n });\n if (input.requestedMode === \"final\") return full(\"explicit final full-diff audit requested\");\n if (input.lookupFailure !== undefined) {\n return full(`stored review state could not be recovered: ${input.lookupFailure}`);\n }\n if (input.priorState === undefined) return full(\"no compatible stored review state was found\");\n const invalid = validateReviewState(input.priorState, input.current, input.profileFingerprint);\n if (invalid !== undefined) return full(invalid);\n const comparison = input.comparison;\n if (comparison === undefined) return full(\"the incremental head comparison was unavailable\");\n if (\n comparison.baseSha !== input.priorState.reviewedHeadSha ||\n comparison.headSha !== input.current.headSha ||\n comparison.mergeBaseSha !== input.priorState.reviewedHeadSha ||\n (comparison.status !== \"ahead\" && comparison.status !== \"identical\")\n ) {\n return full(\"the prior reviewed head is not an ancestor of the current head\");\n }\n if (comparison.truncated) return full(\"the incremental comparison exceeded GitHub's file bound\");\n const affectedPaths = new Set(\n comparison.files.flatMap((file) =>\n file.previousPath === undefined ? [file.path] : [file.path, file.previousPath],\n ),\n );\n let baseReason = \"\";\n if (input.priorState.baseSha !== input.current.baseSha) {\n const baseComparison = input.baseComparison;\n if (baseComparison === undefined) {\n return full(\"the pull request base changed and its lineage comparison was unavailable\");\n }\n if (\n baseComparison.baseSha !== input.priorState.baseSha ||\n baseComparison.headSha !== input.current.baseSha ||\n baseComparison.mergeBaseSha !== input.priorState.baseSha ||\n (baseComparison.status !== \"ahead\" && baseComparison.status !== \"identical\") ||\n baseComparison.truncated\n ) {\n return full(\"the pull request base changed materially or exceeded the comparison bound\");\n }\n for (const file of baseComparison.files) {\n affectedPaths.add(file.path);\n if (file.previousPath !== undefined) affectedPaths.add(file.previousPath);\n }\n baseReason = `; base advanced from ${input.priorState.baseSha.slice(0, 7)} and overlapping PR paths were included`;\n }\n const currentPaths = new Set(\n input.fullFiles.flatMap((file) =>\n file.previousPath === undefined ? [file.path] : [file.path, file.previousPath],\n ),\n );\n const selectedByPath = new Map<string, ChangedFile>();\n for (const file of comparison.files) {\n if (\n currentPaths.has(file.path) ||\n (file.previousPath !== undefined && currentPaths.has(file.previousPath))\n ) {\n selectedByPath.set(file.path, file);\n }\n }\n if (input.priorState.baseSha !== input.current.baseSha) {\n for (const file of input.fullFiles) {\n if (\n affectedPaths.has(file.path) ||\n (file.previousPath !== undefined && affectedPaths.has(file.previousPath))\n ) {\n selectedByPath.set(file.path, file);\n }\n }\n }\n const selectedFiles = [...selectedByPath.values()].sort((left, right) =>\n left.path < right.path ? -1 : left.path > right.path ? 1 : 0,\n );\n return {\n mode: \"incremental\",\n reason: `changes since settled review head ${input.priorState.reviewedHeadSha.slice(0, 7)}${baseReason}`,\n files: selectedFiles,\n affectedPaths: [...affectedPaths].sort(),\n totalFiles: selectedFiles.length,\n baselineSha: input.priorState.reviewedHeadSha,\n priorState: input.priorState,\n profileFingerprint: input.profileFingerprint,\n };\n};\n\n/** Per-run context consumed by orchestration and publication, not by the model. */\nexport class ReviewExecutionContext extends Context.Service<\n ReviewExecutionContext,\n ReviewSelection\n>()(\"@effect-agent/pr-review/ReviewExecutionContext\") {}\n\n/**\n * Decorate the full source with the selected review range. Full anchor files\n * remain available to host-side publication validation; model tools see only\n * the selected delta and may read head context only for that delta's paths.\n */\nexport const selectedPullRequestSourceLayer = (\n selection: ReviewSelection,\n): Layer.Layer<PullRequestSource, never, PullRequestSource> =>\n Layer.effect(PullRequestSource)(\n Effect.gen(function* () {\n const source = yield* PullRequestSource;\n const selectedPaths = new Set(selection.files.map((file) => file.path));\n const selectedFiles = source.changedFiles.pipe(\n Effect.map((fullFiles) => {\n const fullByPath = new Map(fullFiles.map((file) => [file.path, file] as const));\n return selection.files.map((file) => {\n if (file.patch !== undefined) return file;\n const full = fullByPath.get(file.path);\n return full === undefined\n ? file\n : ChangedFile.make({\n ...file,\n ...(full.reviewBaseContent === undefined\n ? {}\n : { reviewBaseContent: full.reviewBaseContent }),\n ...(full.reviewHeadContent === undefined\n ? {}\n : { reviewHeadContent: full.reviewHeadContent }),\n });\n });\n }),\n );\n return PullRequestSource.of({\n metadata: source.metadata,\n changedFiles: selectedFiles,\n anchorFiles: source.anchorFiles,\n readFile: (path) =>\n selectedPaths.has(path)\n ? source.readFile(path)\n : Effect.fail(\n ReviewInputViolation.make({\n input: path,\n reason: \"Path is outside this incremental review range.\",\n }),\n ),\n });\n }),\n );\n\n/** Profile fingerprints are SHA-256 over configuration-only signatures. */\nexport const computeProfileFingerprint = (signature: string): Effect.Effect<string> =>\n Effect.promise(async () => {\n const digest = await globalThis.crypto.subtle.digest(\n \"SHA-256\",\n new TextEncoder().encode(signature),\n );\n return Array.from(new Uint8Array(digest))\n .map((byte) => byte.toString(16).padStart(2, \"0\"))\n .join(\"\");\n });\n\n/** Build the full-surface mission used only to resolve profile guidance. */\nexport const buildProfileMission = (\n metadata: PullRequestMetadata,\n files: ReadonlyArray<ChangedFile>,\n): ReviewMission =>\n ReviewMission.make({\n repository: metadata.repository,\n number: metadata.number,\n title: metadata.title,\n body: metadata.body,\n baseRef: metadata.baseRef,\n headRef: metadata.headRef,\n changedFileCount: files.length,\n });\n","import { Context, DateTime, Effect, Option, Schema } from \"effect\";\n\nimport {\n ReviewStateAuthenticator,\n type ReviewState,\n type StoredReviewFinding,\n} from \"./review-state.ts\";\n\n// ---------------------------------------------------------------------------\n// Review retirement. GitHub mutations stay behind ReviewRetirementHost; this\n// module owns only deterministic identity matching, body rewriting, and the\n// fail-open orchestration that turns stale reviews into quiet history.\n// ---------------------------------------------------------------------------\n\nconst PositiveLine = Schema.Int.check(Schema.isGreaterThan(0));\n\n/** One previously posted review as observed through the retirement host. */\nexport class RetirableReview extends Schema.Class<RetirableReview>(\n \"@effect-agent/pr-review/RetirableReview\",\n)({\n reviewId: Schema.Int.check(Schema.isGreaterThan(0)),\n body: Schema.String.check(Schema.isMaxLength(60_000)),\n commitSha: Schema.NonEmptyString.check(Schema.isMaxLength(64)),\n authorNodeId: Schema.NullOr(Schema.NonEmptyString.check(Schema.isMaxLength(200))),\n submittedAt: Schema.NullOr(Schema.DateTimeUtc),\n}) {}\n\n/** One inline comment attached to a previously posted review. */\nexport class RetirableReviewComment extends Schema.Class<RetirableReviewComment>(\n \"@effect-agent/pr-review/RetirableReviewComment\",\n)({\n nodeId: Schema.NonEmptyString.check(Schema.isMaxLength(200)),\n path: Schema.NonEmptyString.check(Schema.isMaxLength(500)),\n startLine: Schema.NullOr(PositiveLine),\n endLine: Schema.NullOr(PositiveLine),\n body: Schema.String.check(Schema.isMaxLength(65_536)),\n}) {}\n\n/** A GitHub retirement read or mutation failed. */\nexport class ReviewRetirementFailure extends Schema.TaggedError<ReviewRetirementFailure>()(\n \"ReviewRetirementFailure\",\n {\n operation: Schema.String,\n reason: Schema.String,\n },\n) {\n override get message() {\n return `Review retirement operation '${this.operation}' failed: ${this.reason}`;\n }\n}\n\n/**\n * Host-side GitHub operations used by retirement. Domain code never reaches\n * into REST or GraphQL directly, and deterministic tests substitute this port.\n */\nexport class ReviewRetirementHost extends Context.Service<\n ReviewRetirementHost,\n {\n readonly listReviews: Effect.Effect<ReadonlyArray<RetirableReview>, ReviewRetirementFailure>;\n readonly listComments: (\n reviewId: number,\n ) => Effect.Effect<ReadonlyArray<RetirableReviewComment>, ReviewRetirementFailure>;\n readonly updateBody: (\n reviewId: number,\n body: string,\n ) => Effect.Effect<void, ReviewRetirementFailure>;\n readonly minimizeComment: (nodeId: string) => Effect.Effect<void, ReviewRetirementFailure>;\n }\n>()(\"@effect-agent/pr-review/ReviewRetirementHost\") {}\n\n/** Observable cosmetic work completed by one fail-open retirement pass. */\nexport class ReviewRetirementReport extends Schema.Class<ReviewRetirementReport>(\n \"@effect-agent/pr-review/ReviewRetirementReport\",\n)({\n reviewsRetired: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n findingsResolved: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n commentsMinimized: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n failures: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n}) {}\n\nexport interface ReviewRetirementInput {\n readonly currentReviewId: number;\n readonly currentReviewUrl: string;\n readonly currentAuthorNodeId: string;\n readonly currentSubmittedAt: DateTime.Utc;\n readonly currentState: ReviewState;\n}\n\nexport interface ReviewRetirementDecision {\n readonly body: string;\n readonly resolvedFindings: ReadonlyArray<StoredReviewFinding>;\n readonly priorFindingCount: number;\n}\n\nconst findingIdentity = (finding: {\n readonly path: string;\n readonly startLine: number;\n readonly endLine: number;\n readonly title: string;\n}): string =>\n `${finding.path}\\u0000${finding.startLine}\\u0000${finding.endLine}\\u0000${finding.title}`;\n\nconst REVIEW_METADATA_PATTERN = /<!-- effect-agent-pr-review metadata\\n[\\s\\S]*?\\n-->/g;\nconst FINGERPRINT_PATTERN = /<!-- effect-agent-pr-review fingerprint=sha256:[0-9a-f]{64} -->/g;\nconst STATE_PATTERN =\n /<!-- effect-agent-pr-review state-v1:[A-Za-z0-9+/]+={0,2}\\.[0-9a-f]{64} -->/g;\nconst RETIRED_ORIGINAL_PATTERN =\n /<!-- effect-agent-pr-review retired-original:start -->\\n([\\s\\S]*?)\\n<!-- effect-agent-pr-review retired-original:end -->/;\nconst MACHINE_COMMENT_PATTERN = new RegExp(\n `${REVIEW_METADATA_PATTERN.source}|${FINGERPRINT_PATTERN.source}|${STATE_PATTERN.source}`,\n \"g\",\n);\nconst VERDICT_CALLOUT_PATTERN =\n /^(?:> \\[!(?:CAUTION|IMPORTANT)\\]\\n> [^\\n]*(?:\\n> [^\\n]*)*|> (?:ℹ️|✅)[^\\n]*)\\n*/;\n// Accepts both the pre-category first line (`**[⚠️ important] Title**`) and\n// the current one carrying an optional category chip (`… · security]`), so\n// retirement keeps matching inline comments posted by older package versions.\nconst INLINE_FINDING_TITLE_PATTERN =\n /^\\*\\*\\[(?:🛑 blocking|⚠️ important|💅 nit)(?: · [a-z-]+)?\\] ([^\\n]+)\\*\\*$/;\nconst MAX_REVIEW_BODY_CHARS = 60_000;\n\n/** The host-authored metadata marker is the authority gate for any edit. */\nexport const hasReviewMetadataMarker = (body: string): boolean =>\n /<!-- effect-agent-pr-review metadata\\n/.test(body);\n\nconst machineComments = (body: string): ReadonlyArray<string> =>\n Array.from(body.matchAll(MACHINE_COMMENT_PATTERN), (match) => match[0]);\n\nconst originalVisibleBody = (body: string): string => {\n const retired = RETIRED_ORIGINAL_PATTERN.exec(body)?.[1];\n if (retired !== undefined) return retired;\n return body.replace(MACHINE_COMMENT_PATTERN, \"\").trim().replace(VERDICT_CALLOUT_PATTERN, \"\");\n};\n\nconst findingLocation = (finding: StoredReviewFinding): string =>\n `${finding.path}:${finding.startLine}${\n finding.endLine === finding.startLine ? \"\" : `-${finding.endLine}`\n }`;\n\nconst renderRetiredBody = (input: {\n readonly priorBody: string;\n readonly priorState: ReviewState;\n readonly currentState: ReviewState;\n readonly currentReviewUrl: string;\n readonly resolvedFindings: ReadonlyArray<StoredReviewFinding>;\n}): string => {\n const shortSha = input.currentState.reviewedHeadSha.slice(0, 7);\n const comments = machineComments(input.priorBody);\n const original = originalVisibleBody(input.priorBody);\n const resolved =\n input.resolvedFindings.length === 0\n ? []\n : [\n \"### Findings resolved by later review\",\n \"\",\n ...input.resolvedFindings.map(\n (finding) =>\n `- \\`${findingLocation(finding)}\\` ~~${finding.title}~~ · resolved at \\`${shortSha}\\``,\n ),\n \"\",\n ];\n const prefix = [\n `> ℹ️ Superseded — ${input.resolvedFindings.length} of ${input.priorState.unresolvedFindings.length} findings resolved at \\`${shortSha}\\`; see [the latest review](${input.currentReviewUrl}).`,\n \"\",\n \"<details>\",\n \"<summary>Previous review details</summary>\",\n \"\",\n ...resolved,\n \"<!-- effect-agent-pr-review retired-original:start -->\",\n ];\n const suffix = [\n \"<!-- effect-agent-pr-review retired-original:end -->\",\n \"\",\n \"</details>\",\n ...(comments.length === 0 ? [] : [\"\", ...comments]),\n ];\n const render = (visible: string) => [...prefix, visible, ...suffix].join(\"\\n\");\n if (render(original).length <= MAX_REVIEW_BODY_CHARS) return render(original);\n const truncationNotice = \"\\n\\n_Original review content truncated during retirement._\";\n const budget = Math.max(0, MAX_REVIEW_BODY_CHARS - render(truncationNotice).length);\n return render(`${original.slice(0, budget)}${truncationNotice}`);\n};\n\n/** Compute one prior review's resolved subset and deterministic retired body. */\nexport const decideReviewRetirement = (input: {\n readonly priorBody: string;\n readonly priorState: ReviewState;\n readonly currentState: ReviewState;\n readonly currentReviewUrl: string;\n}): ReviewRetirementDecision => {\n const current = new Set(input.currentState.unresolvedFindings.map(findingIdentity));\n const resolvedFindings = input.priorState.unresolvedFindings.filter(\n (finding) => !current.has(findingIdentity(finding)),\n );\n return {\n body: renderRetiredBody({ ...input, resolvedFindings }),\n resolvedFindings,\n priorFindingCount: input.priorState.unresolvedFindings.length,\n };\n};\n\nconst inlineCommentIdentity = (comment: RetirableReviewComment): string | undefined => {\n if (comment.startLine === null || comment.endLine === null) return undefined;\n const firstLine = comment.body.split(\"\\n\", 1)[0] ?? \"\";\n const title = INLINE_FINDING_TITLE_PATTERN.exec(firstLine)?.[1];\n return title === undefined\n ? undefined\n : findingIdentity({\n path: comment.path,\n startLine: comment.startLine,\n endLine: comment.endLine,\n title,\n });\n};\n\nconst failOpen = <A, E, R>(\n effect: Effect.Effect<A, E, R>,\n fallback: A,\n message: string,\n): Effect.Effect<A, never, R> =>\n effect.pipe(\n Effect.catch((error) =>\n Effect.logWarning(`${message}: ${String(error)}`).pipe(Effect.as(fallback)),\n ),\n );\n\nconst isStrictlyOlderReview = (review: RetirableReview, input: ReviewRetirementInput): boolean => {\n if (review.submittedAt === null) return false;\n const submittedAt = DateTime.toEpochMillis(review.submittedAt);\n const currentSubmittedAt = DateTime.toEpochMillis(input.currentSubmittedAt);\n return (\n submittedAt < currentSubmittedAt ||\n (submittedAt === currentSubmittedAt && review.reviewId < input.currentReviewId)\n );\n};\n\n/**\n * Retire every marker-bearing prior review against the newest posted state.\n * Every lookup, edit, and minimization is isolated: retirement is cosmetic\n * and can never change the run or check outcome.\n */\nexport const retireStaleReviews = Effect.fn(\"retireStaleReviews\")(function* (\n input: ReviewRetirementInput,\n) {\n const host = yield* ReviewRetirementHost;\n const authenticator = yield* ReviewStateAuthenticator;\n if (authenticator.status !== \"available\") {\n yield* Effect.logWarning(\n \"Skipping stale-review retirement because authenticated review state is unavailable.\",\n );\n return ReviewRetirementReport.make({\n reviewsRetired: 0,\n findingsResolved: 0,\n commentsMinimized: 0,\n failures: 0,\n });\n }\n\n let failures = 0;\n let reviewsRetired = 0;\n let findingsResolved = 0;\n let commentsMinimized = 0;\n const reviews = yield* failOpen(host.listReviews, undefined, \"Could not list prior reviews\");\n if (reviews === undefined) {\n return ReviewRetirementReport.make({\n reviewsRetired,\n findingsResolved,\n commentsMinimized,\n failures: 1,\n });\n }\n\n for (const review of reviews) {\n if (\n review.authorNodeId !== input.currentAuthorNodeId ||\n !isStrictlyOlderReview(review, input) ||\n !hasReviewMetadataMarker(review.body)\n ) {\n continue;\n }\n const priorState = yield* failOpen(\n authenticator.extract(review.body),\n Option.none<ReviewState>(),\n `Could not authenticate prior review ${review.reviewId}`,\n );\n if (Option.isNone(priorState)) continue;\n\n const decision = decideReviewRetirement({\n priorBody: review.body,\n priorState: priorState.value,\n currentState: input.currentState,\n currentReviewUrl: input.currentReviewUrl,\n });\n const updated = yield* failOpen(\n host.updateBody(review.reviewId, decision.body).pipe(Effect.as(true)),\n false,\n `Could not retire prior review ${review.reviewId}`,\n );\n if (updated) {\n reviewsRetired += 1;\n findingsResolved += decision.resolvedFindings.length;\n } else {\n failures += 1;\n }\n\n if (decision.resolvedFindings.length === 0) continue;\n const comments = yield* failOpen(\n host.listComments(review.reviewId),\n undefined,\n `Could not list inline comments for prior review ${review.reviewId}`,\n );\n if (comments === undefined) {\n failures += 1;\n continue;\n }\n const resolved = new Set(decision.resolvedFindings.map(findingIdentity));\n for (const comment of comments) {\n const identity = inlineCommentIdentity(comment);\n if (identity === undefined || !resolved.has(identity)) continue;\n const minimized = yield* failOpen(\n host.minimizeComment(comment.nodeId).pipe(Effect.as(true)),\n false,\n `Could not minimize resolved inline comment ${comment.nodeId}`,\n );\n if (minimized) commentsMinimized += 1;\n else failures += 1;\n }\n }\n\n return ReviewRetirementReport.make({\n reviewsRetired,\n findingsResolved,\n commentsMinimized,\n failures,\n });\n});\n","import type { Redacted } from \"effect\";\nimport { Context, DateTime, Effect, Layer, Option, Schema } from \"effect\";\nimport { HttpClient, HttpClientRequest, HttpClientResponse } from \"effect/unstable/http\";\n\nimport { ChangedFile } from \"./diff.ts\";\nimport { extractFingerprint } from \"./fingerprint.ts\";\nimport type { ReviewPublicationPlan } from \"./render.ts\";\nimport {\n RetirableReview,\n RetirableReviewComment,\n ReviewRetirementFailure,\n ReviewRetirementHost,\n} from \"./retirement.ts\";\nimport {\n ReviewHeadComparison,\n ReviewStateAuthenticator,\n type ReviewState,\n} from \"./review-state.ts\";\nimport {\n MAX_CHANGED_FILES,\n MAX_FILE_CHARS,\n normalizeRepoRelativePath,\n PullRequestMetadata,\n PullRequestSource,\n PullRequestSourceFailure,\n ReviewInputViolation,\n} from \"./source.ts\";\n\n// ---------------------------------------------------------------------------\n// GitHub REST adapters for the PullRequestSource port and the ReviewPublisher.\n// Wire payloads are decoded through minimal Schemas — never asserted — and\n// every upstream fault becomes the typed PullRequestSourceFailure /\n// GitHubApiFailure instead of an untyped defect.\n// ---------------------------------------------------------------------------\n\nconst defaultGraphqlUrl = (apiUrl: string): string =>\n apiUrl === \"https://api.github.com\"\n ? \"https://api.github.com/graphql\"\n : apiUrl.replace(/\\/api\\/v3$/, \"/api/graphql\");\n\n/** Which pull request to review and how to reach the API. */\nexport const DEFAULT_GITHUB_REVIEW_AUTHOR_LOGIN = \"github-actions[bot]\";\n\nexport class GitHubReviewTarget extends Context.Service<\n GitHubReviewTarget,\n {\n /** API root, e.g. `https://api.github.com` (no trailing slash). */\n readonly apiUrl: string;\n /** GraphQL root, e.g. `https://api.github.com/graphql`. */\n readonly graphqlUrl: string;\n /** `owner/name`. */\n readonly repository: string;\n readonly number: number;\n /** Absent token means unauthenticated reads (public repositories only). */\n readonly token: Option.Option<Redacted.Redacted<string>>;\n /** Bot login expected to author reviews posted with this target's token. */\n readonly reviewAuthorLogin?: string | undefined;\n }\n>()(\"@effect-agent/pr-review/GitHubReviewTarget\") {\n static layer(config: {\n readonly apiUrl: string;\n readonly graphqlUrl?: string | undefined;\n readonly repository: string;\n readonly number: number;\n readonly token: Option.Option<Redacted.Redacted<string>>;\n readonly reviewAuthorLogin?: string | undefined;\n }): Layer.Layer<GitHubReviewTarget> {\n return Layer.succeed(\n this,\n GitHubReviewTarget.of({\n ...config,\n graphqlUrl: config.graphqlUrl ?? defaultGraphqlUrl(config.apiUrl),\n reviewAuthorLogin: config.reviewAuthorLogin ?? DEFAULT_GITHUB_REVIEW_AUTHOR_LOGIN,\n }),\n );\n }\n}\n\n/** A GitHub API call failed: transport, status, or payload decode. */\nexport class GitHubApiFailure extends Schema.TaggedError<GitHubApiFailure>()(\"GitHubApiFailure\", {\n operation: Schema.String,\n reason: Schema.String,\n}) {\n override get message() {\n return `GitHub API operation '${this.operation}' failed: ${this.reason}`;\n }\n}\n\n// --- Wire schemas (decode-only, minimal fields) ------------------------------\n\nconst GitHubPullRequestWire = Schema.Struct({\n number: Schema.Int,\n title: Schema.String,\n body: Schema.NullOr(Schema.String),\n changed_files: Schema.Int,\n base: Schema.Struct({ ref: Schema.String, sha: Schema.String }),\n head: Schema.Struct({ ref: Schema.String, sha: Schema.String }),\n});\n\nconst GitHubFileWire = Schema.Struct({\n filename: Schema.String,\n status: Schema.String,\n additions: Schema.Int,\n deletions: Schema.Int,\n patch: Schema.optionalKey(Schema.String),\n previous_filename: Schema.optionalKey(Schema.String),\n});\n\nconst GitHubFilesPageWire = Schema.Array(GitHubFileWire);\n\nconst GitHubActorWire = Schema.Struct({ node_id: Schema.String });\n\nconst GitHubReviewWire = Schema.Struct({\n id: Schema.Int,\n html_url: Schema.String,\n user: Schema.NullOr(GitHubActorWire),\n submitted_at: Schema.NullOr(Schema.String),\n});\n\nconst GitHubRetirableReviewWire = Schema.Struct({\n id: Schema.Int,\n body: Schema.NullOr(Schema.String),\n commit_id: Schema.String,\n user: Schema.NullOr(GitHubActorWire),\n submitted_at: Schema.NullOr(Schema.String),\n});\nconst GitHubRetirableReviewsPageWire = Schema.Array(GitHubRetirableReviewWire);\n\nconst GitHubReviewCommentWire = Schema.Struct({\n node_id: Schema.String,\n path: Schema.String,\n body: Schema.String,\n line: Schema.NullOr(Schema.Int),\n original_line: Schema.NullOr(Schema.Int),\n start_line: Schema.optionalKey(Schema.NullOr(Schema.Int)),\n original_start_line: Schema.optionalKey(Schema.NullOr(Schema.Int)),\n});\nconst GitHubReviewCommentsPageWire = Schema.Array(GitHubReviewCommentWire);\n\nconst GitHubMinimizeCommentWire = Schema.Struct({\n data: Schema.optionalKey(\n Schema.NullOr(\n Schema.Struct({\n minimizeComment: Schema.NullOr(\n Schema.Struct({\n minimizedComment: Schema.NullOr(Schema.Struct({ isMinimized: Schema.Boolean })),\n }),\n ),\n }),\n ),\n ),\n errors: Schema.optionalKey(Schema.Array(Schema.Struct({ message: Schema.String }))),\n});\n\n/** Decode GitHub's external timestamp before it participates in mutation ordering. */\nexport const parseGitHubSubmittedAt = (value: string | null): DateTime.Utc | null =>\n value === null ? null : Option.getOrNull(DateTime.make(value));\n\n/** The publication receipt callers report back to the operator. */\nexport class PublishedReview extends Schema.Class<PublishedReview>(\n \"@effect-agent/pr-review/PublishedReview\",\n)({\n reviewId: Schema.Int,\n url: Schema.String,\n event: Schema.String,\n inlineComments: Schema.Int.check(Schema.isGreaterThanOrEqualTo(0)),\n /** Actor and ordering boundary returned by the create-review response. */\n authorNodeId: Schema.NullOr(Schema.NonEmptyString.check(Schema.isMaxLength(200))),\n submittedAt: Schema.NullOr(Schema.DateTimeUtc),\n}) {}\n\n/** Posts one planned review; the ONLY mutating operation in this package. */\nexport class ReviewPublisher extends Context.Service<\n ReviewPublisher,\n {\n readonly publish: (\n plan: ReviewPublicationPlan,\n ) => Effect.Effect<PublishedReview, GitHubApiFailure>;\n }\n>()(\"@effect-agent/pr-review/ReviewPublisher\") {}\n\n// --- Shared request plumbing -------------------------------------------------\n\nconst FILE_STATUSES = new Set([\n \"added\",\n \"removed\",\n \"modified\",\n \"renamed\",\n \"copied\",\n \"changed\",\n \"unchanged\",\n]);\n\nconst withCommonHeaders = (\n request: HttpClientRequest.HttpClientRequest,\n token: Option.Option<Redacted.Redacted<string>>,\n): HttpClientRequest.HttpClientRequest => {\n const base = request.pipe(\n HttpClientRequest.setHeaders({\n \"X-GitHub-Api-Version\": \"2022-11-28\",\n \"User-Agent\": \"effect-agent-pr-review\",\n }),\n );\n return Option.isSome(token) ? base.pipe(HttpClientRequest.bearerToken(token.value)) : base;\n};\n\nconst failWith =\n (operation: string) =>\n (error: { readonly _tag: string; readonly message?: string }): PullRequestSourceFailure =>\n PullRequestSourceFailure.make({\n operation,\n reason: `${error._tag}: ${error.message ?? \"request failed\"}`.slice(0, 2_048),\n });\n\nconst decodeJsonBody = <S extends Schema.Top>(schema: S, operation: string) => {\n const decode = Schema.decodeUnknownEffect(schema);\n return (\n response: HttpClientResponse.HttpClientResponse,\n ): Effect.Effect<S[\"Type\"], PullRequestSourceFailure, S[\"DecodingServices\"]> =>\n response.json.pipe(\n Effect.mapError(failWith(operation)),\n Effect.flatMap((body) => decode(body).pipe(Effect.mapError(failWith(operation)))),\n );\n};\n\nconst executeOk = (\n operation: string,\n request: HttpClientRequest.HttpClientRequest,\n): Effect.Effect<\n HttpClientResponse.HttpClientResponse,\n PullRequestSourceFailure,\n HttpClient.HttpClient\n> =>\n HttpClient.execute(request).pipe(\n Effect.flatMap(HttpClientResponse.filterStatusOk),\n Effect.mapError(failWith(operation)),\n );\n\nconst toChangedFile = (wire: typeof GitHubFileWire.Type): ChangedFile =>\n ChangedFile.make({\n path: wire.filename,\n status: FILE_STATUSES.has(wire.status) ? (wire.status as ChangedFile[\"status\"]) : \"changed\",\n additions: wire.additions,\n deletions: wire.deletions,\n ...(wire.previous_filename !== undefined ? { previousPath: wire.previous_filename } : {}),\n ...(wire.patch !== undefined ? { patch: wire.patch } : {}),\n });\n\n// --- Live PullRequestSource --------------------------------------------------\n\n/**\n * GitHub-backed PullRequestSource. Metadata and the changeset are fetched\n * once per Layer build and cached: the pull request is reviewed as one\n * consistent snapshot even if the branch moves mid-run.\n */\nexport const gitHubPullRequestSourceLayer: Layer.Layer<\n PullRequestSource,\n never,\n GitHubReviewTarget | HttpClient.HttpClient\n> = Layer.effect(PullRequestSource)(\n Effect.gen(function* () {\n const target = yield* GitHubReviewTarget;\n const client = yield* HttpClient.HttpClient;\n const prefix = `${target.apiUrl}/repos/${target.repository}/pulls/${target.number}`;\n\n const fetchMetadata = executeOk(\n \"getPullRequest\",\n withCommonHeaders(\n HttpClientRequest.get(prefix).pipe(HttpClientRequest.acceptJson),\n target.token,\n ),\n ).pipe(\n Effect.flatMap(decodeJsonBody(GitHubPullRequestWire, \"getPullRequest\")),\n Effect.map((wire) =>\n PullRequestMetadata.make({\n repository: target.repository,\n number: wire.number,\n title: wire.title.slice(0, 400),\n body: (wire.body ?? \"\").slice(0, 20_000),\n baseRef: wire.base.ref,\n baseSha: wire.base.sha,\n headRef: wire.head.ref,\n headSha: wire.head.sha,\n totalChangedFiles: wire.changed_files,\n }),\n ),\n );\n\n const fetchFiles = Effect.gen(function* () {\n const perPage = 100;\n const all: Array<ChangedFile> = [];\n for (let page = 1; page <= MAX_CHANGED_FILES / perPage; page += 1) {\n const response = yield* executeOk(\n \"listChangedFiles\",\n withCommonHeaders(\n HttpClientRequest.get(`${prefix}/files`).pipe(\n HttpClientRequest.acceptJson,\n HttpClientRequest.setUrlParams({\n per_page: String(perPage),\n page: String(page),\n }),\n ),\n target.token,\n ),\n );\n const wires = yield* decodeJsonBody(GitHubFilesPageWire, \"listChangedFiles\")(response);\n all.push(...wires.map(toChangedFile));\n if (wires.length < perPage) break;\n }\n return all as ReadonlyArray<ChangedFile>;\n });\n\n const metadata = yield* Effect.cached(\n fetchMetadata.pipe(Effect.provideService(HttpClient.HttpClient, client)),\n );\n const rawFiles = yield* Effect.cached(\n fetchFiles.pipe(Effect.provideService(HttpClient.HttpClient, client)),\n );\n\n const readRepositoryFile = (path: string, ref: string) =>\n Effect.gen(function* () {\n const relative = yield* normalizeRepoRelativePath(path);\n const encodedPath = relative.split(\"/\").map(encodeURIComponent).join(\"/\");\n const response = yield* executeOk(\n \"readFile\",\n withCommonHeaders(\n HttpClientRequest.get(\n `${target.apiUrl}/repos/${target.repository}/contents/${encodedPath}`,\n ).pipe(\n HttpClientRequest.accept(\"application/vnd.github.raw+json\"),\n HttpClientRequest.setUrlParams({ ref }),\n ),\n target.token,\n ),\n ).pipe(Effect.provideService(HttpClient.HttpClient, client));\n const buffer = yield* response.arrayBuffer.pipe(Effect.mapError(failWith(\"readFile\")));\n if (buffer.byteLength > MAX_FILE_CHARS) {\n return yield* ReviewInputViolation.make({\n input: relative,\n reason: `File is larger than the ${MAX_FILE_CHARS}-byte read bound.`,\n });\n }\n const text = yield* Effect.try({\n try: () => new TextDecoder(\"utf-8\", { fatal: true }).decode(buffer),\n catch: () =>\n ReviewInputViolation.make({\n input: relative,\n reason: \"File is not valid UTF-8 text.\",\n }),\n });\n if (text.includes(\"\\u0000\")) {\n return yield* ReviewInputViolation.make({\n input: relative,\n reason: \"File contains binary NUL bytes.\",\n });\n }\n if (text.length > MAX_FILE_CHARS) {\n return yield* ReviewInputViolation.make({\n input: relative,\n reason: `File is larger than the ${MAX_FILE_CHARS}-character read bound.`,\n });\n }\n return text;\n });\n\n const changedFiles = yield* Effect.cached(\n Effect.gen(function* () {\n const [files, pullRequest] = yield* Effect.all([rawFiles, metadata]);\n return yield* Effect.forEach(\n files,\n (file) => {\n if (file.patch !== undefined) return Effect.succeed(file);\n const basePath = file.previousPath ?? file.path;\n const base =\n file.status === \"added\"\n ? Effect.succeed(Option.none<string>())\n : readRepositoryFile(basePath, pullRequest.baseSha ?? pullRequest.baseRef).pipe(\n Effect.option,\n );\n const head =\n file.status === \"removed\"\n ? Effect.succeed(Option.none<string>())\n : readRepositoryFile(file.path, pullRequest.headSha).pipe(Effect.option);\n return Effect.all({ base, head }).pipe(\n Effect.map(({ base, head }) =>\n ChangedFile.make({\n ...file,\n ...(Option.isSome(base) ? { reviewBaseContent: base.value } : {}),\n ...(Option.isSome(head) ? { reviewHeadContent: head.value } : {}),\n }),\n ),\n );\n },\n { concurrency: 4 },\n );\n }),\n );\n\n const readFile = (path: string) =>\n Effect.gen(function* () {\n const relative = yield* normalizeRepoRelativePath(path);\n const files = yield* changedFiles;\n const file = files.find((candidate) => candidate.path === relative);\n if (file === undefined) {\n return yield* ReviewInputViolation.make({\n input: relative,\n reason: \"Path is not part of this pull request's changeset.\",\n });\n }\n if (file.reviewHeadContent !== undefined) return file.reviewHeadContent;\n const head = yield* metadata;\n return yield* readRepositoryFile(relative, head.headSha);\n });\n\n return PullRequestSource.of({ metadata, changedFiles, anchorFiles: changedFiles, readFile });\n }),\n);\n\n// --- Live ReviewPublisher ------------------------------------------------------\n\n/** GitHub-backed publisher: one POST to the pull-request reviews endpoint. */\nexport const gitHubReviewPublisherLayer: Layer.Layer<\n ReviewPublisher,\n never,\n GitHubReviewTarget | HttpClient.HttpClient\n> = Layer.effect(ReviewPublisher)(\n Effect.gen(function* () {\n const target = yield* GitHubReviewTarget;\n const client = yield* HttpClient.HttpClient;\n return ReviewPublisher.of({\n publish: (plan) =>\n Effect.gen(function* () {\n const payload = {\n event: plan.event,\n body: plan.body,\n commit_id: plan.commitSha,\n comments: plan.comments.map((comment) => ({\n path: comment.path,\n line: comment.line,\n side: \"RIGHT\",\n ...(comment.startLine !== undefined\n ? { start_line: comment.startLine, start_side: \"RIGHT\" }\n : {}),\n body: comment.body,\n })),\n };\n const request = withCommonHeaders(\n HttpClientRequest.post(\n `${target.apiUrl}/repos/${target.repository}/pulls/${target.number}/reviews`,\n ).pipe(HttpClientRequest.acceptJson, HttpClientRequest.bodyJsonUnsafe(payload)),\n target.token,\n );\n const wire = yield* HttpClient.execute(request).pipe(\n Effect.flatMap(HttpClientResponse.filterStatusOk),\n Effect.flatMap((response) =>\n response.json.pipe(Effect.flatMap(Schema.decodeUnknownEffect(GitHubReviewWire))),\n ),\n Effect.mapError((error) =>\n GitHubApiFailure.make({\n operation: \"createReview\",\n reason: `${error._tag}: ${error.message ?? \"request failed\"}`.slice(0, 2_048),\n }),\n ),\n Effect.provideService(HttpClient.HttpClient, client),\n );\n return PublishedReview.make({\n reviewId: wire.id,\n url: wire.html_url,\n event: plan.event,\n inlineComments: plan.comments.length,\n authorNodeId: wire.user?.node_id ?? null,\n submittedAt: parseGitHubSubmittedAt(wire.submitted_at),\n });\n }),\n });\n }),\n);\n\n// --- Live ReviewRetirementHost ----------------------------------------------\n\nconst MAX_RETIREMENT_PAGES = 5;\nconst MINIMIZE_REVIEW_COMMENT_MUTATION = `mutation MinimizeReviewComment($subjectId: ID!) {\n minimizeComment(input: { subjectId: $subjectId, classifier: OUTDATED }) {\n minimizedComment { isMinimized }\n }\n}`;\n\n/** GitHub-backed host operations for cosmetic retirement after publication. */\nexport const gitHubReviewRetirementHostLayer: Layer.Layer<\n ReviewRetirementHost,\n never,\n GitHubReviewTarget | HttpClient.HttpClient\n> = Layer.effect(ReviewRetirementHost)(\n Effect.gen(function* () {\n const target = yield* GitHubReviewTarget;\n const client = yield* HttpClient.HttpClient;\n const prefix = `${target.apiUrl}/repos/${target.repository}/pulls/${target.number}`;\n const asRetirementFailure =\n (operation: string) =>\n (error: { readonly _tag: string; readonly message?: string }): ReviewRetirementFailure =>\n ReviewRetirementFailure.make({\n operation,\n reason: `${error._tag}: ${error.message ?? \"request failed\"}`.slice(0, 2_048),\n });\n const executeRetirement = (operation: string, request: HttpClientRequest.HttpClientRequest) =>\n HttpClient.execute(request).pipe(\n Effect.flatMap(HttpClientResponse.filterStatusOk),\n Effect.mapError(asRetirementFailure(operation)),\n Effect.provideService(HttpClient.HttpClient, client),\n );\n const decodeRetirement = <S extends Schema.Top>(schema: S, operation: string) => {\n const decode = Schema.decodeUnknownEffect(schema);\n return (response: HttpClientResponse.HttpClientResponse) =>\n response.json.pipe(\n Effect.mapError(asRetirementFailure(operation)),\n Effect.flatMap((body) =>\n decode(body).pipe(Effect.mapError(asRetirementFailure(operation))),\n ),\n );\n };\n const listPaged = <A>(input: {\n readonly operation: string;\n readonly url: string;\n readonly decode: (\n response: HttpClientResponse.HttpClientResponse,\n ) => Effect.Effect<ReadonlyArray<A>, ReviewRetirementFailure>;\n }) =>\n Effect.gen(function* () {\n const values: Array<A> = [];\n const perPage = 100;\n for (let page = 1; page <= MAX_RETIREMENT_PAGES; page += 1) {\n const response = yield* executeRetirement(\n input.operation,\n withCommonHeaders(\n HttpClientRequest.get(input.url).pipe(\n HttpClientRequest.acceptJson,\n HttpClientRequest.setUrlParams({\n per_page: String(perPage),\n page: String(page),\n }),\n ),\n target.token,\n ),\n );\n const pageValues = yield* input.decode(response);\n values.push(...pageValues);\n if (pageValues.length < perPage) return values;\n }\n return yield* ReviewRetirementFailure.make({\n operation: input.operation,\n reason: `history exceeds the bounded ${MAX_RETIREMENT_PAGES * 100}-item lookup`,\n });\n });\n\n return ReviewRetirementHost.of({\n listReviews: listPaged({\n operation: \"listReviewsForRetirement\",\n url: `${prefix}/reviews`,\n decode: decodeRetirement(GitHubRetirableReviewsPageWire, \"listReviewsForRetirement\"),\n }).pipe(\n Effect.map((reviews) =>\n reviews.map((review) =>\n RetirableReview.make({\n reviewId: review.id,\n body: review.body ?? \"\",\n commitSha: review.commit_id,\n authorNodeId: review.user?.node_id ?? null,\n submittedAt: parseGitHubSubmittedAt(review.submitted_at),\n }),\n ),\n ),\n ),\n listComments: (reviewId) =>\n listPaged({\n operation: \"listReviewCommentsForRetirement\",\n url: `${prefix}/reviews/${reviewId}/comments`,\n decode: decodeRetirement(GitHubReviewCommentsPageWire, \"listReviewCommentsForRetirement\"),\n }).pipe(\n Effect.map((comments) =>\n comments.map((comment) => {\n const endLine = comment.line ?? comment.original_line;\n const startLine = comment.start_line ?? comment.original_start_line ?? endLine;\n return RetirableReviewComment.make({\n nodeId: comment.node_id,\n path: comment.path,\n startLine,\n endLine,\n body: comment.body,\n });\n }),\n ),\n ),\n updateBody: (reviewId, body) =>\n executeRetirement(\n \"updateReview\",\n withCommonHeaders(\n HttpClientRequest.put(`${prefix}/reviews/${reviewId}`).pipe(\n HttpClientRequest.acceptJson,\n HttpClientRequest.bodyJsonUnsafe({ body }),\n ),\n target.token,\n ),\n ).pipe(Effect.asVoid),\n minimizeComment: (nodeId) =>\n Effect.gen(function* () {\n const response = yield* executeRetirement(\n \"minimizeComment\",\n withCommonHeaders(\n HttpClientRequest.post(target.graphqlUrl).pipe(\n HttpClientRequest.acceptJson,\n HttpClientRequest.bodyJsonUnsafe({\n query: MINIMIZE_REVIEW_COMMENT_MUTATION,\n variables: { subjectId: nodeId },\n }),\n ),\n target.token,\n ),\n );\n const wire = yield* decodeRetirement(\n GitHubMinimizeCommentWire,\n \"minimizeComment\",\n )(response);\n if (\n (wire.errors?.length ?? 0) > 0 ||\n wire.data?.minimizeComment?.minimizedComment?.isMinimized !== true\n ) {\n return yield* ReviewRetirementFailure.make({\n operation: \"minimizeComment\",\n reason:\n wire.errors\n ?.map((error) => error.message)\n .join(\"; \")\n .slice(0, 2_048) ?? \"GitHub did not confirm comment minimization\",\n });\n }\n }),\n });\n }),\n);\n\n// --- Prior reviews (fingerprint deduplication) ---------------------------------\n\n/** Reading the pull request's previously posted reviews failed. */\nexport class PriorReviewLookupFailure extends Schema.TaggedError<PriorReviewLookupFailure>()(\n \"PriorReviewLookupFailure\",\n {\n reason: Schema.String,\n },\n) {\n override get message() {\n return `Prior-review lookup failed: ${this.reason}`;\n }\n}\n\n/**\n * Read-only view of this package's previously posted reviews on the target\n * pull request — the deduplication state for unchanged-changeset skipping.\n */\nexport class PriorReviews extends Context.Service<\n PriorReviews,\n {\n /** The fingerprint embedded in the most recent marker-bearing review. */\n readonly latestFingerprint: Effect.Effect<Option.Option<string>, PriorReviewLookupFailure>;\n /** The latest authenticated, successfully covered review state marker. */\n readonly latestState: Effect.Effect<\n Option.Option<ReviewState>,\n PriorReviewLookupFailure,\n ReviewStateAuthenticator\n >;\n /** Compare a previously reviewed head to the live current head. */\n readonly compareHeads: (\n baseSha: string,\n headSha: string,\n ) => Effect.Effect<ReviewHeadComparison, PriorReviewLookupFailure>;\n }\n>()(\"@effect-agent/pr-review/PriorReviews\") {}\n\nconst GitHubPriorReviewWire = Schema.Struct({\n body: Schema.NullOr(Schema.String),\n commit_id: Schema.String,\n user: Schema.optionalKey(\n Schema.NullOr(\n Schema.Struct({\n login: Schema.String,\n type: Schema.String,\n }),\n ),\n ),\n});\nconst GitHubPriorReviewsPageWire = Schema.Array(GitHubPriorReviewWire);\n\nconst GitHubCompareWire = Schema.Struct({\n status: Schema.Literals([\"ahead\", \"behind\", \"diverged\", \"identical\"]),\n base_commit: Schema.Struct({ sha: Schema.String }),\n merge_base_commit: Schema.Struct({ sha: Schema.String }),\n files: GitHubFilesPageWire,\n});\n\n/** Reviews are paged chronologically; scanning stays bounded. */\nconst MAX_PRIOR_REVIEW_PAGES = 5;\n\n/** GitHub-backed PriorReviews over the pull-request reviews endpoint. */\nexport const gitHubPriorReviewsLayer: Layer.Layer<\n PriorReviews,\n never,\n GitHubReviewTarget | HttpClient.HttpClient\n> = Layer.effect(PriorReviews)(\n Effect.gen(function* () {\n const target = yield* GitHubReviewTarget;\n const client = yield* HttpClient.HttpClient;\n const prefix = `${target.apiUrl}/repos/${target.repository}/pulls/${target.number}`;\n const reviewAuthorLogin = target.reviewAuthorLogin ?? DEFAULT_GITHUB_REVIEW_AUTHOR_LOGIN;\n const decodePage = Schema.decodeUnknownEffect(GitHubPriorReviewsPageWire);\n const asLookupFailure = (error: { readonly _tag: string; readonly message?: string }) =>\n PriorReviewLookupFailure.make({\n reason: `${error._tag}: ${error.message ?? \"request failed\"}`.slice(0, 2_048),\n });\n const readMarkers = (authenticator: Option.Option<ReviewStateAuthenticator[\"Service\"]>) =>\n Effect.gen(function* () {\n const perPage = 100;\n let latest = Option.none<string>();\n let latestState = Option.none<ReviewState>();\n for (let page = 1; page <= MAX_PRIOR_REVIEW_PAGES; page += 1) {\n const response = yield* HttpClient.execute(\n withCommonHeaders(\n HttpClientRequest.get(`${prefix}/reviews`).pipe(\n HttpClientRequest.acceptJson,\n HttpClientRequest.setUrlParams({\n per_page: String(perPage),\n page: String(page),\n }),\n ),\n target.token,\n ),\n ).pipe(\n Effect.flatMap(HttpClientResponse.filterStatusOk),\n Effect.mapError(asLookupFailure),\n );\n const wires = yield* response.json.pipe(\n Effect.mapError(asLookupFailure),\n Effect.flatMap((body) => decodePage(body).pipe(Effect.mapError(asLookupFailure))),\n );\n for (const wire of wires) {\n // State controls what required scope may be omitted. Match the bot\n // identity that posts with this target's token; the terminal marker\n // is additionally HMAC authenticated so another workflow or model\n // text cannot forge it.\n if (\n wire.user?.login.toLowerCase() !== reviewAuthorLogin.toLowerCase() ||\n wire.user.type !== \"Bot\"\n ) {\n continue;\n }\n const fingerprint = extractFingerprint(wire.body ?? \"\");\n if (fingerprint !== undefined) latest = Option.some(fingerprint);\n if (Option.isSome(authenticator)) {\n const state = yield* authenticator.value.extract(wire.body ?? \"\").pipe(\n Effect.mapError((error) =>\n PriorReviewLookupFailure.make({\n reason: `${error._tag}: ${error.reason}`.slice(0, 2_048),\n }),\n ),\n );\n if (Option.isSome(state) && state.value.reviewedHeadSha === wire.commit_id) {\n latestState = state;\n }\n }\n }\n if (wires.length < perPage) break;\n if (page === MAX_PRIOR_REVIEW_PAGES) {\n return yield* PriorReviewLookupFailure.make({\n reason: `review history exceeds the bounded ${MAX_PRIOR_REVIEW_PAGES * perPage}-review lookup`,\n });\n }\n }\n return { latestFingerprint: latest, latestState };\n }).pipe(Effect.provideService(HttpClient.HttpClient, client));\n const compareHeads = (baseSha: string, headSha: string) =>\n Effect.gen(function* () {\n const response = yield* HttpClient.execute(\n withCommonHeaders(\n HttpClientRequest.get(\n `${target.apiUrl}/repos/${target.repository}/compare/${encodeURIComponent(baseSha)}...${encodeURIComponent(headSha)}`,\n ).pipe(HttpClientRequest.acceptJson),\n target.token,\n ),\n ).pipe(Effect.flatMap(HttpClientResponse.filterStatusOk), Effect.mapError(asLookupFailure));\n const wire = yield* response.json.pipe(\n Effect.mapError(asLookupFailure),\n Effect.flatMap((body) =>\n Schema.decodeUnknownEffect(GitHubCompareWire)(body).pipe(\n Effect.mapError(asLookupFailure),\n ),\n ),\n );\n const files = wire.files.map(toChangedFile);\n return ReviewHeadComparison.make({\n status: wire.status,\n baseSha: wire.base_commit.sha,\n headSha,\n mergeBaseSha: wire.merge_base_commit.sha,\n files,\n truncated: files.length >= MAX_CHANGED_FILES,\n });\n }).pipe(Effect.provideService(HttpClient.HttpClient, client));\n return PriorReviews.of({\n latestFingerprint: readMarkers(Option.none()).pipe(\n Effect.map((markers) => markers.latestFingerprint),\n ),\n latestState: Effect.gen(function* () {\n const authenticator = yield* ReviewStateAuthenticator;\n return yield* readMarkers(Option.some(authenticator)).pipe(\n Effect.map((markers) => markers.latestState),\n );\n }),\n compareHeads,\n });\n }),\n);\n\n/**\n * Whether the current fingerprint matches the most recent posted review.\n * Fails OPEN: a lookup fault means \"not unchanged\" — the review proceeds,\n * which is the safe direction for a deduplication optimization.\n */\nexport const fingerprintUnchanged = (\n current: string,\n): Effect.Effect<boolean, never, PriorReviews> =>\n Effect.gen(function* () {\n const priorReviews = yield* PriorReviews;\n const latest = yield* priorReviews.latestFingerprint.pipe(\n Effect.orElseSucceed(() => Option.none<string>()),\n );\n return Option.isSome(latest) && latest.value === current;\n });\n"],"mappings":"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"}