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.
/plugin marketplace add e1024kb/wise-claude/plugin install wiseWrote 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.
[](https://agentmods.dev/skills/e1024kb/wise-claude/wise-pr-watch)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.mdSKILL_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)"
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.
- 2d ago Changed · +17 lines 53fd843e661f
- 9d ago First seen · 136 lines · 236 tokens per session scan A 0a5bc1c8f22f
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.
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…
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…
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…
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…
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.
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…