pr-watch-as-reviewer

pr-watch-as-reviewer is a skill for Claude Code, Codex from bostonaholic/team. It costs 37 tokens per session (907 once invoked), scanned A, original, MIT.

A reviewer-side monitoring procedure that watches a pull request until the review feedback is resolved, rechecks each resulting change, and approves once all settlements pass.

In plain words
What is it for?
Monitoring GitHub review threads and comments, re-reviewing pushed fixes, and approving a pull request when the review is complete.
Why use it?
It removes the need to repeatedly check for replies or new commits and ensures approval happens only after the reviewer's feedback has been addressed.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also agents/openai.yaml present. Also seen: mentions Codex.

Part of the team plugin — 93 skills, 13 agents, 2 hooks shipped together

Good fit Monitoring GitHub review threads and comments, re-reviewing pushed fixes, and approving a pull request when the review is complete.

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

Made for: Claude Code, Codex.

Or install team, the plugin that ships this one along with the rest of its 93 skills, 13 agents, 2 hooks.

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-watch-as-reviewer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/bostonaholic/team/pr-watch-as-reviewer"><img src="https://agentmods.dev/badge/skills/bostonaholic/team/pr-watch-as-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 907 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.
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.00037 $0.00907
Opus 5 $0.00018 $0.00453
Sonnet 5 $0.00007 $0.00181
Haiku 4.5 $0.00004 $0.00091

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

Security

Grade A, and why

pr-watch-as-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 yesterday.

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/pr-watch-as-reviewer/SKILL.md · 81 lines

How it starts

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

pr-watch-as-reviewer — reviewer-side watch-and-approve loop

pr-watch-as-reviewer is the reviewer-side mirror of pr-watch-as-author. You post review comments on a PR you are reviewing, then arm the skill. It polls until every piece of feedback you left is settled, re-reviews each settlement on substance as it lands, and only when every settlement passes casts gh pr review --approve on your behalf and stops. Model invocation is disabled (disable-model-invocation: true): on a PR with auto-merge enabled, an approval can transitively trigger an irreversible merge, so only a deliberate human invocation arms the watch. agents/openai.yaml restates the same guard for Codex as policy.allow_implicit_invocation: false.

Feedback comes in two shapes, and the watch tracks both:

  • a review thread — an inline comment anchored to a diff line, which GitHub gives a resolved/unresolved bit.
  • a plain PR comment — a top-level issue comment on the conversation tab, which GitHub gives no resolution bit at all. A whole-PR review posted as one comment body (the common shape for an automated or summary review) lands here.

That asymmetry drives the whole design below. A thread has an explicit author action — resolving it — that says "I am done with this". A plain comment has no such affordance: there is nothing for the author to click.

Neither is trusted on its own. The only thing that settles either is the state of the branch, read as it now stands. A resolve is a claim by the person whose code you are approving; it can be clicked over a concern that was never addressed. So every item is verified against the current code, always. The two shapes differ only in which way an unclear read falls:

  • a plain comment requires that the head advanced after it — no push since the comment means nothing could have addressed it — and an unclear read leaves it unsettled.
  • a resolved thread is verified too, but the author's explicit assertion earns deference: overturning it takes very high confidence and strong disagreement, not a quibble.

The approval body discloses how many approved items were of each shape, so a reader can see which evidence the approval rested on.

Every verdict is published where the author will see it. A reply that meets the concern resolves the thread. A reply that does not draws a rebuttal naming the specific gap. A reply that is read, judged, and then left sitting is the failure mode this skill exists to avoid: the author cannot tell a considered acceptance from an unread one, and a thread that stays open with no answer reads as a reviewer who disappeared. Silence is not an answer.

Read the full file on GitHub · 81 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. yesterday Changed · -10 tokens per session 6ccfbffd1758
  2. 7d ago Changed · -1,027 lines · -186 tokens per session fcff10e860ff
  3. 9d ago Changed · +181 lines · +29 tokens per session 75e60e8a55eb
  4. 12d ago First seen · 927 lines · 204 tokens per session scan A 5eb0c306014d

Subscribe to this mod's changes

pr-watch-as-reviewer is a skill published in the GitHub repository bostonaholic/team (11 stars, last pushed today), licensed MIT. It adds 37 tokens to every session and 907 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.