Alibaba released an AI code review tool

Alibaba released an AI code review tool

Alibaba has released Open Code Review, an open-source AI code review CLI tool. It reads code changes and sends them to an LLM, then points out possible problems on exact lines. For solo makers, it can act like an extra reviewer before shipping code.

Key points

  • You can install it with npm and run it with the ocr command.
  • It can work with OpenAI and Anthropic-style model connections.
  • It tries to avoid missed files by choosing and grouping changed files automatically.
  • It includes rules for common bugs such as security issues, null errors, and thread-safety problems.

Quick term guide

code review
A check of code before it is shipped, usually to find mistakes or improvements.
open-source
Software whose code is shared publicly so others can inspect, use, or change it.
CLI
A way to run software by typing commands instead of clicking buttons.
LLM
An AI model that reads and writes text.
ping
The time (in milliseconds) it takes for a signal to travel from your device to another and back — lower means faster response.
npm
The standard tool for installing Node.js programs like Claude Code on most systems.
SEC
The U.S. agency that oversees public companies and stock market rules.
thread-safety
A way to avoid bugs when code runs several tasks at the same time.
Read original