Great project! I’ve build something similar, not very clean and polished, but focussed around deterministic orchestration of multiple agents via typescript, because a coordinating agent was notoriously bad at things such as fetching relevant tickets and other context. One thing I struggle with so far, though, are the actual instructions for the review themselves. They are either too vague, leading to superficial or o…
Show HN: adamsreview – better multi-agent PR reviews for Claude Code
61–70 of 71 posts
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#62Earlier quoted context omitted.
Yes, being comprehensive, so early or blatant cheapo findings do not distract from other ones. That's important for base results. Splitting in both file and task is (currently) important. Additionally, we run in a loop until it stops finding things, and as part of that, do test amplification when it does find any. We regularly see 3-8 rounds yielding valid results. IMO half the value is customization to your repo, so…
How do you prevent it from increasing scope? That's the main issue I've found from running loops like this. Each loop has ~7 agents, say, looking through different lenses (security, UX, performance, etc.). Each one notes a few issues, each issue gets fixed, you do 5 to 8 loops, as you say. Each individual item that gets fixed looks minor but when you add it all up at the end you've increased PR size and scope signifi…
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#63"I pay Claude, to use Claude, to write instructions for Claude, to review code from Claude" Have we all just given up?
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#64Does anyone have an open PR on a public repo? I'll run this against your PR for you with my CC credits as a sort-of benchmark! Send me your PR link :) I'm going to create one on one of my other repos meanwhile and add a link to the review when it's ready.
Quite a huge one, but here's one :) https://github.com/Vija02/TheOpenPresenter/pull/170
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#65[flagged]
It’s all given to you in a structured file, in your chat, and as a nicely formatted PR comment.
Still up to the human to decide whether and when to merge based on the output!
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#66Earlier quoted context omitted.
That's a great idea. I had trouble finding anything like this, a benchmark made for (AI) code reviewers. I had expected to find something like an eval harness available on GitHub, but couldn't find it. Any suggestions? Or maybe we/I/someone should build something like this? I suppose one challenge is that if it's going to be publicly available, it would also be easy to cheat, but still seems it would be useful if peo…
https://www.codereviewbench.com/ https://codereview.withmartian.com/
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#67Does anyone have an open PR on a public repo? I'll run this against your PR for you with my CC credits as a sort-of benchmark! Send me your PR link :) I'm going to create one on one of my other repos meanwhile and add a link to the review when it's ready.
Quite a huge one, but here's one :) https://github.com/Vija02/TheOpenPresenter/pull/170
https://github.com/Vija02/TheOpenPresenter/pull/170#issuecom...
This was claude-only, no codex / --ensemble mode. It ran against the branch's base, which is 1 behind main.
Would love your feedback when you have the chance!
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#68[flagged]
Well, it doesn’t give you an opinion on whether you should merge or not. It gives you a list of issues along with details about those issues, such as fix hints, and whether you need human attention before fixing. It’s all given to you in a structured file, in your chat, and as a nicely formatted PR comment. Still up to the human to decide whether and when to merge based on the output!
Re: Show HN: adamsreview – better multi-agent PR reviews for Claude Code
#69Earlier quoted context omitted.
On small PRs (small features / changes ~hundreds to thousands of lines), I'd say around 500,000 total tokens. On large PRs (new feature sets for apps ~10,000-30,000 lines), around 2-3 million total tokens. By the way, I should have mentioned in my original post, adamsreview counts tokens used by sub-agents across the stages, and tells you at the end of each stage the total used so far.
Since when are thousands of lines of code changes "a small PR"?