Use when adding new error messages to React, or seeing "unknown error code" warnings.
npx skills add peterkimpro/claude-code-powerpack --skill "review-pr"
Install specific skill from multi-skill repository
# Description
Review a GitHub pull request by number. Invoke with a PR number, e.g. /review-pr 42
# SKILL.md
name: review-pr
description: Review a GitHub pull request by number. Invoke with a PR number, e.g. /review-pr 42
Review pull request: $ARGUMENTS
Steps:
-
Fetch the PR diff and metadata:
bash gh pr view $ARGUMENTS gh pr diff $ARGUMENTS -
Read any files that changed to understand context (don't rely on diff alone).
-
Use the
code-revieweragent to review the changes:
"Use the code-reviewer agent to review the diff from PR #$ARGUMENTS" -
If there are security-sensitive changes (auth, file I/O, user input, env vars), also use the
security-revieweragent. -
Post a summary comment on the PR:
bash gh pr comment $ARGUMENTS --body "..."
Format the comment with:
- One-line summary of what the PR does
- [MUST] / [SHOULD] / [NIT] findings (if any)
- "LGTM" if no blockers
Do NOT approve or merge the PR — only comment.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.