At a kill s@@s hackathon at work, I was able to build something that uses a node image installs claude code runs a /review-like command puts inline comments to PR deletes old comments when rerunning OCR seems cool, but overkill, and I'm definitely not using Code Rabbit after their CEO was on here acting snobbish a while back. Point being AI code review in Git** itself isn't hard to do and can add a lot of value quick…
Nothing against coderabbit or SaaS specifically, but this was one of the reasons I stopped using it https://kudelskisecurity.com/research/how-we-exploited-coder... It's very easy to build a basic code review tool. It's hard to build one that developers won't ask you to turn off because of false positives (or one that will miss your next escaped bug) I think if all the tool does is run a claude code level /review skil…
Open Code Review – An AI-powered code review CLI tool
31–40 of 89 posts
Re: Open Code Review – An AI-powered code review CLI tool
#32Ran it on a subset of 10 of the 50 PRs in this benchmark https://codereview.withmartian.com - very good recall (~74%, e.g. found a lot of the golden issues) - not so good precision (~12%, e.g. lots of false positives) - the precision causes the F1 to tank (~20%, if this stays the same on the full 50 sample it would puts it almost last, even less than Kilo+Grok)
False positives are easy to ignore.
Re: Open Code Review – An AI-powered code review CLI tool
#33If you've codex what does it add over codex's default app? I am confused. Can't you simply ask codex in another tab to just do a code review?
We built something similar, it looks for new PRs where the bot is added and does reviews. Makes the code more tuned toward similar rules. I can't assume that a developer run a code review tool himself (just as I don't assume he/she run a build - so we run builds also).
It is just another perspective for code review, besides human. Unfortunately it uses a lot of tokens, and considering that Anthropic, OpenAI and Github Copilot all moved to token based pricing, it is quite a money burner.
Re: Open Code Review – An AI-powered code review CLI tool
#34If you've codex what does it add over codex's default app? I am confused. Can't you simply ask codex in another tab to just do a code review?
> Can't you simply ask codex in another tab to just do a code review? You are likely to get better results if you do not use the same model for review that wrote the code. I typically use Opus for code editing and GPT 5.5 for peer review using an automation with skills. Training set is different between models. If there are gaps in coverage in one model, you want a different model reviewing the work. The second model…
Or if you make it "be a security engineer" with particular focus points.
Or make it a grammar nazi, it will find way more typos than without such focus.
Of course all of those "focuses" needs to be in a separate context (agent/subagent) to make it work.
Re: Open Code Review – An AI-powered code review CLI tool
#35Re: Open Code Review – An AI-powered code review CLI tool
#36Ran it on a subset of 10 of the 50 PRs in this benchmark https://codereview.withmartian.com - very good recall (~74%, e.g. found a lot of the golden issues) - not so good precision (~12%, e.g. lots of false positives) - the precision causes the F1 to tank (~20%, if this stays the same on the full 50 sample it would puts it almost last, even less than Kilo+Grok)
I would say that recall is the most important metric here though. I'd want it to catch all the issues. False positives are easy to ignore.
Re: Open Code Review – An AI-powered code review CLI tool
#37thinking about it, it would be funny to first run alibaba's tool and then run parley after.
posted it here a few days ago: https://news.ycombinator.com/item?id=48369782 i guess with AI there are too many Show HN now, and i never got any type of feedback.
Re: Open Code Review – An AI-powered code review CLI tool
#38i did something like this, but somewhat in reverse. you are the one that reviews the code and you instruct AI what to do through code review comments: https://parley.cloudflavor.io . thinking about it, it would be funny to first run alibaba's tool and then run parley after. posted it here a few days ago: https://news.ycombinator.com/item?id=48369782 i guess with AI there are too many Show HN now, and i never got any…
Re: Open Code Review – An AI-powered code review CLI tool
#39Re: Open Code Review – An AI-powered code review CLI tool
#40Earlier quoted context omitted.
I would say that recall is the most important metric here though. I'd want it to catch all the issues. False positives are easy to ignore.
What, no they're not. You still need to analyze them to understand they are false positives. It's time wasted