code-review

Reviews code changes since a reference point against standards and spec requirements.

Updated Jun 25, 2026
One-click install
npx skills add https://github.com/richard-jh-mccrae/PokemonAI --skill code-review-richard-jh-mccrae
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/richard-jh-mccrae/PokemonAI/tree/main/.agents/skills/code-review
Command: npx skills add https://github.com/richard-jh-mccrae/PokemonAI --skill code-review-richard-jh-mccrae

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When reviewing a branch, PR, or work-in-progress, it is easy to check only whether the code works while missing whether it follows the repo's documented coding standards or actually fulfills the originating issue or PRD. This Skill runs both checks systematically so nothing slips through. ## Core Features & Use Cases - Dual-axis review: Evaluates changes along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue or PRD asked for?). - Parallel sub-agents: Runs both reviews in parallel sub-agents and reports the results side by side for easy comparison. - Flexible reference point: Reviews changes since any fixed point — a commit, branch, tag, or merge-base. - Use Case: Before merging a feature branch, ask for a review since the merge-base with main to get a side-by-side report on standards compliance and spec completeness. ## Quick Start Review all changes on this branch since the merge-base with main against our coding standards and the original issue.

Frequently Asked Questions about code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review all changes on a branch before merging?▼

Ask for a review since a fixed point such as the merge-base with the main branch. The Skill examines every change since that point and reports standards compliance and spec adherence side by side.

How to check if code matches the original issue or PRD?▼

The Spec axis of the review compares the implementation against what the originating issue or PRD asked for. It flags gaps between the requested behavior and the actual code changes.

What reference points can I use to start a code review?▼

You can use any fixed point: a commit hash, a branch name, a tag, or a merge-base. The Skill reviews all changes made since that point.

Does this review check coding standards compliance?▼

Yes, the Standards axis evaluates whether the changed code follows the repository's documented coding standards. It runs in a parallel sub-agent alongside the spec review.

Can I review work-in-progress changes before opening a PR?▼

Yes, the Skill works on uncommitted or in-progress changes, not just finished PRs. Specify the fixed point you want to compare against, such as the last commit or a base branch.