Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
unclecatvn avatar

Code Review

  • 370 installs
  • 118 repo stars
  • Updated July 14, 2026
  • unclecatvn/agent-skills

This is a copy of code-review by mrgoonie - installs and ranking accrue to the original listing.

code-review is a Claude Code agent skill that enforces three code-review practices—rigorous feedback reception, code-reviewer subagent dispatch, and evidence-based verification gates—for developers who must validate work

About

code-review is an unclecatvn/agent-skills workflow covering receiving feedback, requesting reviews, and verification gates for agent-driven development. When receiving comments, follow READ→UNDERSTAND→VERIFY→EVALUATE→RESPOND→IMPLEMENT without performative agreement; verify external suggestions before implementing. For requesting reviews, capture BASE_SHA and HEAD_SHA via git rev-parse, then dispatch a code-reviewer subagent with implementation context after each subagent task or major feature. Verification gates enforce the rule: no completion claims without fresh command output—tests must show zero failures, builds must exit 0. Reference files split protocols: code-review-reception.md, requesting-code-review.md, and verification-before-completion.md. Use after tasks complete, before PR merge, or whenever an agent is about to claim success.

  • code-review
  • AI & Agent Building
  • AI-coding skill

Code Review by the numbers

  • 370 all-time installs (skills.sh)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/unclecatvn/agent-skills --skill code-review

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs370
repo stars118
Last updatedJuly 14, 2026
Repositoryunclecatvn/agent-skills

How do agents request code review before merging?

Helps with ai & agent building tasks.

Who is it for?

Developers using subagent-driven workflows who need systematic review dispatch, technical pushback on bad feedback, and evidence gates before PR merge.

Skip if: Skip code-review when you need automated static analysis, security scanning, or language-specific lint rules instead of agent review protocols.

When should I use this skill?

User completes a major feature, prepares a PR merge, receives review comments, or an agent is about to claim tests pass or work is complete.

What you get

Code-reviewer subagent feedback report, addressed Critical/Important items, and verification command output proving tests and builds pass.

  • Code-reviewer feedback report
  • Verification command output
  • Addressed review items

By the numbers

  • Covers three distinct practices with separate reference protocol files
  • Review dispatch uses git rev-parse HEAD~1 and HEAD for BASE_SHA and HEAD_SHA

Files

SKILL.mdMarkdownGitHub ↗

Code Review

Guide proper code review practices emphasizing technical rigor, evidence-based claims, and verification over performative responses.

Overview

Code review requires three distinct practices:

1. Receiving feedback - Technical evaluation over performative agreement 2. Requesting reviews - Systematic review via code-reviewer subagent 3. Verification gates - Evidence before any completion claims

Each practice has specific triggers and protocols detailed in reference files.

Core Principle

Technical correctness over social comfort. Verify before implementing. Ask before assuming. Evidence before claims.

When to Use This Skill

Receiving Feedback

Trigger when:

  • Receiving code review comments from any source
  • Feedback seems unclear or technically questionable
  • Multiple review items need prioritization
  • External reviewer lacks full context
  • Suggestion conflicts with existing decisions

Reference: references/code-review-reception.md

Requesting Review

Trigger when:

  • Completing tasks in subagent-driven development (after EACH task)
  • Finishing major features or refactors
  • Before merging to main branch
  • Stuck and need fresh perspective
  • After fixing complex bugs

Reference: references/requesting-code-review.md

Verification Gates

Trigger when:

  • About to claim tests pass, build succeeds, or work is complete
  • Before committing, pushing, or creating PRs
  • Moving to next task
  • Any statement suggesting success/completion
  • Expressing satisfaction with work

Reference: references/verification-before-completion.md

Quick Decision Tree

SITUATION?
│
├─ Received feedback
│  ├─ Unclear items? → STOP, ask for clarification first
│  ├─ From human partner? → Understand, then implement
│  └─ From external reviewer? → Verify technically before implementing
│
├─ Completed work
│  ├─ Major feature/task? → Request code-reviewer subagent review
│  └─ Before merge? → Request code-reviewer subagent review
│
└─ About to claim status
   ├─ Have fresh verification? → State claim WITH evidence
   └─ No fresh verification? → RUN verification command first

Receiving Feedback Protocol

Response Pattern

READ → UNDERSTAND → VERIFY → EVALUATE → RESPOND → IMPLEMENT

Key Rules

  • ❌ No performative agreement: "You're absolutely right!", "Great point!", "Thanks for [anything]"
  • ❌ No implementation before verification
  • ✅ Restate requirement, ask questions, push back with technical reasoning, or just start working
  • ✅ If unclear: STOP and ask for clarification on ALL unclear items first
  • ✅ YAGNI check: grep for usage before implementing suggested "proper" features

Source Handling

  • Human partner: Trusted - implement after understanding, no performative agreement
  • External reviewers: Verify technically correct, check for breakage, push back if wrong

Full protocol: references/code-review-reception.md

Requesting Review Protocol

When to Request

  • After each task in subagent-driven development
  • After major feature completion
  • Before merge to main

Process

1. Get git SHAs: BASE_SHA=$(git rev-parse HEAD~1) and HEAD_SHA=$(git rev-parse HEAD) 2. Dispatch code-reviewer subagent via Task tool with: WHAT_WAS_IMPLEMENTED, PLAN_OR_REQUIREMENTS, BASE_SHA, HEAD_SHA, DESCRIPTION 3. Act on feedback: Fix Critical immediately, Important before proceeding, note Minor for later

Full protocol: references/requesting-code-review.md

Verification Gates Protocol

The Iron Law

NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE

Gate Function

IDENTIFY command → RUN full command → READ output → VERIFY confirms claim → THEN claim

Skip any step = lying, not verifying

Requirements

  • Tests pass: Test output shows 0 failures
  • Build succeeds: Build command exit 0
  • Bug fixed: Test original symptom passes
  • Requirements met: Line-by-line checklist verified

Red Flags - STOP

Using "should"/"probably"/"seems to", expressing satisfaction before verification, committing without verification, trusting agent reports, ANY wording implying success without running verification

Full protocol: references/verification-before-completion.md

Integration with Workflows

  • Subagent-Driven: Review after EACH task, verify before moving to next
  • Pull Requests: Verify tests pass, request code-reviewer review before merge
  • General: Apply verification gates before any status claims, push back on invalid feedback

Bottom Line

1. Technical rigor over social performance - No performative agreement 2. Systematic review processes - Use code-reviewer subagent 3. Evidence before claims - Verification gates always

Verify. Question. Then implement. Evidence. Then claim.

Related skills

How it compares

Pick code-review for agent review protocols and verification gates; use static-analysis or security-audit skills for automated rule checking.

FAQ

When does code-review dispatch the code-reviewer subagent?

code-review dispatches the code-reviewer subagent after each task in subagent-driven development, after major feature completion, and before merging to main. Provide WHAT_WAS_IMPLEMENTED, plan context, BASE_SHA, HEAD_SHA, and a description.

What is the verification gate rule in code-review?

code-review enforces no completion claims without fresh verification evidence. Run the full test or build command, read output, confirm zero failures or exit code 0, then state the claim with attached evidence—skipping any step counts as an unverified claim.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.