review-pr

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

A pull-request review command for checking coding-agent skills, commands, and MCP servers. It examines changed files, documentation, content, and formatting.

In plain words
What is it for?
Use it to review a GitHub pull request or local changes involving skills, commands, or MCP servers.
Why use it?
It catches missing documentation and quality problems before a change is merged. It can also warn when optional review tools are unavailable.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code; mentions Gemini CLI.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python .claude/skills/token-formatter/scripts/compress.py <file> --level 2.

Good fit Use it to review a GitHub pull request or local changes involving skills, commands, or MCP servers.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

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

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/georgekhananaev/claude-skills-vault/git-review-pr/github.svg)](https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/git-review-pr)
Your own site
<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/git-review-pr"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/git-review-pr/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-pr

Your own site · 80×15
<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/git-review-pr"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/git-review-pr.svg" alt="Reviewed on agentmods" width="80" 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. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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 11d ago against content hash a5b11916e661, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 11d 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

Copies of this mod

1 near-identical copy found in the catalogue:

  • review-pr — 100% identical, 0 lines differ
.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. 11d 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 georgekhananaev/claude-skills-vault (28 stars, last pushed 1mo ago), 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). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.