Ask HN: How is your org managing PR review load as AI multiplies code output?
21–28 of 28 posts
Re: Ask HN: How is your org managing PR review load as AI multiplies code output?
#22Im working on karinja.ai which I lets teammates share live agent sessions backed by cloud sandboxes, that way you can centralized your agent config within a team so that the output is consistent and results can be previewed without even leaving your browser.
Re: Ask HN: How is your org managing PR review load as AI multiplies code output?
#23Perhaps a summary is sent out to the team at the end of the day for all auto-approved PRs so that developers can review them quickly to stay up to date on the codebase.
AFAIK Github doesn't support anything like this today (maybe through actions?) so your company may need to use a tool that evolves in this way.
Re: Ask HN: How is your org managing PR review load as AI multiplies code output?
#24Re: Ask HN: How is your org managing PR review load as AI multiplies code output?
#25We hit this too, and what helped wasn't more reviewers. We pushed the trivial checks (style, obvious bugs, secret and other deterministic scanning) onto automation so humans only look at intent and design, and the trap to avoid is letting AI both write and "review" the code, since you want the review signal independent of what generated it. There is another way we are experimenting these days too - building a gauge o…
This is the clearest actionable thing I’ve heard of so far, so it would be good to understand the specifics
Re: Ask HN: How is your org managing PR review load as AI multiplies code output?
#26I think we'll need to evolve code review. Rather than simple rules like every review must have 1 or 2 approvals, we should be moving towards dynamic rules for when a human needs to be in the loop. For example, an agent can output a risk score for how risky the change is. Teams can then configure to auto approve PRs for the risk level they are comfortable with. Any risk level above that goes to a human reviewer. The a…