Live data from Hacker News

Ask HN: What tools are you using for AI-assisted code review?

news.ycombinator.com

41–50 of 50 posts

Re: Ask HN: What tools are you using for AI-assisted code review?

#47
i've hoped on to many tools but based on working with all of those tools , o mostly liked this raptor mini(preview) model form vs code , which is very good from my perspective . i gave the same prompts to claude , raptor , kimi and a bunch of others , based on the comparison in speed , quility raptor takes the first place , you can even see the thinking of it not like claude (you cant see what it's thinking ) .

Re: Ask HN: What tools are you using for AI-assisted code review?

#48
I use my own tool (released as open source "StrangeDaysTech/straymark"), which takes blocks of related implementation tasks, builds a comprehensive prompt with auditing instructions (comparing intent against implementation), then I run agents from three different models to perform the audits and generate reports. These reports are then analyzed by the main agent to rule out hallucinations or misinterpretations of intent, and finally, a remediation plan is created. This tool can perform this task fragmentation because it's part of its cognitive governance function. Its operation is somewhat complex, but these auditable work units have a coherent structure within the overall project thanks to a knowledge graph that is built from the early design phases through to implementation.

Re: Ask HN: What tools are you using for AI-assisted code review?

#49
Co-creator of Mira [1] here.

This is exactly what we built Mira for. It's self-hosted, bring-your-own-model/BYOK, and most importantly, open source.

You point it at your own API keys (e.g. OpenRouter or a local model) so nothing leaves your infra, and it runs as a code reviewer on PRs.

It's also ridiculously quick at reviewing (benchmarks at ~77s) because your PRs aren't sitting in a queue on a cloud somewhere (alternatives are > 5 minutes)

We're working really closely with our users to build the best possible code reviewer. Feedback and contributions are highly encouraged.

[1] https://github.com/miracodeai/mira

Re: Ask HN: What tools are you using for AI-assisted code review?

#50
post #23
post #4

Besides local review via codex and Claude code, we are using GitHub Copilot with custom instructions. We just assign it as a reviewer in GitHub and a couple minutes later, the review is done. It raises a lot of issues which are valid and which I never had found. https://docs.github.com/en/copilot/tutorials/customize-code-...

what custom instructions did you give it? standard stuff about your practices?

Exactly
Post reply on HN