
Open Code Review
- 3k installs
- 18.8k repo stars
- Updated August 4, 2026
- alibaba/open-code-review
open-code-review is an agent skill that >.
About
This Codex plugin skill intentionally mirrors the canonical skill at skills open code review SKILL md Keep both files synchronized when updating OCR agent instructions a symlink is avoided because plugin installs may only materialize the plugin subtree A skill for invoking open code review https github com alibaba open code review ocr an open source AI code review CLI that reads Git diffs and generates structured line level review comments Before starting a review verify the environment bash 1 Check the CLI is installed which ocr echo NOT INSTALLED 2 Verify LLM connectivity ocr llm test The open code review agent skill provides documented workflows prerequisites triggers and safety guidance from its SKILL md source Agents load it when user requests match the description and follow step by step instructions without inventing capabilities It integrates with standard agent tooling for the tasks inputs outputs and failure modes described in the repository documentation
- Performs AI-powered code review on Git changes using the `ocr` CLI from
- alibaba/open-code-review. Use when the user asks to review code, review
- a pull request, review staged/unstaged changes, review a commit, or
- Follow open-code-review SKILL.md steps and documented constraints.
- Follow open-code-review SKILL.md steps and documented constraints.
Open Code Review by the numbers
- 3,036 all-time installs (skills.sh)
- +362 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #260 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
open-code-review capabilities & compatibility
- Capabilities
- performs ai powered code review on git changes u · alibaba/open code review. use when the user asks · a pull request, review staged/unstaged changes, · follow open code review skill.md steps and docum
- Use cases
- orchestration
What open-code-review says it does
Performs AI-powered code review on Git changes using the `ocr` CLI from
alibaba/open-code-review. Use when the user asks to review code, review
a pull request, review staged/unstaged changes, review a commit, or
npx skills add https://github.com/alibaba/open-code-review --skill open-code-reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3k |
|---|---|
| repo stars | ★ 18.8k |
| Last updated | August 4, 2026 |
| Repository | alibaba/open-code-review ↗ |
When should an agent use open-code-review and what problem does it solve?
>
Who is it for?
Developers invoking open-code-review as documented in the skill source.
Skip if: Skip when requirements fall outside open-code-review documented scope.
When should I use this skill?
>
What you get
Outputs aligned with the open-code-review SKILL.md workflow and stated deliverables.
- Line-level review comments
- Applied fix patches
By the numbers
- Licensed under Apache-2.0
- Published as npm package @alibaba-group/open-code-review
Files
Open Code Review
This Codex plugin skill intentionally mirrors the canonical skill at skills/open-code-review/SKILL.md. Keep both files synchronized when updating OCR agent instructions; a symlink is avoided because plugin installs may only materialize the plugin subtree.
A skill for invoking open-code-review (ocr) — an open-source AI code review CLI that reads Git diffs and generates structured, line-level review comments.
Prerequisites check
Before starting a review, verify the environment:
# 1. Check the CLI is installed
which ocr || echo "NOT INSTALLED"
# 2. Verify LLM connectivity
ocr llm testIf ocr is not installed, install it first:
npm install -g @alibaba-group/open-code-reviewIf ocr llm test fails, the user must configure an LLM. Guide them with one of these options:
Option A — Environment variables (highest priority, recommended for CI):
export OCR_LLM_URL=https://api.anthropic.com/v1/messages
export OCR_LLM_TOKEN=<api-key>
export OCR_LLM_MODEL=claude-opus-4-6
export OCR_USE_ANTHROPIC=trueOption B — Persistent config:
ocr config set llm.url https://api.anthropic.com/v1/messages
ocr config set llm.auth_token <api-key>
ocr config set llm.model claude-opus-4-6
ocr config set llm.use_anthropic trueStop here and ask the user to provide credentials — never invent or hardcode API keys.
Workflow
Step 1: Gather Business Context
Analyze the review target (commits, branch, or changes) to extract concise business context. Pass this context via --background to improve review quality.
Step 2: Run Code Review
Run the OCR command with appropriate flags. Always pass business context via `--background` when available:
ocr review --audience agent --background "business context here" [user-args]Argument handling:
- Background context (RECOMMENDED): use
--background "context"or-b "context"to provide business context for better review quality - Default (no user arguments): reviews staged, unstaged, and untracked changes (workspace mode)
- Specific commit: use
--commitor-cto review a single commit against its parent - Branch comparison: use
--from <ref>and--to <ref>to review diff between two refs - Timeout: default timeout is 10 minutes per file; adjust with
--timeout <minutes> - Concurrency: default concurrency is 8 file workers; reduce with
--concurrency <n>if rate limits are hit - Preview mode: use
--previewor-pto preview which files will be reviewed without running the LLM - Installation: if
ocrcommand is not found, install it by runningnpm i -g @alibaba-group/open-code-review
Common invocation patterns:
| User says | Command to run |
|---|---|
| "review my changes" / "review the working copy" | ocr review --audience agent -b "context" |
| "review this PR" / "review feature branch" | ocr review --audience agent -b "context" --from main --to <branch> |
| "review commit abc123" | ocr review --audience agent -b "context" --commit abc123 |
| "what would be reviewed?" (dry-run) | ocr review --preview |
Output mode:
- Always use
--audience agentto suppress progress UI and emit only the final summary
Step 3: Classify and Report
For each comment from the review output, classify by priority and report all issues to the user:
- High: Obvious bugs, security issues, clear mistakes, or well-founded suggestions with precise fix proposals
- Medium: Reasonable concerns but context-dependent, style/performance suggestions, or fixes that require manual implementation
- Low: Likely false positives, lacking sufficient context, nitpicks, or meaningless suggestions
Report all comments grouped by priority level.
Step 4: Fix
Before applying fixes, check whether the user requested automatic fixes:
- If the user explicitly requested "review and fix" or similar, proceed with automatic fixes
- If the user only requested "review" without fix intent, ask for permission before applying any changes
When fixing issues and suggestions:
- Focus on High and Medium priority items
- Apply fixes directly to the code when safe and well-defined
- For complex fixes requiring manual intervention, clearly describe what needs to be done
- Always verify fixes with the user before committing
Output Format
Each comment contains:
path: File pathcontent: Review comment textstart_line/end_line: Line range (both 0 means positioning failed)suggestion_code: Optional fix suggestionexisting_code: Optional original code snippetthinking: Optional LLM reasoning process
After filtering comments by priority, present results using this template:
## Code Review Results
**Files reviewed**: N
**Issues found**: X high priority / Y medium priority
### High Priority
- **`path/to/file.java:42`** — Brief description
> Recommendation: How to fix
### Medium Priority
- **`path/to/file.ts:88`** — Brief description
> Recommendation: How to fix (if applicable)If the review found no issues after filtering, simply state: "Review complete — no issues found in N files."
Priority classification:
- High: Obvious bugs, security issues, clear mistakes, or well-founded suggestions with precise fix proposals
- Medium: Reasonable concerns but context-dependent, style/performance suggestions, or fixes that require manual implementation
- Low: Discarded silently (likely false positives, lacking context, nitpicks, or meaningless suggestions)
Handling mispositioned comments:
When start_line and end_line are both 0, the comment failed to locate the exact position in the file. In such cases:
1. Read the comment content to understand the issue 2. Examine the target file mentioned in the comment 3. Identify the relevant code section based on the comment's context 4. Apply the fix or suggestion to the correct location
Custom Review Rules
If the user wants project-specific rules, OCR resolves them in this priority order:
1. --rule <path> flag (highest) 2. <repo>/.opencodereview/rule.json 3. ~/.opencodereview/rule.json 4. Built-in system defaults (lowest)
By default, the first matching user rule replaces the built-in system rule. Set merge_system_rule: true on a rule entry when the matched system rule and user rule should both be included.
Rule file format:
{
"rules": [
{
"path": "**/*.java",
"rule": "All new methods must validate required parameters for null",
"merge_system_rule": true
},
{
"path": "**/*mapper*.xml",
"rule": "Check SQL for injection risks and missing closing tags"
}
]
}To preview which rule applies to a file before reviewing:
ocr rules check src/main/java/com/example/Foo.javaGotchas
- LLM must be configured first —
ocr reviewwill fail loudly if no LLM is reachable. Always runocr llm testbefore the first review. - Working directory matters —
ocr reviewoperates on the Git repo at the current directory. Use--repo /path/to/repoto run from elsewhere. - Untracked files are reviewed in workspace mode — running bare
ocr reviewincludes staged, unstaged, and untracked changes. Stage selectively if you want narrower scope. - Large diffs may hit token limits — files with very large diffs may be truncated. The default
MAX_TOKENSis 58888 per request. - Plan phase triggers at 50 lines — diffs exceeding 50 changed lines run an extra risk-analysis phase before main review. This adds latency but improves quality.
- Don't pass `--audience human` — it streams progress UI that pollutes output. Always use
--audience agent. - Comment language follows config — set
languageconfig toEnglishorChinese(default: Chinese) to control review comment language.
Validation
After the review completes, verify success by checking:
1. The command exited with code 0 2. Comments were generated (or "No comments generated" message appears) 3. Warnings (if any) are displayed in stderr
If errors occurred, check the stderr warnings for details about which files failed and why.
References
- Full docs: https://github.com/alibaba/open-code-review
- NPM package: https://www.npmjs.com/package/@alibaba-group/open-code-review
- Issue tracker: https://github.com/alibaba/open-code-review/issues
Related skills
How it compares
Choose open-code-review when you need CLI-driven line-level Git diff reviews with optional auto-fix inside the agent, not generic lint-only checks.
FAQ
What is open-code-review?
>
When should I use open-code-review?
>
Is open-code-review safe to install?
Review the Security Audits panel on this page before production use.