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.
80
74%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./skills/code-review/SKILL.mdUse 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 diffFor 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.
a01bac9
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.