wise-pr-add-reviewers

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

A workflow for attaching Copilot code review and chosen individual reviewers to the pull request (PR) for the current Git branch. It can use CODEOWNERS and organization members as reviewer suggestions and avoids requesting reviewers twice.

In plain words
What is it for?
Use it on an existing PR when you want Copilot code review plus one or more named reviewers. Reviewer names are entered as comma-separated account logins.
Why use it?
It gathers the reviewer choices in one step and prevents duplicate requests. It also checks that a PR exists and reports authentication or missing-tool errors clearly.

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 on an existing PR when you want Copilot code review plus one or more named reviewers. Reviewer names are entered as comma-separated account logins.

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-add-reviewers

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/e1024kb/wise-claude/wise-pr-add-reviewers"><img src="https://agentmods.dev/badge/skills/e1024kb/wise-claude/wise-pr-add-reviewers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,333 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.00154 $0.01333
Opus 5 $0.00077 $0.00666
Sonnet 5 $0.00031 $0.00267
Haiku 4.5 $0.00015 $0.00133

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

Security

Grade A, and why

wise-pr-add-reviewers 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 11d 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-add-reviewers/SKILL.md · 165 lines

How it starts

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

/wise-pr-add-reviewers — attach reviewers to the current branch's PR

Why this skill exists

Most PRs end up requesting Copilot code review plus 0–N individuals picked from CODEOWNERS or the org. This skill is the narrowed surface — just the reviewer attach step, on a PR that already exists (/wise-pr-create makes the PR; /wise-pr-watch drives CI).

Single source of truth for the reviewer logic: plugins/wise/references/pr/ensure-reviewers.md. This skill reads it at run time and follows it.

Invocation

/wise-pr-add-reviewers
/wise:wise-pr-add-reviewers         # canonical namespaced form

No positionals, no flags. Anything the user types beyond the skill name is ignored.

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 (command not found, or gh: auth status: not logged in) 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)"

If PR_JSON is empty (gh returned non-zero — no PR for this branch), STOP with:

No open PR found for branch <BRANCH>.

Create one first:
  /wise-pr-create

Do NOT attempt to create a PR here — that's /wise-pr-create's responsibility. This skill operates only on existing PRs.

Otherwise parse the JSON:

  • pr_number = .number
  • pr_url = .url

2. Detect the project path

PROJECT_PATH="$(git rev-parse --show-toplevel)"

3. Read and run ensure-reviewers.md (defaults + ask about extras)

Read the fragment:

Read: ${CLAUDE_PLUGIN_ROOT}/references/pr/ensure-reviewers.md

Follow its procedure with the context:

  • pr_number = <number>
  • pr_url = <url>
  • project.path = <PROJECT_PATH>

The fragment attaches Copilot (idempotent), asks via AskUserQuestion whether to add extra reviewers, and reverts its own defaults if the user picks Skip. Capture its final line and parse DEFAULTS_ATTACHED / EXTRAS_CHOICE:

Read the full file on GitHub · 165 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. 11d ago First seen · 165 lines · 154 tokens per session scan A 12a81d0e96a2

Subscribe to this mod's changes

wise-pr-add-reviewers is a skill published in the GitHub repository e1024kb/wise-claude (4 stars, last pushed today), licensed MIT. It adds 154 tokens to every session and 1,333 once invoked, about $0.0008 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

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

upstream

Opt-in upstream contribution workflow for process improvements and field lessons. Scans the consuming repo's local AGENTS.md, {{ agentsdir }}/team.toml, and commit history for emergent rules, sanitizes sensitive client context, formats governed rule origins, and drafts an upstream Pull Request or Issue to the upstream…

NexaDuo/mARC · 83 tokens

open-pr

Use this skill to submit the commits on the current branch as one pull request against a GitHub repository. Push the branch, open the PR with an imperative title and a body that names what changed and why, and post a follow-up ping only when CODEOWNERS resolves to one person. One branch per run, one pull request per…

khrichtchatyi/ship-it · 79 tokens

merge-quiz

Before merging or deploying the output of a long session, generate a change report with a comprehension quiz the user must pass. Use whenever the user says "merge", "deploy", "we're done", "wrap up", or at the end of any session that modified more than 150 lines or touched production-relevant code. Also invocable as…

orenluxy/fable-method · 78 tokens

fix-pr

Reads all unresolved review comments and threads on a change (PR/MR) — and its failing CI checks, which count as feedback too — implements the fixes, pushes, and replies to each thread. Tracker- and host-agnostic — GitHub via gh is the factory default; docs/agents/code-host.md overrides. Use when user says "fix pr…

sgomez/developer-skills · 94 tokens

quick-wrap

Short session close: commit, handle loose ends, stop. Not workstream-complete.

dbc-oduffy/coordinator-claude · 21 tokens