# Requesting Code Review

> Dispatch an independent reviewer subagent over a diff. Use when completing a task or feature, or before merging.

- **Type:** Skill
- **Install:** `agentstack add skill-skywalkercyt-mp-implement-requesting-code-review`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [skywalkercyt](https://agentstack.voostack.com/s/skywalkercyt)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [skywalkercyt](https://github.com/skywalkercyt)
- **Source:** https://github.com/skywalkercyt/mp-implement/tree/main/skills/requesting-code-review

## Install

```sh
agentstack add skill-skywalkercyt-mp-implement-requesting-code-review
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Requesting Code Review

> **Adapted skill** — discipline originating in Superpowers v5.1.0 (MIT, Jesse Vincent), rewritten in mattpocock-skills style. Drives the independent review in `/mp-implement-issue` step 8 and the code-quality reviewer in `/mp-implement` Phase 3 (via `subagent-driven-development`).

An independent reviewer checks the work before merge — self-review doesn't count. Review early, review often: after each task or slice, and always before merge to main.

The reviewer is a subagent with fresh context, so it gets a crafted brief, not your session history. Fresh eyes on the work product are what make the review independent; your reasoning so far is noise to it.

## Fix the range first

```bash
BASE_SHA=$(git merge-base origin/main HEAD)  # the slice's branch point
HEAD_SHA=$(git rev-parse HEAD)
```

Confirm the base resolves (`git rev-parse $BASE_SHA`) and the three-dot diff (`git diff $BASE_SHA...$HEAD_SHA`) is non-empty before dispatching. A bad ref or empty diff fails here, not inside the subagent.

## Dispatch the reviewer

Spawn a subagent with this brief filled in:

```
You are reviewing a change before merge. Work from this brief and the repo only.

## What was built
{DESCRIPTION}
## Requirements
{PLAN_OR_REQUIREMENTS — issue body, acceptance criteria, or plan file}
## Diff under review
git diff {BASE_SHA}...{HEAD_SHA}   (commits: git log {BASE_SHA}..{HEAD_SHA} --oneline)

Report findings as Critical (must fix) / Important (fix before proceeding) /
Minor (later), each with file:line, why it matters, and the fix. Severity is
actual, not diplomatic. End with a verdict: ready to merge, or what changes first.
```

## Split big reviews into axes

A review can split into independent axes (e.g. Standards vs Spec) as parallel subagents, so neither axis pollutes the other. `/mp-implement-issue` step 8 does exactly this and carries its own inlined briefs — there, follow step 8 instead of the template above.

## Act on the findings

What to do with the Critical / Important / Minor findings — evaluate each technically, fix, or push back with evidence — is governed by `receiving-code-review`.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [skywalkercyt](https://github.com/skywalkercyt)
- **Source:** [skywalkercyt/mp-implement](https://github.com/skywalkercyt/mp-implement)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-skywalkercyt-mp-implement-requesting-code-review
- Seller: https://agentstack.voostack.com/s/skywalkercyt
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
