multi-review — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited multi-review (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Run independent code reviews from Antigravity and Codex in parallel, verify each finding against the source, then present combined consensus / unique / rejected sections so the user sees what really matters and what was a false positive. (Gemini is one command away via the gemini-reviewer agent or /gemini-review if you want it in the mix.)
Confidence scores are not an oracle. In a real session on 2026-04-17, Gemini returned two findings at 95/100 confidence that were factually wrong (a z.enum([]) claim that ignored an existing fallback, and an "MCP SDK doesn't support outputSchema" claim that was contradicted by the actual .d.ts). Both would have caused a mis-fix if accepted at face value. Always verify before presenting.
This skill verifies review findings — the bugs each provider claims it found. Phase 3 reads the file at the cited line and checks whether each finding is real before presenting it.
That is different from verifying assistant claims — the statements the assistant made in its prior turn ("I added retry logic," "I bumped the threshold to 16384"). For that, use /codex-verify. It dispatches the codex-verifier agent, decomposes the assistant's last message into atomic claims, and proves or disproves each with deterministic evidence. It returns a CONFIDENCE grade on a five-point ladder (PERFECT | VERIFIED | PARTIAL | FEEDBACK | FAILED) — PARTIAL and FAILED are first-class verdicts, surfacing gaps in your verification harness rather than hiding them under a confident-looking number.
| Question | Skill |
|---|---|
| "Are there bugs in this diff?" | /multi-review (finds new issues, verifies each finding before presenting) |
| "Did the assistant actually do what it claimed?" | /codex-verify (decomposes the assistant's claims, proves each against state) |
The two skills compose. Run both when you want both questions answered; do not merge their outputs.
git status --short to see what's modified/added/deletedgit add -N <files> so they appear in git diff (intent-to-add)git diff (unstaged) and git diff --cached (staged) into a single diff:!docs/ :!apps/docs/ :!*.md :!yarn.lock :!*.lock :!*.png :!*.jpg :!*.svggit diff -- ':!docs/' ':!*.md' ':!yarn.lock'wc -c diff.patch## Context Brief
Intent:
- User request:
- Review mode: multi-review
- Providers: <list the actual providers selected for this run>
Scope:
- Base ref:
- Changed files:
- Included files/docs:
- Excluded files/docs and reason:
- Diff bytes:
Repository signals:
- Relevant package/workspace:
- CLAUDE.md files read:
- ADRs/docs read:
Risk focus:
- Security:
- Data loss:
- Concurrency/state:
- API/contract:
- Tests/build:
Open questions:
- Items not verified before dispatch:Keep the brief tiny for simple diffs. Escalate detail when the diff is over 50KB, spans more than 5 files, crosses package boundaries, includes untracked files, references ADRs/specs, or depends on conversation context the external providers cannot see.
Preferred: launch both reviewer agents in parallel using the Agent tool in a single message:
antigravity-reviewer agent with the Context Brief + diff contentcodex-reviewer agent with the Context Brief + diff contentantigravity-reviewerrequiresagyinstalled + logged in and the Antigravity MCP server registered. If it's unavailable it will say so — present the codex-only result and note "antigravity skipped (agy not available)" rather than failing the whole review. To include Gemini instead/as well, also launch thegemini-revieweragent.
Fallback when reviewer agents are unavailable (e.g., plugin not installed in this Claude Code session): dispatch directly via the project's dist/antigravity-run.js and dist/codex-run.js runner binaries using the ADR-050 dispatch pattern (single foreground blocking Bash call, direct backgrounding, per-PID wait, 25-min timeout):
GMCPT_TIMEOUT_MS=1500000 node ${CLAUDE_PLUGIN_ROOT}/dist/antigravity-run.js "$REVIEW_PROMPT" < diff.patch > /tmp/mr-antigravity.out 2> /tmp/mr-antigravity.err &
agy_pid=$!
GMCPT_TIMEOUT_MS=1500000 node ${CLAUDE_PLUGIN_ROOT}/dist/codex-run.js "$REVIEW_PROMPT" < diff.patch > /tmp/mr-codex.out 2> /tmp/mr-codex.err &
codex_pid=$!
agy_rc=0; wait $agy_pid || agy_rc=$?
codex_rc=0; wait $codex_pid || codex_rc=$?Set the Bash tool's timeout parameter to 600000ms (10-min max). For diffs > 50KB, expect both providers to take real wall time — this is normal.
Do NOT use raw agy -p, gemini -p, or codex exec — those bypass the project's quota/transcript handling, Codex stdin handling (ADR-042), and PATH resolution (ADR-047). Use the runner binaries.
For every finding from either provider at confidence ≥ 80:
When a provider fails (timeout, capacity exhaustion, exit code ≠ 0, 0-byte output):
## Multi-Provider Review
**Context used:**
- Included: <files / packages>
- Excluded: <files / patterns and reason>
- Diff bytes: <N>
**Verified by both providers (highest confidence):**
- ⟨finding⟩ — Antigravity: 92, Codex: 88. Verified at <file>:<line>.
**Verified by Antigravity only:**
- ⟨finding⟩ — Confidence 85. Verified at <file>:<line>.
**Verified by Codex only:**
- ⟨finding⟩ — Confidence 90. Verified at <file>:<line>.
**Rejected (false positives caught during verification):**
- ⟨finding⟩ — Provider claimed X at <file>:<line>, but source shows Y. Skipped.
**Unverifiable:**
- ⟨finding⟩ — Cannot confirm without runtime; flagging for user attention.
**Provider stats:**
- Antigravity: ⟨N⟩ findings, ⟨V⟩ verified, ⟨R⟩ rejected. Status: ⟨ok | failed: ⟨reason⟩⟩
- Codex: ⟨N⟩ findings, ⟨V⟩ verified, ⟨R⟩ rejected. Status: ⟨ok | failed: ⟨reason⟩⟩If you have to truncate either provider's response or skip verification due to time pressure, say so in the output. Hidden compromises mislead the user.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.