wise-pr-watch

wise-pr-watch is a skill for Claude Code from e1024kb/wise-claude. It costs 236 tokens per session (1,480 once invoked), scanned A, original, MIT.

A pull-request watcher for GitHub, where a pull request is a proposed code change awaiting review and automated checks.

In plain words
What is it for?
Use it to monitor a branch's pull request, repair failing checks, commit fixes, and process reviews from people and review bots.
Why use it?
It keeps watch over checks such as linting and tests, identifies failures, and helps fix them until the pull request is ready.

Skill for Claude Code

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

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the wise plugin — 38 skills, 13 agents, 1 hook, 1 MCP server shipped together

Good fit Use it to monitor a branch's pull request, repair failing checks, commit fixes, and process reviews from people and review bots.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add e1024kb/wise-claude
Claude Code
/plugin install wise

Made for: Claude Code.

Or install wise, the plugin that ships this one along with the rest of its 38 skills, 13 agents, 1 hook, 1 MCP server.

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 wise-pr-watch

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/e1024kb/wise-claude/wise-pr-watch"><img src="https://agentmods.dev/badge/skills/e1024kb/wise-claude/wise-pr-watch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 236 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,480 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.00236 $0.01480
Opus 5 $0.00118 $0.00740
Sonnet 5 $0.00047 $0.00296
Haiku 4.5 $0.00024 $0.00148

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

Security

Grade A, and why

wise-pr-watch 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 2d 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.

plugins/wise/skills/wise-pr-watch/SKILL.md · 153 lines

How it starts

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

/wise-pr-watch — watch a PR's pipelines and drive fixes

Why this skill exists

After a PR lands, the ritual is: watch checks, fix the failures, push, repeat until green. This skill is that loop, detached from PR creation / reviewer attach so you can run it on any PR whenever you want to hand off CI babysitting. (The ticket-auto workflow runs an autonomous analogue of the same procedure.)

Single source of truth for the watch logic: plugins/wise/references/pr/watch-pipelines.md. The drafting routine the fix path commits with lives at plugins/wise/references/pr/commit-from-fix.md (distilled from wise-commit-message §3–§6). This skill reads watch-pipelines.md at run time and follows it.

Invocation

/wise-pr-watch
/wise:wise-pr-watch         # canonical namespaced form

No positionals, no flags.

Run on another harness (--on)

If $ARGUMENTS contains --on <harness>[:<model>[:<effort>]] (or --on ask / a bare --on), do NOT run the procedure below in this conversation. Strip the --on tokens (everything left is SKILL_ARGS), then read ${CLAUDE_PLUGIN_ROOT}/references/dispatch.md and follow it with:

  • SKILL_MD = ${CLAUDE_PLUGIN_ROOT}/skills/wise-pr-watch-auto/SKILL.md
  • SKILL_ARGS = the remaining tokens

--on ask (or a bare --on) picks harness, model and effort through one composite AskUserQuestion built from the engine's auth --json and models output. The reference probes the harness login, validates model and effort against the engine catalog, and runs the procedure as a headless child via engine.sh dispatch; you only relay its result. Without --on, this section does not apply.

Procedure

This skill does NOT probe dependencies up-front. If gh / git is missing or gh is unauthenticated, the first command below fails with a clean error and Claude surfaces that to the user with a pointer at /wise-init.

1. Verify a PR exists for this branch

BRANCH="$(git rev-parse --abbrev-ref HEAD)"
PR_JSON="$(gh pr view --json number,url 2>/dev/null)"

Read the full file on GitHub · 153 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. 2d ago Changed · +17 lines 53fd843e661f
  2. 9d ago First seen · 136 lines · 236 tokens per session scan A 0a5bc1c8f22f

Subscribe to this mod's changes

wise-pr-watch is a skill published in the GitHub repository e1024kb/wise-claude (4 stars, last pushed yesterday), licensed MIT. It adds 236 tokens to every session and 1,480 once invoked, about $0.0012 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-31.

Related

Other skills, from other repositories

release

Bump a plugin's version, write a detailed changelog entry for the upgrade skill to consume, and commit+push. Takes a plugin slug argument identifying which plugin under plugins/ to release. Use this skill whenever the user says "release", "version bump", "cut a release", "changelog and push", or finishes a set of…

gtapps/claude-code-hermit · 104 tokens

pre-release-review

Run the pre-release gate for this multi-plugin monorepo: establish each plugin's release boundary from its last reachable tag to HEAD, audit every changed plugin's [Unreleased] changelog against the actual code diff, identify contract-surface and breaking changes, and, per the objective the user picks up front, either…

gtapps/claude-code-hermit · 188 tokens

commit

Changelog and commit — lightweight motion for day-to-day plugin dev work in the monorepo. One commit per plugin scope; CHANGELOG and staging routed by detected slug. Trigger when the user says "commit", "commit this", "save this", "wrap this up", "let's commit", or finishes a change and wants to capture it. NOT for…

gtapps/claude-code-hermit · 90 tokens

fleet-release

Use this skill whenever the user wants to release, ship, prep, or cut versions for two or more plugins together on the current branch. Trigger on phrasings like "release both plugins", "ship them together", "release all changed plugins", "fleet release", "multi-plugin release", "release in order", or "release…

gtapps/claude-code-hermit · 96 tokens

spawn-session

Spawn a background Claude Code helper in its own git worktree, watch it until idle, and relay its report to the operator. Use when the operator says "spawn a helper", "spawn-session", "run this in a background session", or names /spawn-session.

gtapps/claude-code-hermit · 57 tokens

github-pr-creation

Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing…

fvadicamo/dev-agent-skills · 75 tokens