Alibaba just open-sourced the AI code reviewer it ran internally for two years. It’s a CLI tool that reads your Git diff and posts line-level review comments — the kind of “you left a null pointer on line 47” feedback you’d expect from a senior engineer, not a linter. GitHub trending picked it up and it crossed 11,000 stars in a single day.
Why the hybrid architecture matters
Most AI reviewers either follow rigid rules or hand everything to an LLM and hope. Open Code Review splits the job: a deterministic pipeline handles the steps that can’t go wrong, and an LLM agent handles the parts that need actual judgment. The agent reads full files, searches the codebase, and checks other changed files for context — so it catches problems the diff alone hides. It ships with a ruleset tuned on real production incidents: null pointers, thread-safety, XSS, SQL injection. Alibaba says it’s flagged millions of defects across tens of thousands of developers.
API and setup
It’s OpenAI- and Anthropic-compatible, so you point it at whatever model you want. Drop it into CI to auto-review pull requests, or run it locally before you push. No lock-in to a proprietary backend — that’s the whole pitch.
You Might Also Like
- Anthropic Just Launched Code Review in Claude Code and 54 of prs now get Real Feedback
- Addy Osmani Open Sources Agent Skills 19 Workflows That Make ai Agents Code Like Google Engineers
- Deepseek tui Tops Github Trending a Claude Code Clone Wired to Deepseeks api
- Zcode Zhipu z ai glm 5 2 Coding Agent hit hns 1 Spot Chinas Open Answer to Claude Code
- Alibaba Bans Claude Code for all Employees the Backdoor Fight With Anthropic Escalates

Leave a comment