review-pr

review-pr is a skill for Claude Code, Codex from openonion/connectonion. It costs 27 tokens per session (276 once invoked), scanned A, original, Apache-2.0.

A guide for reviewing GitHub pull requests, which are proposed code changes submitted for discussion and approval. It checks the pull request's details, discussion, tests, and complete code changes.

In plain words
What is it for?
Use it to review a specified pull request or list open pull requests when no number is given. It reports important findings first and includes file and line references.
Why use it?
It organizes the review around concrete risks such as bugs, security issues, compatibility, error handling, and missing tests. This helps reviewers make an evidence-based merge decision.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review a specified pull request or list open pull requests when no number is given. It reports important findings first and includes file and line references.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openonion/connectonion/review-pr
About the project

ConnectOnion is an open-source, template-first toolkit for building, debugging, deploying, and operating AI agents. Developers use its command-line tools and Python runtime to create agents, add tools, connect services, deploy them, and make them callable by other agents, while the catalogue entries are related agents, skills, and instructions.

openonion/connectonion · 1,480 stars · on GitHub · docs.connectonion.com

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 openonion/connectonion --skill review-pr
Clone the repo
git clone --depth 1 https://github.com/openonion/connectonion

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/openonion/connectonion/review-pr/github.svg)](https://agentmods.dev/skills/openonion/connectonion/review-pr)
Your own site
<a href="https://agentmods.dev/skills/openonion/connectonion/review-pr"><img src="https://agentmods.dev/badge/skills/openonion/connectonion/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/openonion/connectonion/review-pr"><img src="https://agentmods.dev/badge/skills/openonion/connectonion/review-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 276 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
  • 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.00027 $0.00276
Opus 5 $0.00014 $0.00138
Sonnet 5 $0.00005 $0.00055
Haiku 4.5 $0.00003 $0.00028

Measured 9d ago against content hash 1a45fad07d68, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, 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 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.

connectonion/useful_skills/review-pr/SKILL.md · 40 lines

What it actually says

PR Review Skill

Review a GitHub pull request for code quality, correctness, and best practices.

Instructions

  1. Get PR information:

    • If no PR number is given, list open PRs.
    • With a PR number, read its metadata, checks, discussion, and complete diff.
  2. Analyze the changes:

    • What does the PR do?
    • Does the code follow project conventions?
    • Are there correctness, error-handling, compatibility, or security bugs?
    • Do tests cover the important failure modes?
  3. Provide an evidence-based review:

    • Put concrete findings first, ordered by severity.
    • Include file and line references.
    • Distinguish blockers from optional suggestions.
    • Approve only after tests and CI support the conclusion.

Review Checklist

  • Code correctness
  • Project conventions
  • Error handling
  • Compatibility and performance
  • Test coverage
  • Security considerations
  • Documentation impact

Reading or submitting a GitHub review must use the agent's normal approval and authentication policy; this skill grants no shell or network permissions.

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 · 40 lines · 27 tokens per session scan A 1a45fad07d68

Subscribe to this mod's changes

review-pr is a skill published in the GitHub repository openonion/connectonion (1,480 stars, last pushed today), licensed Apache-2.0. It adds 27 tokens to every session and 276 once invoked, about $0.0001 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

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

simplify

Reduce unnecessary code complexity, duplication, indirection, or abstraction while preserving observable behavior and validating equivalence. Use for simplify, cleanup, or behavior-preserving refactor requests; do not use for adding features, diagnosing an unexplained failure, broad code review without a…

bigduu/Bamboo-agent · 68 tokens

Codex

Guides operator-owned delegation to Codex when the task fits a bounded coding lane, review pass, or worktree-isolated implementation track.

agentic-in/elephant-agent · 31 tokens

OpenCode

Frames OpenCode as an operator-controlled coding lane for bounded implementation or review work inside a real repository.

agentic-in/elephant-agent · 23 tokens

Himalaya Email

Work with IMAP email from the terminal using Himalaya for inbox reads, draft review, and carefully confirmed outbound sends.

agentic-in/elephant-agent · 29 tokens