Claude Code /ultrareview: a cloud “bug-hunting fleet” before you merge (research preview)
Anthropic’s /ultrareview runs a multi-agent code review in a remote sandbox—verified findings, not just nits. Official docs: v2.1.86+, Pro/Max get three free runs through May 5, 2026, then extra usage (~$5–$20). How it differs from /review, when to use it, and how explainx.ai thinks about the merge gate.
In April 2026, Anthropic promoted /ultrareview through developer channels (including the ClaudeDevs account on X). The one-line pitch matches the docs: run a deep, multi-agent code review in the cloud so verified bug candidates land back in the CLI or Desktop while you keep working. This post is a builder-friendly summary of the official behavior, cost, and when the tradeoffs make sense—plus explainx.ai’s take on the merge gate.
Source of truth:Find bugs with ultrareview — Claude Code Docs. Features, pricing, and availability are explicitly subject to change; always re-check that page before budgeting or promising behavior to a team.
Cloud + fleet — The command uses Claude Code on the web infrastructure. Multiple reviewer agents explore the branch or PR in parallel in a remote sandbox.
Verification — Reported findings are independently reproduced and verified so the output aims at real bugs rather than style suggestions.
No local crunch — The review does not tie up your machine; your session stays free for other work.
User-initiated only — Nothing starts automatically; you explicitly run /ultrareview.
Invocation:
/ultrareview — reviews the diff between the current branch and the default branch, including uncommitted and staged work; the CLI bundles repo state for the sandbox.
/ultrareview 1234 — PR mode: the sandbox clonesGitHub PR #1234 (requires a github.com remote on the repo). If the repo is too large to bundle locally, the tool prompts you to push a branch and use PR mode instead.
While it runs: docs cite ~5–10 minutestypically, as a background task. Use /tasks to list running and completed reviews, open details, or stop a run (stopping archives the cloud session; partial results are not returned). Findings arrive as notifications with file, line, and explanation so you can ask Claude to fix in-thread.
Setup:claude update (per social posts and docs), and /login with a Claude.ai account if you have been on API-key-only auth.
/review (local) vs /ultrareview (cloud)
The docs include a direct comparison; we repeat it here because the decision is the whole product story:
/review
/ultrareview
Runs
locally in your session
remote cloud sandbox
Depth
single-pass review
multi-agent + verification
Time
seconds to a few minutes
~5–10 minutes
Cost
normal plan usage
free trials (see below), then extra usage
Best for
fast iteration
substantial pre-merge changes
Plain language:Inner loop → /review. Before you merge something high-risk (auth, migrations, security-sensitive paths) → consider /ultrareview if the scope justifies time and money.
Pro and Max:3 free runs through May 5, 2026; these are a one-time allotment per account, not monthly, and they expire on that date.
Team and Enterprise:no free runs in the published table; reviews bill as extra usage.
After free runs (or after the period ends), each review is extra usage; docs state a typical range of about $5–$20depending on the size of the change—treat that as an order-of-magnitude, not a quote.
Extra usage must be enabled to launch a paid review; the CLI can block and point to billing or /extra-usage.
GitHub-integrated Code Review (research preview for Team and Enterprise, PR comments from agent teams) is a related but separate product surface from the CLI/ultrareviewcommand; do not conflate the two when planning org rollout.
Not available in these setups
The ultrareview page states the feature is not available when using Claude Code through Amazon Bedrock, Google Cloud Vertex AI, or Microsoft Foundry, and not for organizations that have Zero Data Retention enabled. If your compliance posture requires one of those, assume /ultrareview is off the table until vendordocs say otherwise.
explainx.ai: how we’d use (and not mythologize) it
explainx.ai teaches agent skills, MCP, and courses—so we care about whereautomatedreview fits in a realSDLC:
It’s a gate, not a culture — /ultrareview is strong for broadcoverage and verifiedcandidates on a bigdiff; it does not replace domain experts, threat modeling, or regulatorysign-off when those apply.
Match spend to risk — Save free and paidruns for changes where a missed bug is expensive (payments, auth, datamigrations), not for typos in copy.
Stack with repo habits — Teams already encode “how we review” in CI, CLAUDE.md, and skills (see gstack / slash stacks for an extreme open-source example). Use/reviewliberally; use/ultrareview when the diffdeservesclouddepth.
Security remains layered — For untrustedinstructionsurfaces in skills and MCP, read agent skills and security; ultrareviewreviewsyourcode—it is not a substitute for supply-chaincontrols on third-partypackages and tools.
Research preview features change. Verify version (claude update), official ultrareview docs, and your plan’s extra usage settings before you rely on this in production release processes.