watch-review-requests

watch-review-requests is a skill for Claude Code from flurdy/agent-skills. It costs 39 tokens per session (6,026 once invoked), scanned A, original, MIT.

A scheduled monitor for direct GitHub requests to review code in the current repositories. For each new request, it runs one repository-specific review and pauses for a decision.

In plain words
What is it for?
It is for collecting review requests, analysing the requested repository, producing a review report, and waiting for a private, draft, deferred, or confirmed external outcome.
Why use it?
It prevents review requests from being missed and keeps reviews separate so their findings and follow-up decisions do not get mixed together.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool; mentions Claude Code.

Good fit It is for collecting review requests, analysing the requested repository, producing a review report, and waiting for a private, draft, deferred, or confirmed external outcome.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/flurdy/agent-skills/watch-review-requests
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 flurdy/agent-skills --skill watch-review-requests
Clone the repo
git clone --depth 1 https://github.com/flurdy/agent-skills

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 watch-review-requests

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/flurdy/agent-skills/watch-review-requests"><img src="https://agentmods.dev/badge/skills/flurdy/agent-skills/watch-review-requests.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,026 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: 2 findings, 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 Excessive Agency · line 8
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Rogue Agent · line 55
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00039 $0.06026
Opus 5 $0.00019 $0.03013
Sonnet 5 $0.00008 $0.01205
Haiku 4.5 $0.00004 $0.00603

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

Security

Grade A, and why

watch-review-requests 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test-skill-contract.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.

skills/watch-review-requests/SKILL.md · 461 lines

How it starts

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

Watch Review Requests

Watch the authenticated user's inbound GitHub review requests for the current repository plus registered workspace repositories. For each newly actionable direct request, run the repository-qualified read-only /review-pr workflow exactly once, render its complete report, then pause for disposition. Process one review at a time so analysis, reports, and questions cannot interleave.

The bounded collector resolves repository scope inside each tick. It never falls back to an account-wide search: unavailable or empty local scope fails closed rather than searching the authenticated user's other GitHub repositories. Existing session state for repositories no longer in scope is discarded by the collector.

This watcher does not replace /review-pr. It composes the bounded queue collector and immutable review contract. No external action is the default-safe outcome.

Usage

/watch-review-requests                              # adaptive; stop 18:00; at most 3 reviews
/watch-review-requests 10m 17 --reviews 5          # fixed 10m; stop 17:00; at most 5 reviews
/watch-review-requests reset                       # stop and clear session-local watcher state
/watch-review-requests recheck owner/repo#123      # one immediate selected recheck; no watcher start
/watch-review-requests disposition owner/repo#123  # reopen one deferred or saved draft
/watch-review-requests status                      # show runtime, queue, and budget state

Parse at most one positive \d+m interval, one stop hour from 0 through 23 (default 18), and one --reviews N or --reviews=N budget from 1 through 20 (default 3). Reject unknown, duplicate, missing, or malformed arguments. No interval means adaptive cadence. reset, recheck owner/repo#123, disposition owner/repo#123, and status are user commands, not watcher starts. Runtime-injected ticks use exactly tick adaptive|fixed --reviews N --stop-at ISO_8601; accept those tokens only in internal tick mode and reject them on a normal start.

Read the full file on GitHub · 461 lines

Files

What ships with it

1 file 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. 7d ago First seen · 461 lines · 39 tokens per session scan A 9eaa6e9b054b

Subscribe to this mod's changes

watch-review-requests is a skill published in the GitHub repository flurdy/agent-skills (9 stars, last pushed 4d ago), licensed MIT. It adds 39 tokens to every session and 6,026 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-09-03.

Related

Other skills, from other repositories

review-implement-phase

Implements triaged review actions, commits focused fixes, and posts Done plus resolves threads. Use when the user wants only the implementation phase of the review-framework workflow.

prisma/orm · 38 tokens

engram-branch-pr

PR creation workflow for Engram following the issue-first enforcement system. Trigger: When creating a pull request, opening a PR, or preparing changes for review.

Gentleman-Programming/engram · 37 tokens

verify-behavior

Verify or reproduce visible product behavior by driving the real UI with pi-computer-use's checked tools, requiring verified expect postconditions and durable state evidence for meaningful UI flows. Use when triage needs visual reproduction, implementation needs behavioral proof, review needs interactive confirmation…

nicknisi/dotfiles · 68 tokens

github-contributor

End-to-end playbook for shipping high-quality pull requests to open-source projects you don't maintain — discovery, CONTRIBUTING compliance, PR-size check, minimal-diff implementation, PR description with AI-assisted disclosure, conflict resolution, and post-submission maintainer interaction. Use whenever creating…

daymade/claude-code-skills · 133 tokens

revdiff

Review diffs, files, and documents with inline annotations in a TUI overlay, or answer questions about revdiff usage, configuration, themes, and keybindings. Opens revdiff in agterm/tmux/zellij/herdr/kitty/wezterm/cmux/ghostty/iterm2/emacs-vterm, captures annotations, and addresses them. Works in git, hg, and jj repos…

umputun/revdiff · 248 tokens

write-pr

Reference standards for writing pull request titles and descriptions in the tldraw repository, plus the pre-flight comment sweep over the diff. Use as supporting guidance when another skill or workflow needs PR content standards, not as the user-facing create/update PR workflow.

tldraw/tldraw · 53 tokens