pr-interactive-review

pr-interactive-review is a skill for Claude Code from EntityProcess/allagents. It costs 46 tokens per session (2,727 once invoked), scanned A, original, MIT.

A local web page for reviewing a GitHub pull request, which is a proposed code change awaiting review. It displays structured review findings and lets reviewers read and organize comments without sending them to GitHub.

In plain words
What is it for?
Use it to inspect business context, findings, and reviewer comments from an existing structured pull request review.
Why use it?
It gives reviewers an interactive way to triage findings without working through a long text report or changing the remote pull request.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the engineering plugin — 2 skills shipped together

Good fit Use it to inspect business context, findings, and reviewer comments from an existing structured pull request review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/entityprocess/allagents/pr-interactive-review
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 EntityProcess/allagents --skill pr-interactive-review
Clone the repo
git clone --depth 1 https://github.com/EntityProcess/allagents

Made for: Claude Code.

Or install engineering, the plugin that ships this one along with the rest of its 2 skills.

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-interactive-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/entityprocess/allagents/pr-interactive-review"><img src="https://agentmods.dev/badge/skills/entityprocess/allagents/pr-interactive-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,727 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 medium

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 →

  • medium Data Exfiltration · line 113
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00046 $0.02727
Opus 5 $0.00023 $0.01363
Sonnet 5 $0.00009 $0.00545
Haiku 4.5 $0.00005 $0.00273

Measured yesterday against content hash 39d1fda6acde, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

pr-interactive-review scanned grade A with 1 finding 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 yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/review-site.ts), 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sS "http://127.0.0.1:<port>/api/comments?status=unanswered"
plugins/engineering/skills/pr-interactive-review/SKILL.md · 188 lines

How it starts

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

Interactive Pull Request Review

Use an existing review skill when one is available, and prefer its structured JSON output. This skill consumes structured findings and presents them locally; it does not select reviewer personas, assign severity, discover review scope, validate findings, or deduplicate findings.

Safety boundaries

  • Accept a GitHub PR number or https://github.com/<owner>/<repo>/pull/<number> URL.
  • Prefer the installed review skill's structured or agent output when it supports one. Do not parse markdown output.
  • Store generated review data and comments outside the repository. The default workspace is $XDG_STATE_HOME/allagents/pr-interactive-review/ (or ~/.local/state/allagents/pr-interactive-review/).
  • Never put tokens, cookies, GitHub authentication, comments, or generated review data in the repository.
  • The server binds to 127.0.0.1 by default. Non-loopback binding requires the explicit --expose option and emits a warning because findings and comments become network-visible.
  • Comments are local only. Do not post them to GitHub. This skill does not implement GitHub posting.

Obtain a structured review

From the repository that owns the PR, use an existing review skill when one is available. Ask it for structured JSON and pass the PR target directly. If no review skill is installed, use the host's available code-review capability and produce the same structured review artifact without inventing findings.

The review artifact must contain status, verdict, intent, scope.head_sha, and the validated findings array. Require status: complete; stop on failed, degraded, or skipped. Save the artifact outside the repository as review.json and consume that JSON directly. Do not scrape, transform, or infer findings from a human markdown report.

Concrete finding scenarios

After the review completes, actively enrich every finding without modifying review.json. For each stable #, inspect only its structured evidence and first_evidence plus the exact cited path at the reviewed commit. Write a separate JSON sidecar beside the review artifact (or in the external review workspace) as interactive-scenarios.json, keyed by the stable finding IDs:

Read the full file on GitHub · 188 lines

Files

What ships with it

2 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. yesterday Changed · +58 lines 39d1fda6acde
  2. 2d ago First seen · 130 lines · 46 tokens per session scan A fa6fe4ff0427

Subscribe to this mod's changes

pr-interactive-review is a skill published in the GitHub repository EntityProcess/allagents (11 stars, last pushed 2d ago), licensed MIT. It adds 46 tokens to every session and 2,727 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.