requesting-code-review

Dispatches a code reviewer subagent to evaluate git diffs against requirements before merging.

Updated May 22, 2026
One-click install
npx skills add https://github.com/viniciuscs84/sdd-toolkit --skill requesting-code-review-viniciuscs84
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/viniciuscs84/sdd-toolkit/tree/main/skills/requesting-code-review%20copy
Command: npx skills add https://github.com/viniciuscs84/sdd-toolkit --skill requesting-code-review-viniciuscs84

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code changes often get merged without independent review, letting bugs, architecture problems, and plan deviations cascade into later work. This Skill structures the process of dispatching a fresh code reviewer subagent with precisely scoped context so issues are caught early. ## Core Features & Use Cases - Subagent Review Dispatch: Provides a ready-to-use prompt template (code-reviewer.md) for launching a reviewer subagent with description, requirements, and git SHA range. - Severity-Calibrated Feedback: The reviewer returns strengths, issues categorized as Critical/Important/Minor, recommendations, and a clear merge verdict. - Use Case: After completing a task in subagent-driven development, capture BASE_SHA and HEAD_SHA, dispatch the reviewer with the template, fix Critical and Important issues, then proceed to the next task or merge. ## Quick Start Ask the AI to request a code review of the changes between the previous commit and HEAD using the code-reviewer template before merging.

Frequently Asked Questions about requesting-code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I request a code review from an AI subagent?

Get the base and head git SHAs for your change range, then dispatch a general-purpose subagent using the code-reviewer.md template. Fill in the description, requirements, and SHA placeholders so the reviewer evaluates only the relevant diff.

When should I request a code review during development?

Request review after each task in subagent-driven development, after completing a major feature, and before merging to main. It is also useful when stuck, before refactoring, or after fixing a complex bug.

What does the code reviewer subagent check?

The reviewer checks plan alignment, code quality, architecture, testing, and production readiness. It returns strengths, issues categorized as Critical, Important, or Minor, recommendations, and a clear merge readiness verdict.

What should I do if the code reviewer is wrong?

Push back with technical reasoning rather than accepting incorrect feedback. Show code or tests that prove the implementation works, and request clarification from the reviewer on the disputed point.

Why give the reviewer a git SHA range instead of session history?

Providing BASE_SHA and HEAD_SHA keeps the reviewer focused on the actual work product via git diff, not your thought process. This preserves your own context and gives the reviewer precisely scoped, unbiased input.