requesting-code-review

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

Updated Jun 9, 2026
One-click install
npx skills add https://github.com/gyc-12/Archipelago --skill requesting-code-review-gyc-12
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/gyc-12/Archipelago/tree/main/modules/collaboration-runtime/src-tauri/experts/skills/requesting-code-review
Command: npx skills add https://github.com/gyc-12/Archipelago --skill requesting-code-review-gyc-12

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code changes often ship with undetected bugs, plan deviations, or quality gaps because self-review is biased and context-heavy. This Skill dispatches an independent code reviewer subagent with precisely crafted context to catch issues before they cascade into larger problems. ## Core Features & Use Cases - Structured Review Dispatch: Provides a complete reviewer prompt template covering plan alignment, code quality, architecture, testing, and production readiness. - Severity-Calibrated Feedback: Returns issues categorized as Critical, Important, or Minor with file:line references and a clear merge verdict. - Workflow Integration: Defines mandatory review checkpoints for subagent-driven development, plan execution, and pre-merge validation. - Use Case: After completing a feature task, you capture the base and head git SHAs, dispatch the reviewer subagent with the template, receive categorized feedback, fix Critical and Important issues, and then proceed to the next task. ## Quick Start Ask the AI to request a code review of your latest commits using the code-reviewer template before merging to main.

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 for my recent commits?

Get the base and head git SHAs with git rev-parse, then dispatch a general-purpose subagent using the code-reviewer.md template. Fill in the description, requirements, and SHA placeholders, and the reviewer returns categorized issues with a merge verdict.

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 valuable when stuck on a problem, before refactoring, or after fixing a complex bug.

What does the code reviewer subagent check?

The reviewer checks plan alignment, code quality, architecture decisions, test coverage, and production readiness including migrations and backward compatibility. It categorizes findings as Critical, Important, or Minor with file:line references.

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 on the reviewer's concern.

Why does the reviewer not use my session history?

The reviewer receives only precisely crafted context — the description, requirements, and git diff range — never your session history. This keeps the reviewer focused on the work product rather than your thought process and preserves your own context.