← ClaudeAtlas

peer-reviewlisted

Get a fresh-context review of staged changes, branches, PRs, or file sets. Delegates to a fresh-context reviewer by default; routes to external LLM CLIs (Copilot, Codex, Gemini) when --model specifies one. Use when: user says "peer review" (e.g. "peer review PR 5", "peer review staged", "peer review this branch"), "fresh review", "another set of eyes", "sanity check", "quick review before I push", or routes to an external model ("review with Gemini", "review with Copilot", "review using Codex"). Do NOT trigger on bare "review" phrases (e.g. "review my changes", "review PR N", "review staged") — those route to code-review.
WhatIfWeDigDeeper/agent-skills · ★ 2 · AI & Automation · score 74
Install: claude install-skill WhatIfWeDigDeeper/agent-skills
# Peer Review Get a fresh-context review of in-progress work — staged changes, a branch diff, a PR, or a set of files — without accumulated session assumptions. Returns severity-grouped findings the author can apply or skip. ## Arguments The text following the skill invocation is available as `$ARGUMENTS` (in Claude Code: `/peer-review [target] [options]`). If `$ARGUMENTS` is `help`, `--help`, `-h`, or `?`, print usage and exit: ``` Usage: /peer-review [target] [--model MODEL] [--focus TOPIC] Targets (pick one): (none) Auto-detect: staged, unstaged, or prompt [staged/unstaged/all] if both exist --staged Staged changes only — skip auto-detection (git diff --staged) --pr N PR #N diff + description --branch NAME Branch diff vs default branch path/to/file-or-dir Specific files or directory Options: --model MODEL Reviewer model (default: self — use the current assistant) `self` means the assistant spawns a fresh instance of itself as reviewer Explicit Claude models: any claude-* value (internal path — assistant selects model natively) External CLIs: copilot[:submodel], codex[:submodel], gemini[:submodel] copilot — npm install -g @github/copilot-cli (or VS Code extension) codex — npm install -g @openai/codex gemini — npm install -g @google/gemini-cli --focus TOPIC Narrow emphasis (e.g. secur