원클릭으로
requesting-code-review
Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
MCP (Model Context Protocol) - Build AI-native servers with tools, resources, and prompts. TypeScript/Python SDKs for Claude Desktop integration.
Model Context Protocol (MCP) server build and evaluation guide, including local conventions for tool surfaces, config, and testing
Control monitoring server and dashboard
Pause session and save current work state for later resume
Load context from paused session
Access Claude MPM functionality and manage multi-agent orchestration
| name | Requesting Code Review |
| description | Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding |
| when_to_use | when completing tasks, implementing major features, or before merging, to verify work meets requirements |
| version | 1.3.0 |
| progressive_disclosure | {"level":1,"references":[{"path":"references/code-reviewer-template.md","title":"Code Reviewer Template","description":"Complete subagent template with placeholders and review checklist"},{"path":"references/review-examples.md","title":"Review Examples & Workflows","description":"Good vs bad reviews, severity guidelines, complete workflow examples"}]} |
| effort | medium |
Dispatch code-reviewer subagent to catch issues before they cascade.
Core principle: Review early, review often.
Scope note: This skill is the review loop — how to dispatch the code-reviewer subagent, gate on severity, and act on feedback. For the reviewer's checklist (what correctness/design/security/readability items to actually look for), see the
code-reviewskill.
Mandatory:
Optional but valuable:
1. Get git SHAs:
BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
HEAD_SHA=$(git rev-parse HEAD)
2. Dispatch code-reviewer subagent:
Use Task tool with code-reviewer type, fill template at Code Reviewer Template
Required placeholders:
{WHAT_WAS_IMPLEMENTED} - What you just built{PLAN_OR_REQUIREMENTS} - What it should do{BASE_SHA} - Starting commit{HEAD_SHA} - Ending commit{DESCRIPTION} - Brief summary3. Act on feedback:
| Severity | Action |
|---|---|
| Critical | Fix immediately, don't proceed |
| Important | Fix before next major task |
| Minor | Note for later, can proceed |
See severity guidelines for details.
Subagent-Driven Development:
Executing Plans:
Ad-Hoc Development:
If reviewer wrong:
Never:
Always:
Need examples? See Review Examples & Workflows for:
Need template? See Code Reviewer Template for the complete subagent dispatch template.