@Smartpigai: Previously the official AI code review assistant within Alibaba Group, it has served tens of thousands of developers and identified millions of code defects over the past two years. Now it is open-sourced: Open Code Review. It is not about having AI 'casually glance at a diff', but about engineering AI Code Review. It…

X AI KOLs Timeline Tools

Summary

Alibaba has open-sourced its internal AI code review assistant Open Code Review, an engineered CLI tool for code review that reads Git diffs and generates structured review comments with line-level annotations.

Originally the official AI code review assistant within Alibaba Group, it has served tens of thousands of developers and identified millions of code defects over the past two years. Now it is open-sourced: Open Code Review. It is not about having AI 'just glance at a diff', but about engineering AI Code Review. It can read Git diffs, analyze code changes with context, and generate structured review comments with line-level locations. For developers: self-check before submitting PRs, reducing rework. For reviewers: spend less time on low-level issues and focus on architecture and business logic. For teams: it can accumulate rules and integrate with GitHub Actions / GitLab CI. In a word: It does not replace human review, but makes team code review more efficient, more consistent, and more valuable. GitHub: https://github.com/alibaba/open-code-review…
Original Article
View Cached Full Text

Cached at: 06/14/26, 07:38 AM

The open source AI code review agent.

English | Simplified Chinese | Japanese | Korean | Russian

Similar Articles

Open Code Review – An AI-powered code review CLI tool

Hacker News Top

Alibaba has open-sourced Open Code Review, an AI-powered CLI tool for code review that combines deterministic engineering with LLM agent capabilities. Originally an internal tool serving tens of thousands of developers and identifying millions of defects, it reads Git diffs and produces structured, line-level review comments using a configurable model endpoint.

@thinkszyg: The AI Coding Speed Paradox: Coding 48% Faster, Review 6x Slower. How to Rebuild the Review Process? SD Times Analyzes Data from 250,000 Developers: AI Boosts Coding Speed by 48-58%, But AI-Generated PRs Get Stuck in Review for 4-6x Longer…

X AI KOLs Timeline

The article points out that AI coding increases coding speed by 48-58%, but code review time increases by 4-6x, and security vulnerabilities also rise. It proposes a three-step plan to rebuild the review process: AI pre-review, focusing on architectural decisions, and using Microsoft's open-source ASSERT framework for behavioral verification.

@laobaishare: GitHub steps in directly — from now on, no AI will write code blindly anymore. --- The newly released Spec Kit has soared to 95K stars in just a few days. The core idea is simple: make AI clearly specify what to do before touching any code. No more throwing a vague prompt and praying the agent doesn't blow up your project.

X AI KOLs Timeline

GitHub has released Spec Kit, a tool that forces AI to generate structured specifications before writing code, including understanding requirements, asking for missing details, organizing the project, and more. It significantly reduces AI-generated error-prone code and is compatible with 25+ AI agents.

@VincentLogic: AI coding assistants scan the entire project every time they modify code, and the token consumption breaks my heart. After installing CodeGraph, it no longer fumbles around like a headless fly using grep to search files. It first builds a local index graph, organizing function definitions, variable references, and call relationships. When AI needs to work, it directly queries…

X AI KOLs Timeline

CodeGraph reduces the number of times an AI coding assistant scans the entire project by building a local index graph, significantly lowering token consumption and improving speed, compatible with VS Code, Claude Code, and Cursor.