AI code review that catches serious issues before they merge — powered by OrcaRouter.
Automatically review every pull request, post findings directly on the affected lines, and block serious issues from merging.
P0/P1 → ❌ Block · Findings → 💬 Comment · Clean → ✅ Pass
PR → Review → Merge Gate
│
P0/P1?
↓
BLOCK
Every push gets one review. Findings post on the affected lines, and P0/P1 blocks the merge.
You choose the model in OrcaRouter. OrcaCode handles the review.
- 🔍 Automatic review on every PR
- 💬 Inline findings on the affected lines
- 🛑 Merge gate for serious issues
- 🧠 Choose your own review model
- 🎯 Precision filtering to reduce false positives
- 🔒 OrcaRouter guardrails + security policies
- 🔄 Re-run anytime with
/orcacode-review
One command teaches your AI what OrcaCode Review is. Everything after that, you just ask for.
npx @orcarouter/code-reviewIt asks how you will use it — local review, the GitHub Action, or both — detects which coding agents you use, installs the matching skills, and stops. Then:
you: set up OrcaCode Review in this repo
Your agent writes the workflow, walks you through the API key, and sets the merge gate — asking only the questions that are actually yours to answer.
The same goes for everything else:
| Say | It does |
|---|---|
| "review my changes" | Reviews them locally, itself — see below |
| "why didn't the review run?" | Diagnoses the secret, the trigger, the base branch, the gate |
| "make OrcaCode Review block P0 only" | Retunes the merge policy |
| "remove OrcaCode Review from this repo" | Drops the required check first, then the workflow |
| "what can OrcaCode Review do?" | Explains itself |
Claude Code can install the skill as a plugin instead, which keeps it updated:
/plugin marketplace add Continuum-AI-Corp/orca-code-review
/plugin install orca-code-review
The same catalog the OrcaDub MCP server uses, so IDs and paths match across Orca products. Detected agents are pre-ticked; / filters the list. For CI or dotfiles, the same choices are flags (--mode, --scope, --platform, --yes) — --help lists them.
Prefer to wire it by hand? The manual steps are below.
Claude Code, Cursor, Codex, OpenCode, Windsurf, Cline, RooCode, Continue, GitHub Copilot, Gemini CLI, Amazon Q Developer, Qwen Code, Kilo Code, Auggie, Kimi Code, Kiro, Lingma, Junie, CodeBuddy Code, CoStrict, Crush, Factory Droid, iFlow, Pi, Qoder, Antigravity, Antigravity 2.0, Bob Shell, ForgeCode, Trae, Trae CN, ZCode, MimoCode, Hermes, OpenClaw, Command Code.
Two skills: orca-review for reviewing locally and orca-review-action for the GitHub Action. The installer asks which you want, or both. An existing identical skill is left unchanged; an existing different one is preserved unless you pass --force.
The CLI speaks English, Simplified Chinese, Japanese and Korean, picked from your locale (LC_ALL / LC_MESSAGES / LANG). The guided flow opens with a language screen; ORCACODE_LANG=zh pins it for good.
Traditional Chinese locales (zh-TW, zh-HK) fall back to English on purpose — the vocabulary diverges enough that serving Simplified reads worse than not translating at all.
Menus are arrow-key driven — ↑↓ to move, Enter to pick. Multi-select adds space to toggle, a/n for all/none, and / to filter (ctrl-u clears it), which is how you find one agent among 36 without scrolling. Terminals without raw mode fall back to typing a number.
Only prose is translated — flags, platform IDs, workflow inputs, and shell commands stay verbatim, because you still have to type them.
The Action pays a model in CI to review every PR. You can also run the same review, right now, in your terminal, with no Action, no OrcaRouter account, and no API key — because the model is the one your coding agent already has.
you: review my changes
Claude Code, Codex, Cursor, or any of the 36 platforms picks up the orca-review skill and becomes the reviewer. You say what to review; the skill handles the rest:
| Say | It reviews |
|---|---|
| "review my changes" | Uncommitted work if the tree is dirty, otherwise this branch against its base |
| "review this branch", "review that commit" | The range you named |
| "review PR 556" | That pull request — without checking it out. It is fetched into a private ref; your work tree stays exactly where it was. Fork PRs included |
| "is this safe to merge?" | Same, and the gate answers |
Behind the skill are two CLI commands your agent runs for you: review plan decides what is in scope — with the reasons for what is not — and hands the agent the per-language checklists, the P0–P3 rubric, and your repo's own AGENTS.md/CLAUDE.md conventions; review submit verifies every finding is filed on the right line, drops duplicates, applies the merge gate, and prints the report your agent relays to you. Nothing that decides what blocks is left to the model.
It is the same severity contract the Action enforces — the same rules/severity-instruction.md, the same position check, the same result shape. A P1 you find here is a P1 that would block there. That parity is the point: "it passed locally" has to mean something.
The file selection is the engine's, without the engine: the exclusion rules and per-language checklists from Open Code Review (Apache-2.0) ship inside this package, so a local review filters the same files CI would. Nothing extra to install.
Settings that should stick live in a committed .orcacode-review.json — which severities block, which language to report in, paths never to review, extra checklists for parts of the tree. You do not write it by hand: after your first review in a repo the agent offers to save the settings it just used, and later "from now on only block on P0 locally" or "never review docs/" edits the right key.
Scripting your own harness instead of using an agent? review plan --json and review submit --json are a stable, versioned contract; skills/orca-review/references/contract.md is the reference.
Go to OrcaRouter → Apps → OrcaCode Review and turn it on.
Configure your models, review mode, severity rules, merge policy, and other settings directly from the console.
Install OrcaCode Review from GitHub Marketplace →
Add the Action to your repository:
- uses: Continuum-AI-Corp/orca-code-review@v1
with:
orcarouter-api-key: ${{ secrets.ORCAROUTER_API_KEY }}Create or copy a key from OrcaRouter → API Keys.
Add it to your GitHub repository as:
ORCAROUTER_API_KEY
under Settings → Secrets and variables → Actions.
That's it.
OrcaCode automatically reviews new PRs and pushes, posts findings inline, and reports the merge gate.
| Severity | Meaning | Merge gate | Posted inline |
|---|---|---|---|
| P0 | Critical / blocker | ❌ Block | Always |
| P1 | High severity | ❌ Block | Always |
| P2 | Advisory | ✅ Pass | Per Report severities |
| P3 | Nit / style | ✅ Pass | Per Report severities |
Two independent settings, and the defaults above are the shipped ones:
- Merge policy decides what blocks.
- Report severities decides what gets posted on the diff.
A severity that blocks is always posted, whatever Report severities says — a failing check with nothing on the diff explaining it is worse than a noisy one. Narrowing Report severities never changes the gate, and the PR summary always counts every finding, so a muted P2 still shows up there.
Customize the rubric and both policies from OrcaRouter → Apps → OrcaCode Review.
Manage OrcaCode from OrcaRouter → Apps → OrcaCode Review:
- Model — choose your reviewer
- Review mode — every push, ready for review, or on demand
- Merge policy — choose which severities block
- Report severities — choose which severities post on the diff
- Exhaustive review — run additional passes over the same diff
- Quiet mode — keep P2 findings in the summary
- Custom rubric — define your own review rules
- Guardrails — add security and policy checks
Change your review strategy anytime. No GitHub workflow edits required.
Comment on any PR:
/orcacode-review
to request another review.
To make P0/P1 findings actually prevent merging:
GitHub → Settings → Branches / Rulesets → Require status checks to pass
Add the review check as required.
OrcaCode reads the PR diff and repository files required for review. It does not execute PR code.
Optional run reporting sends only review metadata — repository, PR, commit SHA, tier, severity counts, gate result, and engine version.
No source code, diff, or finding text is included in run reports.
OrcaRouter guardrails can add secret detection, PII detection, prompt-injection protection, code-security rules, and external security scanners.
See SECURITY.md for details.
OrcaCode Review uses Open Code Review as its review engine and OrcaRouter for model routing, policy, and control.
OrcaCode decides how to review. OrcaRouter decides what model runs it.
MIT © Continuum-AI-Corp.
Open Code Review is Apache-2.0. Attribution is preserved in NOTICE.


