Live data from Hacker News

Ask HN: Does a human still review your code?

news.ycombinator.com

11–20 of 32 posts

Re: Ask HN: Does a human still review your code?

#11
Not a code specific review - claude catches more than humans do.

But in cases where context lives in peoples heads, its hard for ai to know whats going on snd whats the main goal of this code chanhe.

if the context is given (or documented somewhere claude has access to) + context of company is not too big ti consume it, there is no use in human review imo.

Re: Ask HN: Does a human still review your code?

#16
post #5
post #2

I wonder how codebases for important products (not demos or short-living ones) end up without anyone reviewing the code. Some claim engineers should become more of "architects" and "designers", but not coders/reviewers anymore. Wish to hear people's stories, if much documentation and reviewing from the high-level only is enough to keep the project from becoming a failure

If someone’s best practice,optimization or security check is that important, automate it. Automation is more scalable and consistent . It would make more sense to me to build purpose built agents to look for any patterns that matter. Yes, humans are needed to sanity check and design the agents and rules. Combine that with a well designed build and test harness , human code review seems to me to be obsolete.

[dead]

Re: Ask HN: Does a human still review your code?

#17
Before coding agents, people generated code that was reviewable. Now, people generate entire features or 5K+ lines of changes in a single PR, fully introducing new functionality. We can’t defend ourselves against this and make production slow. But the only way forward is to start relying more on AI-based reviews.

Here’s the interesting part: each PR gets reviewed by more than 3 people, each from their own perspective. Based on the questions and the affected paths, the reviewer directs the agent to focus on different points. Someone who is already familiar with the codebase can also guide the agent in the right direction.

Recently, we also started automating UI reviews. The agent runs all the services, verifies the feature through the UI, takes screenshots, and uploads them directly to the GitHub PR. We call this UI Review. + Test coverage also improtant.

Re: Ask HN: Does a human still review your code?

#19
It depends. Since I started coding with AI, I rarely review the code for my personal projects — I only run the code-review skill on critical features. But for internal company projects, we still run a strict code review tool, SonarQube, at build/release time to check code quality and security.

Re: Ask HN: Does a human still review your code?

#20
Same as most others here, I think it depends so much on your use case.

The speed you're as able to move at with no to lightweight manual code reviews is just so much higher, but there are cases where broken code could mess up critical prod systems so I don't see how you'd get rid of human code reviews there just yet.

For personal usage I've found quick DeepSeek flash reviews a massive boon to finding obvious bugs though.

Post reply on HN