From kit
Orchestrates plan-alignment and quality reviews using persistent or ad-hoc reviewer teammates. Use when verifying implementation matches requirements, at batch review checkpoints, before merging to main, after completing a major feature, before refactoring, after fixing a complex bug, or when a fresh perspective is needed. Spawns specialist reviewers (spec, quality, security, architecture) in parallel and consolidates findings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kit:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use persistent reviewer teammates (within a team) or spawn a review team (standalone) to catch issues before they cascade.
Use persistent reviewer teammates (within a team) or spawn a review team (standalone) to catch issues before they cascade.
Core principle: Review early, review often. Persistent reviewers accumulate codebase knowledge.
Mandatory:
Optional but valuable:
When called from team-dev or executing-plans, reviewers are already persistent teammates.
Get the diff for review:
For uncommitted work (default during implementation):
git diff main --stat # summary of all changes
git diff main # full diff
For committed work (PR review mode):
git diff {BASE_SHA}..{HEAD_SHA} --stat
git diff {BASE_SHA}..{HEAD_SHA}
Create review tasks in the shared TaskList:
Send context via SendMessage:
Both review in parallel (read-only, no conflicts)
Act on feedback:
When no team exists, create one:
code-reviewer agent type — the agent definition provides the comprehensive review framework; code-review/code-reviewer.md provides the dispatch template with placeholders and output formatFor thorough reviews, spawn multiple specialist reviewers in parallel:
All review simultaneously. Consolidate findings.
Reviewers that persist across tasks:
Never:
If reviewer wrong:
Within team-dev: Reviewers are persistent teammates — use existing team
Standalone: Spawn code-reviewer agent type with code-review/code-reviewer.md dispatch template
Agent definition: agents/code-reviewer.md — canonical review framework (plan alignment, code quality, architecture, documentation)
Dispatch template: code-review/code-reviewer.md — context placeholders, git commands, output format
This skill's unique value is plan-alignment review (verifying implementation matches requirements and design intent) and team-based review orchestration (coordinating persistent or ad-hoc reviewer teammates). General code quality review — style, linting, best practices, vulnerability scanning — should be deferred to the official code-review and pr-review-toolkit plugins, which provide multi-agent pipelines and specialist depth purpose-built for those concerns.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub shousper/claude-kit --plugin kit