review-pr

review-pr is a skill for Claude Code from Ryan-M-Frank/volley. It costs 61 tokens per session (966 once invoked), scanned A, original, Apache-2.0.

A workflow that sends a GitHub pull request's changes to Codex for review through a connection to GitHub. It saves the review in a local .volley file and asks before posting it as a pull-request comment.

In plain words
What is it for?
Reviewing a numbered GitHub pull request, producing findings with file paths and line numbers, and optionally posting the review on the pull request.
Why use it?
It gathers the pull request details and changed code in one process, while keeping publication of the review under your control. It stops if the local Volley setup or GitHub login is missing.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Codex.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the volley plugin — 8 skills, 1 MCP server shipped together

Good fit Reviewing a numbered GitHub pull request, producing findings with file paths and line numbers, and optionally posting the review on the pull request.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Ryan-M-Frank/volley
Claude Code
/plugin install volley

Made for: Claude Code.

Or install volley, the plugin that ships this one along with the rest of its 8 skills, 1 MCP server.

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/skills/ryan-m-frank/volley/review-pr/github.svg)](https://agentmods.dev/skills/ryan-m-frank/volley/review-pr)
Your own site
<a href="https://agentmods.dev/skills/ryan-m-frank/volley/review-pr"><img src="https://agentmods.dev/badge/skills/ryan-m-frank/volley/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/skills/ryan-m-frank/volley/review-pr"><img src="https://agentmods.dev/badge/skills/ryan-m-frank/volley/review-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00061 $0.00966
Opus 5 $0.00030 $0.00483
Sonnet 5 $0.00012 $0.00193
Haiku 4.5 $0.00006 $0.00097

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

Security

Grade A, and why

review-pr scanned grade A with 0 findings 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 10d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/review-pr/SKILL.md · 89 lines

How it starts

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

/volley:review-pr

Codex reviews a PR. You decide whether to post the review as a comment.

Steps for Claude

  1. Validate input. PR number is required. If missing, tell user "Pass a PR number, e.g. /volley:review-pr 123" and stop.

  2. Verify .volley/ is initialized and the lock allows Claude to act.

    [ -d .volley ] || { echo "ERROR: .volley/ not found. Run /volley:setup first." >&2; exit 1; }
    [ -f .volley/STATE ] || { echo "ERROR: .volley/STATE not found. Run /volley:setup first." >&2; exit 1; }
    . "${CLAUDE_PLUGIN_ROOT}/scripts/lib.sh"
    volley_state_assert_active .volley/STATE claude || exit 1
    
  3. Fetch PR metadata and diff via gh. Write into .volley/ (transient, gitignored, no /tmp/ collision risk):

    PR_NUM=<n>
    gh pr view "$PR_NUM" --json title,body,baseRefName,headRefName > ".volley/pr-${PR_NUM}-meta.json"
    gh pr diff "$PR_NUM" > ".volley/pr-${PR_NUM}-diff.patch"
    

    If gh is not authenticated or PR doesn't exist, surface the error and stop.

  4. Build the review prompt for Codex.

    You are reviewing a GitHub pull request. Be specific. Cite file paths
    and line numbers from the diff.
    
    PR TITLE: <title>
    PR DESCRIPTION:
    <body>
    
    DIFF:
    <full diff content>
    
    Provide your review in this format:
    
    ## Verdict
    APPROVE | REQUEST_CHANGES | COMMENT
    
    ## Summary
    (2-3 sentences on what this PR does)
    
    ## Issues
    - (file:line — issue description)
    
    ## Nits
    - (file:line — minor suggestions)
    
    ## Suggestions for follow-up
    - (out-of-scope improvements not blocking this PR)
    
    Keep it under 800 words.
    
  5. Invoke Codex via MCP. Same tool and rules as /volley:review-plan step 6: resolve codex.review.model/reasoningEffort from .volley/config.json (+ local.json overrides); pass sandbox: "read-only", approval-policy: "never", cwd: <canonical git root>, and model/config.model_reasoning_effort when not inherit. Persist the returned threadId to .volley/local.json under roles.prReview; use mcp__codex__codex-reply only for follow-ups within this exchange. Across a restart, rehydrate from files rather than reusing the id over MCP. Surface an unavailable-model/bad-effort error verbatim - never silently substitute. Handle MCP-unreachable errors the same way (restart + re-run /volley:setup).

Read the full file on GitHub · 89 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. 10d ago First seen · 89 lines · 61 tokens per session scan A 1903839c9a66

Subscribe to this mod's changes

review-pr is a skill published in the GitHub repository Ryan-M-Frank/volley (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 61 tokens to every session and 966 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

procoder

Work like a senior developer in a repository governed by procoder: run the commit gate before calling anything done, format and lint through the binary, and drive the spec, plan, todo, backlog, and sprint chain in .procoder/. Use this skill when the repository contains a .procoder/ directory or an AGENTS.md naming…

azrtydxb/procoder · 101 tokens

code-review

The depth half of a review - the dimensions a diff is read against (correctness, boundaries, concurrency, failure paths, secrets, data access, structure, test quality) and the rule that a finding is refuted before it is reported. The verdict stays with the reviewer agent. Use when reviewing a diff or a pull request…

jjanczur/tyran · 80 tokens

receiving-code-review

Code review requires technical evaluation, not emotional performance.

myths-labs/muse · 9 tokens

deslop

The optimization pass, defined - delete before you add, one smell class per pass, behaviour pinned by a test that ran BEFORE the edit. Lints a SKILL.md and prose by the same instinct. Use for the per-story optimization pass or when code has grown noisy without growing capable.

jjanczur/tyran · 58 tokens

goal-plan-clean

A guide for creating a reusable plan-review loop. It repeatedly checks a plan, fixes blocking issues and suggestions, and stops after approval or a small number of review rounds.

restarter/lets-workflow · 125 tokens

loop-test

A local experiment for designing repeating checks with Claude Code’s loop command. It covers both fixed intervals and checks that schedule themselves again after each run.

restarter/lets-workflow · 112 tokens