review-multi-model

Reviews git diffs with parallel Claude and Codex reviewers and merges verified findings.

21|1|Updated Jul 22, 2026
One-click install
npx skills add https://github.com/uiverify/uiverify --skill review-multi-model-uiverify
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: review-multi-model
Source: https://github.com/uiverify/uiverify/tree/main/packages/skills/skills/review-multi-model
Command: npx skills add https://github.com/uiverify/uiverify --skill review-multi-model-uiverify

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Single-model code reviews miss defects due to each model's blind spots and produce false positives that waste reviewer time. This Skill runs two independent AI reviewers on the same diff and verifies every finding against the actual code before reporting it. ## Core Features & Use Cases - Parallel multi-model review: Runs a Claude review subagent and OpenAI Codex CLI concurrently on the same diff using an identical reviewer brief, so findings are directly mergeable. - Orchestrator verification and adjudication: Every claimed finding is checked against the reviewed revision, deduplicated by root cause, tagged by which model found it, and ranked by severity. - Flexible review targets: Reviews a GitHub PR by number or URL, staged changes only, or the current branch against its merge-base, with an optional --fix step that applies verified fixes. - Use Case: Before merging a pull request, ask for a multi-model review to get one de-duplicated report showing which defects both models agreed on, which each caught uniquely, and which findings were dropped as false positives. ## Quick Start Ask the agent to run a multi-model review of the current branch, or pass a PR number such as "review-multi-model 123" to review that pull request.

Frequently Asked Questions about review-multi-model

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a multi-model code review on a pull request?▼

Invoke the skill with a PR number or URL, such as review-multi-model 123. It fetches the PR head and base, computes the diff, and runs Claude and Codex reviewers in parallel before merging their verified findings into one report.

What is the benefit of reviewing code with two AI models instead of one?▼

Two independent models have different blind spots: Claude is strong on multi-file logic while Codex catches security and API misuse. Findings both models reach independently are higher confidence, and the orchestrator verifies each claim against the actual code to drop false positives.

Does the review work if the Codex CLI is not installed or logged in?▼

Yes, the skill degrades to a Claude-only review and clearly states in the final report that Codex was unavailable. If you explicitly passed --codex-only without a working codex login, it aborts and tells you to run codex login first.

Can I review only staged changes instead of the whole branch?▼

Yes, pass the --staged flag to review only the git index via git diff --staged. Findings are then verified against the staged blobs, and any --fix changes land in the working tree rather than the index.

How does the skill handle false positives from AI code reviewers?▼

The orchestrator opens each cited file and line and confirms the claim against the exact reviewed revision before reporting it. Findings that do not reproduce, misread the code, or are pure style nitpicks are dropped and listed in a false-positives section.

Can the skill automatically fix the issues it finds?▼

Yes, pass --fix and it applies the verified fixes to the working tree after presenting the report, skipping any finding it could not verify. In PR mode the PR branch must be checked out first via gh pr checkout.