1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
|
import { eq } from "drizzle-orm";
import { db } from "../../db";
import {
prComments,
pullRequests,
repositories,
users,
} from "../../db/schema";
import {
MODEL_HAIKU,
MODEL_SONNET,
extractText,
getAnthropic,
isAiAvailable,
parseJsonResponse,
} from "../ai-client";
import {
executeAgentRun,
startAgentRun,
type AgentExecutorResult,
} from "../agent-runtime";
import { getDefaultBranch, getDiff } from "../../git/repository";
export interface RunReviewResponseAgentArgs {
repositoryId: string;
prId: string;
prNumber: number;
commentId: string;
commentBody: string;
commenterId?: string;
filePath?: string;
lineNumber?: number;
}
export interface RunReviewResponseAgentResult {
skipped: boolean;
skipReason?: string;
runId?: string;
}
export const AI_REPLY_MARKER =
"— drafted by review-response agent; human must apply or reject";
const EMOJI_RANGE =
/^[\s\u{1F300}-\u{1FAFF}\u{2600}-\u{27BF}\u{1F1E6}-\u{1F1FF}\u200d\uFE0F]+$/u;
const REACTION_WORDS: ReadonlySet<string> = new Set([
"lgtm",
"+1",
"-1",
"👍",
"👎",
"ok",
"okay",
"ack",
"ty",
"thx",
"thanks",
"nice",
"cool",
"great",
"yep",
"yes",
"no",
"nope",
"same",
]);
export interface ShouldSkipInput {
commentBody: string;
commenterUsername?: string | null;
prState?: string | null;
parentBody?: string | null;
}
export interface ShouldSkipResult {
skip: boolean;
reason?: string;
}
export function shouldSkip(input: ShouldSkipInput): ShouldSkipResult {
const body = (input.commentBody || "").trim();
if (!body) return { skip: true, reason: "empty body" };
if (body.length < 10) return { skip: true, reason: "body too short" };
const username = input.commenterUsername || "";
if (username.endsWith("[bot]")) {
return { skip: true, reason: "bot author" };
}
if (EMOJI_RANGE.test(body)) {
return { skip: true, reason: "single emoji" };
}
const stripped = body.toLowerCase().replace(/[!.?\s]+$/g, "");
if (REACTION_WORDS.has(stripped)) {
return { skip: true, reason: "reaction word" };
}
const prState = (input.prState || "").toLowerCase();
if (prState === "closed" || prState === "merged") {
return { skip: true, reason: "pr not open" };
}
if (input.parentBody && input.parentBody.includes(AI_REPLY_MARKER)) {
return { skip: true, reason: "reply to ai comment" };
}
if (body.includes(AI_REPLY_MARKER)) {
return { skip: true, reason: "body contains ai marker" };
}
return { skip: false };
}
export interface CommentClassification {
actionable: boolean;
intent: "question" | "change_request" | "nit" | "praise" | "other";
touches_files: string[];
suggested_action: string;
confidence: number;
}
const FALLBACK_CLASSIFICATION: CommentClassification = {
actionable: false,
intent: "other",
touches_files: [],
suggested_action: "",
confidence: 0,
};
const ALLOWED_INTENTS: ReadonlyArray<CommentClassification["intent"]> = [
"question",
"change_request",
"nit",
"praise",
"other",
];
export const CONFIDENCE_THRESHOLD = 0.6;
async function classifyComment(
commentBody: string,
filePath: string | undefined,
lineNumber: number | undefined
): Promise<{ parsed: CommentClassification; inputTokens: number; outputTokens: number }> {
try {
const client = getAnthropic();
const message = await client.messages.create({
model: MODEL_HAIKU,
max_tokens: 512,
messages: [
{
role: "user",
content: `Classify this PR review comment. Respond ONLY with JSON:
{"actionable": true|false, "intent": "question|change_request|nit|praise|other", "touches_files": ["path1"], "suggested_action": "one sentence", "confidence": 0.0-1.0}
Comment${filePath ? ` on ${filePath}${lineNumber ? `:${lineNumber}` : ""}` : ""}:
"""
${commentBody.slice(0, 4000)}
"""
Rules:
- actionable=true only when the comment asks for or implies a concrete code change.
- intent: question = asks for info; change_request = wants code modified; nit = trivial style; praise = compliment only; other = anything else.
- confidence reflects certainty in the classification, not confidence a fix is possible.
- touches_files should only include paths the comment explicitly mentions or strongly implies. Omit if unclear.`,
},
],
});
const parsed = parseJsonResponse<CommentClassification>(extractText(message));
if (!parsed) return { parsed: FALLBACK_CLASSIFICATION, inputTokens: message.usage?.input_tokens ?? 0, outputTokens: message.usage?.output_tokens ?? 0 };
const intent = ALLOWED_INTENTS.includes(parsed.intent as never)
? parsed.intent
: "other";
const normalised: CommentClassification = {
actionable: !!parsed.actionable,
intent,
touches_files: Array.isArray(parsed.touches_files)
? parsed.touches_files.filter((s) => typeof s === "string").slice(0, 16)
: [],
suggested_action:
typeof parsed.suggested_action === "string"
? parsed.suggested_action.slice(0, 500)
: "",
confidence:
typeof parsed.confidence === "number" &&
parsed.confidence >= 0 &&
parsed.confidence <= 1
? parsed.confidence
: 0,
};
return {
parsed: normalised,
inputTokens: message.usage?.input_tokens ?? 0,
outputTokens: message.usage?.output_tokens ?? 0,
};
} catch (err) {
console.error("[review-response-agent] classify failed:", err);
return { parsed: FALLBACK_CLASSIFICATION, inputTokens: 0, outputTokens: 0 };
}
}
async function draftReply(
repoFullName: string,
prNumber: number,
commentBody: string,
classification: CommentClassification,
diffContext: string,
filePath: string | undefined,
lineNumber: number | undefined
): Promise<{ body: string; inputTokens: number; outputTokens: number }> {
try {
const client = getAnthropic();
const message = await client.messages.create({
model: MODEL_SONNET,
max_tokens: 1024,
messages: [
{
role: "user",
content: `You are the GlueCron review-response agent on PR #${prNumber} of ${repoFullName}.
A human reviewer left this comment${filePath ? ` on ${filePath}${lineNumber ? `:${lineNumber}` : ""}` : ""}:
"""
${commentBody.slice(0, 4000)}
"""
Classifier said: intent=${classification.intent}, suggested_action="${classification.suggested_action}".
Relevant diff excerpt (may be empty):
\`\`\`
${diffContext.slice(0, 6000)}
\`\`\`
Write a short Markdown reply that:
1. Acknowledges the comment.
2. Describes the change you WOULD make in prose (no actual patch — you cannot push commits in v1).
3. If a diff excerpt in \`\`\`suggestion\`\`\` blocks helps, include at most one, kept minimal.
4. Ends with exactly this sentence on its own line:
${AI_REPLY_MARKER}
Keep it under 200 words. Be specific; reference file paths where possible. Do not apologise unless the reviewer found a real bug.`,
},
],
});
let text = extractText(message).trim();
if (!text.includes(AI_REPLY_MARKER)) {
text = `${text}\n\n${AI_REPLY_MARKER}`;
}
return {
body: text,
inputTokens: message.usage?.input_tokens ?? 0,
outputTokens: message.usage?.output_tokens ?? 0,
};
} catch (err) {
console.error("[review-response-agent] draft failed:", err);
return { body: "", inputTokens: 0, outputTokens: 0 };
}
}
function acknowledgementBody(intent: CommentClassification["intent"]): string {
const lead =
intent === "praise"
? "Thanks for the feedback!"
: intent === "nit"
? "Noted — stylistic call-out."
: intent === "question"
? "Noted — this looks informational."
: "Noted — no code change required.";
return `${lead} No change required from my side.\n\n${AI_REPLY_MARKER}`;
}
async function lookupContext(args: RunReviewResponseAgentArgs): Promise<{
commenterUsername: string | null;
prState: string | null;
prHeadBranch: string | null;
repoOwnerUsername: string | null;
repoName: string | null;
parentBody: string | null;
botAuthorId: string | null;
} | null> {
try {
const [pr] = await db
.select()
.from(pullRequests)
.where(eq(pullRequests.id, args.prId))
.limit(1);
if (!pr) return null;
const [repo] = await db
.select()
.from(repositories)
.where(eq(repositories.id, args.repositoryId))
.limit(1);
let ownerUsername: string | null = null;
let repoName: string | null = null;
if (repo) {
repoName = repo.name;
const [owner] = await db
.select()
.from(users)
.where(eq(users.id, repo.ownerId))
.limit(1);
ownerUsername = owner?.username ?? null;
}
let commenterUsername: string | null = null;
if (args.commenterId) {
const [commenter] = await db
.select()
.from(users)
.where(eq(users.id, args.commenterId))
.limit(1);
commenterUsername = commenter?.username ?? null;
}
let parentBody: string | null = null;
try {
const [parent] = await db
.select()
.from(prComments)
.where(eq(prComments.id, args.commentId))
.limit(1);
parentBody = parent?.body ?? null;
} catch {
parentBody = null;
}
let botAuthorId: string | null = null;
if (repo) botAuthorId = repo.ownerId;
return {
commenterUsername,
prState: pr.state,
prHeadBranch: pr.headBranch,
repoOwnerUsername: ownerUsername,
repoName,
parentBody,
botAuthorId,
};
} catch (err) {
console.error("[review-response-agent] lookupContext:", err);
return null;
}
}
async function fetchDiffContext(
ownerUsername: string | null,
repoName: string | null,
headBranch: string | null
): Promise<string> {
if (!ownerUsername || !repoName || !headBranch) return "";
try {
const defaultBranch =
(await getDefaultBranch(ownerUsername, repoName).catch(() => null)) ||
"main";
const headSha = headBranch;
const { raw } = await getDiff(ownerUsername, repoName, headSha).catch(
() => ({ raw: "", files: [] as unknown[] })
);
if (raw && raw.length > 0) return raw;
const compare = await getDiff(ownerUsername, repoName, defaultBranch).catch(
() => ({ raw: "" })
);
return compare.raw || "";
} catch {
return "";
}
}
export async function runReviewResponseAgent(
args: RunReviewResponseAgentArgs
): Promise<RunReviewResponseAgentResult> {
try {
const preSkip = shouldSkip({
commentBody: args.commentBody,
commenterUsername: null,
prState: null,
parentBody: null,
});
if (preSkip.skip) {
return { skipped: true, skipReason: preSkip.reason };
}
const ctx = await lookupContext(args);
if (!ctx) {
return { skipped: true, skipReason: "context lookup failed" };
}
const fullSkip = shouldSkip({
commentBody: args.commentBody,
commenterUsername: ctx.commenterUsername,
prState: ctx.prState,
parentBody: ctx.parentBody,
});
if (fullSkip.skip) {
return { skipped: true, skipReason: fullSkip.reason };
}
const run = await startAgentRun({
repositoryId: args.repositoryId,
kind: "review_response",
trigger: "pr.review_comment",
triggerRef: `${args.prNumber}:${args.commentId}`,
});
if (!run) {
return { skipped: true, skipReason: "could not start run" };
}
await executeAgentRun(run.id, async (execCtx): Promise<AgentExecutorResult> => {
await execCtx.appendLog(
`classifying comment ${args.commentId} on PR #${args.prNumber}`
);
if (!isAiAvailable()) {
await execCtx.appendLog("AI backend unavailable; skipping reply");
return {
ok: true,
summary: "AI backend unavailable; skipped reply",
};
}
const { parsed: classification, inputTokens: cIn, outputTokens: cOut } =
await classifyComment(
args.commentBody,
args.filePath,
args.lineNumber
);
await execCtx.recordCost(cIn, cOut, 0);
await execCtx.appendLog(
`classified: actionable=${classification.actionable} intent=${classification.intent} confidence=${classification.confidence}`
);
let replyBody: string;
if (
classification.actionable &&
classification.confidence >= CONFIDENCE_THRESHOLD
) {
const repoFullName =
ctx.repoOwnerUsername && ctx.repoName
? `${ctx.repoOwnerUsername}/${ctx.repoName}`
: "repository";
const diffContext = await fetchDiffContext(
ctx.repoOwnerUsername,
ctx.repoName,
ctx.prHeadBranch
);
const draft = await draftReply(
repoFullName,
args.prNumber,
args.commentBody,
classification,
diffContext,
args.filePath,
args.lineNumber
);
await execCtx.recordCost(draft.inputTokens, draft.outputTokens, 0);
if (!draft.body) {
replyBody = acknowledgementBody(classification.intent);
await execCtx.appendLog("draft failed; falling back to ack");
} else {
replyBody = draft.body;
}
} else {
replyBody = acknowledgementBody(classification.intent);
}
if (!ctx.botAuthorId) {
await execCtx.appendLog("no bot author resolvable; refusing to post");
return {
ok: false,
summary: "no author id available for reply",
};
}
try {
await db.insert(prComments).values({
pullRequestId: args.prId,
authorId: ctx.botAuthorId,
body: replyBody,
isAiReview: true,
filePath: args.filePath ?? null,
lineNumber: args.lineNumber ?? null,
});
} catch (err) {
await execCtx.appendLog(
`insert failed: ${(err as Error).message || "unknown"}`
);
return {
ok: false,
summary: "reply insert failed",
};
}
return {
ok: true,
summary: `replied (${classification.intent})`,
};
});
return { skipped: false, runId: run.id };
} catch (err) {
console.error("[review-response-agent] unexpected:", err);
return { skipped: true, skipReason: "unexpected error" };
}
}
export const __internal = {
FALLBACK_CLASSIFICATION,
acknowledgementBody,
};
|