pr-reviewer

pr-reviewer is a skill for Claude Code from idavidov13/agentic-playwright. It costs 278 tokens per session (4,393 once invoked), scanned A, original, MIT.

A procedure for reviewing a Git branch as a pull request, meaning a proposed set of code changes before it is merged. It compares the branch with the repository's base branch and checks the project's own rules.

In plain words
What is it for?
Use it to review a branch against its merge base, inspect changed files under the applicable project instructions, and produce a justified review report.
Why use it?
It helps find real bugs, rule violations, and missing test coverage without turning personal preferences into review findings. The result is a report; it does not change the code.

Skill for Claude Code

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

Good fit Use it to review a branch against its merge base, inspect changed files under the applicable project instructions, and produce a justified review report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/idavidov13/agentic-playwright/pr-reviewer
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 idavidov13/agentic-playwright --skill pr-reviewer
Clone the repo
git clone --depth 1 https://github.com/idavidov13/agentic-playwright

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/idavidov13/agentic-playwright/pr-reviewer.svg)](https://agentmods.dev/skills/idavidov13/agentic-playwright/pr-reviewer)
Your own site
<a href="https://agentmods.dev/skills/idavidov13/agentic-playwright/pr-reviewer"><img src="https://agentmods.dev/badge/skills/idavidov13/agentic-playwright/pr-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 278 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,393 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: 5 findings, 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 Agent Snooping · line 3
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
  • medium MCP Rug Pull · line 88
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 89
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 95
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 111
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00278 $0.04393
Opus 5 $0.00139 $0.02197
Sonnet 5 $0.00056 $0.00879
Haiku 4.5 $0.00028 $0.00439

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

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/scan-constitution.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/pr-reviewer/SKILL.md · 222 lines

How it starts

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

PR Reviewer

Review a branch the way a careful human reviewer on this team would: against this repo's own contract, not generic best practice. The contract is CLAUDE.md (the Constitution — MUST / SHOULD / WON'T tables) plus the specialized .claude/skills/ that govern whatever the branch actually touched. A finding only counts if you can tie it to a concrete rule, a real bug, or a coverage gap — opinion without a rule behind it is noise.

The deliverable is a report, not a code change. Fixing is a separate, opt-in step the user has to ask for after seeing the findings.


Input

The user gives a branch name and a review ask. The base branch is auto-resolved in Phase 1 — the remote's default head (origin/HEAD), which is main in some repos and master in others — and falls back to master only if that can't be read. Accept an override if the user names a different base. Nothing else is required; everything you need is in the diff and the repo.


Workflow

Run these phases in order. Phases 1–7 are the review and always run (Phase 6, the Constitution checklist, is a mandatory gate before the report). Phases 8–9 are gated and only run if the user opts in.

Phase 1 — Fetch & switch

# Resolve the base branch (don't hardcode). Use the user's override if given,
# else the remote's default head, else master.
BASE=$(git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null | sed 's#^origin/##')
BASE=${BASE:-master}

git fetch origin "<branch>" "$BASE"
git switch "<branch>"      # or: git checkout <branch>
  • Dirty working tree — if git status --porcelain is non-empty, stop and ask before switching. Offer to git stash and restore afterward; never switch over uncommitted work silently.
  • Missing branch — if the branch isn't on origin, report that and stop.
  • Everywhere below, master is shorthand for the resolved $BASE.

Phase 2 — Diff against the merge-base (THREE-DOT, MANDATORY)

Always diff with three dots. This is not a preference — a two-dot diff is a defect in the review itself:

Read the full file on GitHub · 222 lines

Files

What ships with it

4 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. 8d ago First seen · 222 lines · 278 tokens per session scan A e0234e86e79c

Subscribe to this mod's changes

pr-reviewer is a skill published in the GitHub repository idavidov13/agentic-playwright (161 stars, last pushed 4d ago), licensed MIT. It adds 278 tokens to every session and 4,393 once invoked, about $0.0014 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

vindicate

Use when the user wants to write, add, fix, stabilize (flaky), refactor, run, or audit Playwright browser tests, draft requirements/stories from a recording (no tests), find test-coverage gaps, scaffold a Playwright project, or set up Playwright CI. Vindicate's guided workflow for grounded, conformant Playwright test…

OpenEvident/vindicate · 77 tokens

ac-qa-gh-pr-review

Reviews pull requests through a bounded shared worker-wave review flow, consolidated reporting, and user-confirmed gh pr review actions.

WaterplanAI/agentic-config · 33 tokens

libretranslate-markdown-i18n

Machine-translate Markdown / Obsidian / Quartz content into other languages using a self-hosted LibreTranslate instance, preserving frontmatter, headings, emojis, bold/italic, wikilinks (![[...]]/[[...]]) and internal links. Use whenever a user wants to auto-translate a Markdown vault, Obsidian notes, or a…

pedroiff0/awesome-skills · 127 tokens

awesome-skills-master

Master catalog orchestrator and autonomous installer for AI agents. Use when exploring, cloning, discovering, or installing skills, plugins, or MCP servers from awesome-skills without using interactive CLI tools. Guides environment detection, rule adaptation (.mdc/CLAUDE.md), MCP configuration, and strict author…

pedroiff0/awesome-skills · 66 tokens

docker-single-port-multi-instance

Consolidate multiple Docker Compose app instances (production / test / demo) behind ONE host port using an nginx reverse proxy that routes by URL path prefix (e.g. /demo). Use when a user wants 'one port, several apps/banks' or a demo reachable simultaneously from the main landing page with its own database.

pedroiff0/awesome-skills · 73 tokens

readme-template

Standard README template for repos — professional structure with badges, overview, table of contents, features/modules, stack, installation, configuration, tests, security, structure, docs, roadmap, contribute, license, author + RepoActivity sections (Star History, repo stats) + profile GIF footer. Use when creating…

pedroiff0/awesome-skills · 72 tokens