review-pr

review-pr is a command for Claude Code from hackermanishackerman/claude-skills-vault. It costs 18 tokens per session (1,487 once invoked), scanned B, a copy of review-pr, MIT.

A command for reviewing pull requests, which are proposed code changes submitted for review. It checks changes to skills, commands, and MCP servers, along with related documentation and review quality.

In plain words
What is it for?
Inspecting changed files, checking documentation requirements, reviewing skill or command quality, and optionally using GitHub or Gemini tools when they are installed.
Why use it?
It catches missing changelog entries, README updates, formatting problems, and unavailable review tools before a pull request is accepted. It reviews the full set of changes between branches or commits.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/hackermanishackerman/claude-skills-vault/git-review-pr
Clone the repo
git clone --depth 1 https://github.com/hackermanishackerman/claude-skills-vault

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-pr

README.md
[![agentmods](https://agentmods.dev/badge/commands/hackermanishackerman/claude-skills-vault/git-review-pr.svg)](https://agentmods.dev/commands/hackermanishackerman/claude-skills-vault/git-review-pr)
Your own site
<a href="https://agentmods.dev/commands/hackermanishackerman/claude-skills-vault/git-review-pr"><img src="https://agentmods.dev/badge/commands/hackermanishackerman/claude-skills-vault/git-review-pr.svg" alt="Measured on agentmods" height="20"></a>
Per session 18 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,487 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00018 $0.01487
Opus 5 $0.00009 $0.00744
Sonnet 5 $0.00004 $0.00297
Haiku 4.5 $0.00002 $0.00149

Measured 5d ago against content hash a5b11916e661, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade B, and why

review-pr scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

find .claude/skills -name "*.py" -exec python -m py_compile {} \;
Origin

This is a copy

100% identical to review-pr — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/commands/git-review-pr.md · 245 lines

How it starts

The opening of the file, as written. The whole thing — 245 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PR Review Command

IMPORTANT: Only run when invoked via /git-review-pr. Do NOT auto-run.

Goal: Review PRs for skills, commands, MCP servers.

0. Prerequisites

Check required tools:

command -v gh >/dev/null || echo "Warning: gh CLI not found - PR features unavailable"
command -v gemini >/dev/null || echo "Warning: gemini CLI not found - skip Gemini review"

If tools missing, continue w/ available features.

1. Identify Changes

git diff --name-only origin/main...HEAD  # full PR delta (multi-commit)
git diff --name-only HEAD~1..HEAD        # single commit only
gh pr diff --name-only                   # PR via GitHub CLI
Path Type
.claude/skills/*/ Skill
.claude/commands/*.md Command
mcp-servers/*/ MCP Server

2. Documentation Checks

CHANGELOG.md

git diff origin/main...HEAD -- CHANGELOG.md

Required: Entry under [Unreleased] w/ correct category & format - **scope**: Desc

If missing: FAIL

README.md

git diff origin/main...HEAD -- README.md
  • New skills → Core/Document Skills table
  • New commands → Commands table
  • New MCP → appropriate section

If missing: FAIL

3. Content Quality

Skills (.claude/skills/*/SKILL.md)

Structure:

  • YAML frontmatter (name, desc)
  • # Title heading
  • ## When to Use
  • Invocation instructions
  • Examples

Issues:

  • No dead code/unused imports
  • No hardcoded paths
  • No duplicate content
  • Not overly verbose
  • Scripts functional

Commands (.claude/commands/*.md)

Structure:

  • YAML frontmatter (name, desc, tools)
  • Goal statement
  • Step-by-step flow
  • Safety protocols

Issues:

  • No duplicate instructions
  • Safe commands (no destructive defaults)
  • Clear prompts
  • Proper escaping

MCP Servers (mcp-servers/*/README.md)

Read the full file on GitHub · 245 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 245 lines · 18 tokens per session scan B a5b11916e661

Subscribe to this mod's changes

review-pr is a command published in the GitHub repository hackermanishackerman/claude-skills-vault (2 stars, last pushed yesterday), licensed MIT. It adds 18 tokens to every session and 1,487 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). It is 100% identical to review-pr, differing in 0 lines, and is treated as a copy.