You should use AI for reviewing code especially when the diff is huge – Simian Words
You should use AI for reviewing code especially when the diff is huge
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 reviewer<br>You 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?<br>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.
Caveats<br>This 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.