requesting-code-review

Dispatches a code review subagent to evaluate git diffs against requirements.

Updated Aug 14, 2026
One-click install
npx skills add https://github.com/bill80362/laravel-thread-admin --skill requesting-code-review-bill80362
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: requesting-code-review
Source: https://github.com/bill80362/laravel-thread-admin/tree/main/.github/superpowers/requesting-code-review
Command: npx skills add https://github.com/bill80362/laravel-thread-admin --skill requesting-code-review-bill80362

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When completing tasks or merging code, self-reviewing diffs consumes context and misses issues. This Skill dispatches a dedicated code review subagent with a structured prompt template, so problems are caught before they spread into further work. ## Core Features & Use Cases - Structured Review Dispatch: Provides a ready-to-use code-reviewer prompt template with placeholders for description, requirements, and git SHA range. - Severity-Calibrated Feedback: The reviewer returns findings classified as Critical, Important, or Minor, plus a clear merge-readiness verdict. - Use Case: After finishing a feature task, you capture the base and head commit SHAs, dispatch the review subagent with the template, receive prioritized feedback, fix Critical and Important issues, and then continue to the next task. ## 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 continuing.

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 completed changes?

Get the base and head commit 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 so the reviewer evaluates the exact diff range.

When should I request a code review during development?

Request a review after every completed task in subagent-driven development, after finishing significant features, and before merging to main. It is also valuable when stuck, before refactoring, or after fixing complex bugs.

What feedback format does the code review subagent return?

The reviewer returns strengths, issues classified as Critical, Important, or Minor with file and line references, improvement suggestions, and a final assessment stating whether the work can be merged, needs fixes first, or should not merge.

Should I give the reviewer my full conversation history?

No. Provide only carefully organized context: a description of the changes, the plan or requirements, and the git SHA range. This keeps the reviewer focused on the work product rather than your reasoning process.

What should I do if the code reviewer is wrong?

Push back with technical reasoning, show code or tests proving the approach works, and ask for clarification. Never ignore Critical issues or continue with unfixed Important issues, but legitimate technical disagreement is acceptable.