pr-reviewer

pr-reviewer is a skill for Claude Code, Codex from Fu-Jie/openwebui-extensions. It costs 41 tokens per session (1,497 once invoked), scanned A, original, MIT.

A workflow for handling comments left by reviewers on an open GitHub pull request, which is a proposed set of code changes for review.

In plain words
What is it for?
Use it when a pull request has pending comments, the local branch matches the submitted branch, and the GitHub command-line tool is authenticated.
Why use it?
It gathers scattered review feedback, sorts issues by severity, and helps complete the requested fixes and follow-up responses in one cycle.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/check_version_consistency.py.

Good fit Use it when a pull request has pending comments, the local branch matches the submitted branch, and the GitHub command-line tool is authenticated.

Compare 6 skills 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/Fu-Jie/openwebui-extensions
agentmods
npx agentmods add skills/fu-jie/openwebui-extensions/pr-reviewer

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/pr-reviewer/github.svg)](https://agentmods.dev/skills/fu-jie/openwebui-extensions/pr-reviewer)
Your own site
<a href="https://agentmods.dev/skills/fu-jie/openwebui-extensions/pr-reviewer"><img src="https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/pr-reviewer/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 pr-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/fu-jie/openwebui-extensions/pr-reviewer"><img src="https://agentmods.dev/badge/skills/fu-jie/openwebui-extensions/pr-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,497 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 121
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
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.00041 $0.01497
Opus 5 $0.00020 $0.00749
Sonnet 5 $0.00008 $0.00299
Haiku 4.5 $0.00004 $0.00150

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

Security

Grade A, and why

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

.agent/skills/pr-reviewer/SKILL.md · 181 lines

How it starts

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

PR Reviewer

Overview

This skill automates the response cycle for code review. When a reviewer leaves comments on a Pull Request, this skill fetches all pending feedback, categorizes issues by severity, implements fixes, and submits a follow-up commit with appropriate review response comments.

Prerequisites

  • An open PR exists with pending review comments
  • The local branch matches the PR's head branch
  • gh CLI is authenticated

Workflow

Step 1 — Fetch Review State

Retrieve all review comments and overall review status:

# Get overall review decisions
PAGER=cat GH_PAGER=cat gh pr view <PR-NUMBER> --json reviews,reviewDecision,headRefName \
  --jq '{decision: .reviewDecision, reviews: [.reviews[] | {author: .author.login, state: .state, body: .body}]}'

# Get inline code comments (specific line comments)
PAGER=cat GH_PAGER=cat gh api repos/Fu-Jie/openwebui-extensions/pulls/<PR-NUMBER>/comments \
  --jq '[.[] | {path: .path, line: .line, body: .body, author: .user.login, id: .id}]'

# Get general issue comments
PAGER=cat GH_PAGER=cat gh issue view <PR-NUMBER> --comments --json comments \
  --jq '[.comments[] | {author: .author.login, body: .body}]'

Confirm the current local branch matches the PR head:

git branch --show-current

If mismatched, checkout the correct branch first.

Step 2 — Categorize Review Feedback

Group feedback into categories:

Category Examples Action
Code Bug Logic error, incorrect variable, broken condition Fix code immediately
Style / Formatting Indentation, naming convention, missing blank line Fix code
Documentation Missing i18n key, wrong version in README, typo Fix docs
Design Question Suggestion to restructure, alternative approach Discuss with user before implementing
Nitpick / Optional Minor style preferences reviewer marked as optional Fix if quick; document if skipped
Blocking Reviewer explicitly blocks merge Must fix before proceeding

Read the full file on GitHub · 181 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 · 181 lines · 41 tokens per session scan A 0bddd832ae25

Subscribe to this mod's changes

pr-reviewer is a skill published in the GitHub repository Fu-Jie/openwebui-extensions (307 stars, last pushed 5d ago), licensed MIT. It adds 41 tokens to every session and 1,497 once invoked, about $0.0002 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.