review-prs

review-prs is a skill for Claude Code, Codex from googleapis/mcp-toolbox. It costs 162 tokens per session (3,523 once invoked), scanned A, original, Apache-2.0.

A structured review of a GitHub pull request against the repository's review checklist. A pull request is a proposed code change; the review checks its description, logic, tests, documentation, security, dependencies, and compatibility.

In plain words
What is it for?
Use it to review one or more pull requests for bugs, missing edge-case handling, breaking changes, weak test coverage, missing docs, unsafe input handling, or unsuitable dependencies.
Why use it?
It helps maintainers find important problems before merging a change. It produces a suggested verdict and a ready-to-post summary instead of requiring the reviewer to assemble one manually.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions subagents; mentions AGENTS.md.

Good fit Use it to review one or more pull requests for bugs, missing edge-case handling, breaking changes, weak test coverage, missing docs, unsafe input handling, or unsuitable dependencies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/googleapis/mcp-toolbox/review-prs
About the project

MCP Toolbox for Databases is an open-source Model Context Protocol server that connects AI agents, development environments, and applications to enterprise databases through ready-made or custom tools. It is for exploring schemas, querying data, generating code, and building specialized database tools for production agents. The catalogue includes its skills, instructions, and MCP server integration.

googleapis/mcp-toolbox · 16,330 stars · on GitHub · mcp-toolbox.dev

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.

Any agent
npx skills add googleapis/mcp-toolbox --skill review-prs
Clone the repo
git clone --depth 1 https://github.com/googleapis/mcp-toolbox

Made for: Claude Code, Codex.

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-prs

README.md
[![agentmods](https://agentmods.dev/badge/skills/googleapis/mcp-toolbox/review-prs/github.svg)](https://agentmods.dev/skills/googleapis/mcp-toolbox/review-prs)
Your own site
<a href="https://agentmods.dev/skills/googleapis/mcp-toolbox/review-prs"><img src="https://agentmods.dev/badge/skills/googleapis/mcp-toolbox/review-prs/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-prs

Your own site · 80×15
<a href="https://agentmods.dev/skills/googleapis/mcp-toolbox/review-prs"><img src="https://agentmods.dev/badge/skills/googleapis/mcp-toolbox/review-prs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 162 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,523 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. Third-party audits
  • Snyk warn 7 Sept 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00162 $0.03523
Opus 5 $0.00081 $0.01761
Sonnet 5 $0.00032 $0.00705
Haiku 4.5 $0.00016 $0.00352

Measured 9d ago against content hash 356b3ea8491f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

review-prs 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 9d 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/maintainer/review-prs/SKILL.md · 254 lines

How it starts

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

Review PRs (mcp-toolbox)

A review here is a proposal the maintainer edits and posts, not a rubber stamp. The value is a fast, grounded read of the diff against the team's conventions.

Goal

Given a PR number or link, deliver a review the maintainer can post in seconds: a suggested verdict (approve / request changes / comment), the findings that back it grouped by severity so the important things aren't buried, and a paste-ready summary comment.

Prerequisites

  • gh authenticated for googleapis/mcp-toolbox, plus the PR number(s). A GitHub MCP server substitutes for gh if it isn't available: the gh commands below map to its read/list tools.

Workflow

Step 1: Read the source of truth

Read these live, not from memory. All three are symlinks to the repo-root files, so they track main; cite them by their root names.

  • references/maintainer-playbook.md: Reviewer's Checklist, SLO/release context, release candidate labeling.
  • references/CONTRIBUTING.md: title/scope format (Conventional Commits, with the type table), keep-PRs-small, link-an-issue. Cite for title, description, and process findings.
  • references/DEVELOPER.md: tool/source naming, error taxonomy, the patterns for adding a source/tool/integration test, CI-enforced docs structure, local test/lint commands. Cite for code, test, and docs findings. Prefer it over GEMINI.md (CLAUDE.md/AGENTS.md symlink to it), which only summarizes.

Step 2: Fetch the PR, its diff, and its checks

gh pr view <n> --repo googleapis/mcp-toolbox --json number,title,body,author,labels,files,additions,deletions,commits,baseRefName,headRefName,state,isDraft,reviewDecision
gh pr diff <n> --repo googleapis/mcp-toolbox
gh pr checks <n> --repo googleapis/mcp-toolbox

Step 3: Triage before reviewing

Three shapes end the review early or change its bar:

  • Auto-generated (renovate, release-please): the only question is whether checks are green. If so, propose merge and stop.
  • Draft (isDraft): review lightly and say so; the author isn't asking for a final pass.
  • Non-code / policy (third-party badge, backlink, promotional README line, often a drive-by contributor): acceptance is a maintainer policy call, not a code question. Say that plainly instead of manufacturing code findings, and still check title convention and CI. Mark any URL you haven't fetched [UNVERIFIED].

Read the full file on GitHub · 254 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 254 lines · 162 tokens per session scan A 356b3ea8491f

Subscribe to this mod's changes

review-prs is a skill published in the GitHub repository googleapis/mcp-toolbox (16,330 stars, last pushed today), licensed Apache-2.0. It adds 162 tokens to every session and 3,523 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories

qa-review

QA review for code changes — test coverage analysis, edge case identification, test plan generation, regression detection, test health tracking over time.

suyoumo/ClawProBench · 30 tokens

commit

Prepare and create git commits for dynobox. Use this skill whenever the user asks to commit, create a commit, suggest a commit message, stage changes, or prepare changes for review. Also use it when the user asks whether the changelog should be updated before committing.

dynobox/dynobox · 59 tokens

review

Review code changes, pull requests, patches, or a scoped code area for actionable correctness, security, compatibility, and test risks with file and line evidence. Use for review or audit requests; do not use for general proofreading, feature implementation, or debugging a reported failure when the user wants a fix.

bigduu/Bamboo-agent · 62 tokens

debug

Diagnose a concrete failure, regression, crash, hang, flaky test, or incorrect runtime behavior by reproducing it, testing hypotheses, and identifying the evidence-backed root cause. Use when symptoms or failing output exist; do not use for feature implementation without a failure, general code review, or a conceptual…

bigduu/Bamboo-agent · 64 tokens

speckit-review-tests

Test coverage quality analysis — behavioral coverage, critical gap identification, test resilience evaluation.

opsmill/infrahub-mcp · 22 tokens

building-pydantic-ai-agents

Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydanticai, or asks to build an AI agent, add tools/capabilities, defer capability loading, stream output, define agents…

pydantic/pydantic-ai · 85 tokens