code-review

Unified code review system — dispatches the right review agents for the situation. Use when reviewing code for quality, bugs, compliance, or before merging.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "code-review" with this command: npx skills add hjewkes/agent-skills/hjewkes-agent-skills-receiving-code-review

Code Review

Dispatch specialized review agents matched to the situation. Choose a mode or let context guide you.

Review Modes

Quick Review

When: Ad-hoc checks, quick sanity check, low-noise feedback Dispatch: quick-reviewer agent (confidence scoring, reports only >= 80) Output: High-confidence issues grouped by severity (Critical 90-100, Important 80-89)

Deep Review

When: After completing a feature, before merge, in plan-execution review loop Dispatch: deep-reviewer agent (full checklist with template placeholders) Placeholders: {WHAT_WAS_IMPLEMENTED}, {PLAN_OR_REQUIREMENTS}, {BASE_SHA}, {HEAD_SHA}, {DESCRIPTION} Output: Strengths, Issues (Critical/Important/Minor), Recommendations, Merge verdict

Specialist Review

When: Targeted analysis of a specific quality dimension Dispatch: One or more specialist agents:

AgentFocus
comment-analyzerComment accuracy, documentation quality, comment rot
test-analyzerTest coverage quality, behavioral coverage gaps, test resilience
silent-failure-hunterError handling, silent failures, catch block specificity
type-design-analyzerType invariants, encapsulation, type usefulness

Comprehensive Review

When: Before merging to main, finishing a development branch Dispatch: 4-pass structure (TDD compliance, diff-only quality, contextual quality, browser audit). See references/comprehensive-review-procedure.md for pass details and ordering.

How to Request

  1. Gather git context using scripts/review-prep (auto-detects base branch, outputs BASE_SHA, HEAD_SHA, diff stats, changed files, commit log). Use --json for structured output.
  2. Read the reference file for your chosen agent(s)
  3. Spawn general-purpose Task agent with the prompt + review-prep output
  4. Act on feedback: fix Critical immediately, fix Important before proceeding

Workflow Integration

WorkflowReview Mode
plan-execution (per-task)Deep Review
plan-execution (batch)Deep Review
Before merge to mainComprehensive Review
Ad-hoc / when stuckQuick Review
Specific concernSpecialist Review
GitHub PR review + postinggithub-pr skill (automated PR review orchestrator)

Simplification Mode

After review, optionally dispatch a simplification pass to improve clarity, consistency, and maintainability without changing functionality. Read references/simplifier.md for the full agent prompt, then spawn a general-purpose Task agent with that prompt targeting the reviewed files.

Handling Feedback

When receiving code review feedback (from humans or other agents), follow the structured 6-step response pattern: READ, UNDERSTAND, VERIFY, EVALUATE, RESPOND, IMPLEMENT. No performative agreement — verify before implementing, push back with technical reasoning when warranted. See references/handling-feedback.md for the full pattern, push-back criteria, YAGNI checks, and source-specific handling.

Red Flags

  • Skipping review because "it's simple"
  • Ignoring Critical issues
  • Proceeding with unfixed Important issues
  • Running Comprehensive passes all sequentially (1+2 are independent, parallelize)
  • Not deduplicating between Pass 2 and Pass 3 in Comprehensive mode

Reference Files

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

receiving-code-review

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

github-pr

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

code-review

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

managing-github-issues

No summary provided by upstream source.

Repository SourceNeeds Review