Skip to content
HN On Hacker News ↗

You should use AI for reviewing code especially when the diff is huge

▲ 7 points 8 comments by simianwords 3w ago HN discussion ↗

Pangram verdict · v3.3

We believe that this document is fully human-written

0 %

AI likelihood · overall

Human
100% human-written 0% AI-generated
SEGMENTS · HUMAN 1 of 1
SEGMENTS · AI 0 of 1
WORD COUNT 282
PEAK AI % 0% · §1
Analyzed
Jun 22
backend: pangram/v3.3
Segments scanned
1 windows
avg 282 words each
Distribution
100 / 0%
human / AI fraction
Verdict
Human
Pangram v3.3

Article text · 282 words · 1 segments analyzed

Human AI-generated
§1 Human · 0%

Simian Words Home Blog

22 Jun, 2026

I often hear that AI is resulting in 10k LOC reviews and this is creating a bottleneck. I don't think you should waste time reviewing every single line of code in here and just use AI to review it! What you contribute as a reviewerYou need to know what you contribute as a reviewer. As a reviewer, you contribute your Out Of Distribution knowledge that the author or the LLM might not have Its a mistake thinking you can outsmart an LLM into nitpicking few lines of code here and there. This is not worth your time because LLM's have far surpassed these kind of issues. Lets remember that these LLM's are now catching high severity vulnerabilities -- your line by line reviews have no place here. What kind of knowledge can you bring in as the reviewer?What you bring is the knowledge that the author nor the LLM doesn't know. Examples

That meeting you had last week with the architect where you discussed using service_A getting deprecated? The author doesn't know this. You also probably have some general principles in your codebase - don't add fields to the main huge object or don't add metrics in this particular way. These are the things you bring to the review. Some high level design smells that only you know as the codebase expert

The way I use AI for reviews is to point AI to the change and contribute my Out Of Distribution knowledge in terms of prompts and questions. CaveatsThis workflow works in places where each line of code is not sacred. There are places where each line may be sacred, like in embedded systems.