# Review Work

> Use when completing tasks, implementing major features, or before merging to verify work meets requirements

- Skill: `apocohq/review-work` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add apocohq/review-work`
- Raw SKILL.md: https://api.skillmd.com/api/skills/apocohq/review-work/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: apocohq (https://skillmd.com/u/apocohq)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/apocohq/review-work

---


# Review Work

Dispatch a code-reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context for evaluation — never your session's history. This keeps the reviewer focused on the work product, not your thought process, and preserves your own context for continued work.

## How to Review

**1. Get git SHAs:**
```bash
BASE_SHA=$(git merge-base HEAD origin/main)
HEAD_SHA=$(git rev-parse HEAD)
```

**2. Dispatch code-reviewer subagent:**

Use the Agent tool to dispatch a code-reviewer subagent, filling the template at `references/code-reviewer.md`

**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 summary

