voicebox.sh: Skill for Claude Code

.agents/skills/triage-prs/SKILL.md

triage-prs is a skill for Claude Code, Codex from drhousejunior982-cyber/voicebox.sh. It costs 80 tokens per session (3,228 once invoked), scanned A, a copy of triage-prs, MIT.

A workflow for reviewing and processing open GitHub pull requests, which are proposed code changes. It classifies them, records a plan, and works through the selected merges.

In plain words
What is it for?
Use it before a minor or major release to identify changes that must be merged, may be merged, are outdated, or should wait. It uses an isolated worktree so review work stays separate from the main checkout.
Why use it?
It helps a maintainer clear a large review backlog before a release while keeping decisions and follow-up work tracked.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is drhousejunior982-cyber/voicebox.sh's own configuration. It tells Claude Code and Codex how to work on voicebox.sh itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything voicebox.sh configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is git worktree add ../voicebox-pr-review -b pr-review-<VERSION> main.

Reuse

Borrowing it

Nothing to install: this file belongs to drhousejunior982-cyber/voicebox.sh. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/drhousejunior982-cyber/voicebox.sh/main/.agents/skills/triage-prs/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/drhousejunior982-cyber/voicebox.sh

Made for: Claude Code, Codex.

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 triage-prs

README.md
[![agentmods](https://agentmods.dev/badge/skills/drhousejunior982-cyber/voicebox.sh/triage-prs/github.svg)](https://agentmods.dev/skills/drhousejunior982-cyber/voicebox.sh/triage-prs)
Your own site
<a href="https://agentmods.dev/skills/drhousejunior982-cyber/voicebox.sh/triage-prs"><img src="https://agentmods.dev/badge/skills/drhousejunior982-cyber/voicebox.sh/triage-prs/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 triage-prs

Your own site · 80×15
<a href="https://agentmods.dev/skills/drhousejunior982-cyber/voicebox.sh/triage-prs"><img src="https://agentmods.dev/badge/skills/drhousejunior982-cyber/voicebox.sh/triage-prs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,228 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 100% copy Near-identical to another mod 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.00080 $0.03228
Opus 5 $0.00040 $0.01614
Sonnet 5 $0.00016 $0.00646
Haiku 4.5 $0.00008 $0.00323

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

Security

Grade A, and why

triage-prs 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 12d 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.

Origin

This is a copy

100% identical to triage-prs — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/triage-prs/SKILL.md · 300 lines

How it starts

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

Triage PRs

Goal

Turn a backlog of open PRs into a shipped set of merges in a single focused session. Produce a tracked, resumable plan (<VERSION>_PR_TRIAGE.md), then work it — rebasing where needed, merging in isolation-safe batches, applying post-merge follow-ups, and closing superseded or partially-applicable PRs with credit to their authors.

This skill pairs with draft-release-notes and release-bump: triage first, then draft notes against the new main, then cut the release.

When to use

  • Before a minor or major release when 10+ open PRs have accumulated
  • When you want to unblock merging without losing the narrative of what's landing
  • When you know you can't personally review every PR deeply, but need to land the critical subset fast

Prerequisites

  • gh CLI authenticated against the repo
  • A dedicated worktree for PR review (avoid contaminating main with checkouts of contributor branches)
  • Clarity on the target version — the triage doc is named after it (e.g. 0.4.0_PR_TRIAGE.md)

Workflow

1. Set up an isolated PR-review worktree

git worktree list  # check for stale ones first
git worktree prune
git worktree add ../voicebox-pr-review -b pr-review-<VERSION> main

Keep the main worktree for release-prep work (changelog drafts, direct-to-main follow-ups). Keep the review worktree for gh pr checkout — each checkout moves HEAD to a contributor branch, which you don't want to do in the main worktree.

2. Gather metadata for every open PR

gh pr list --state open --limit 50 --json \
  number,title,author,isDraft,mergeable,mergeStateStatus,files,additions,deletions,reviewDecision,statusCheckRollup,maintainerCanModify \
  --jq '.[] | {num: .number, title, author: .author.login, mergeable, state: .mergeStateStatus, canModify: .maintainerCanModify, changes: "+\(.additions)/-\(.deletions)", files: [.files[].path]}'

You want, for each PR:

  • Size (+additions/-deletions)
  • Mergeable state (CLEAN, UNSTABLE, DIRTY = conflicts, UNKNOWN = GitHub still computing)
  • Whether maintainer edits are allowed on the branch (needed later if you rebase for the author)
  • File paths touched (helps spot overlaps between PRs)

Read the full file on GitHub · 300 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. 12d ago First seen · 300 lines · 80 tokens per session scan A 0a53c9151af4

Subscribe to this mod's changes

triage-prs is a skill published in the GitHub repository drhousejunior982-cyber/voicebox.sh (5 stars, last pushed 4mo ago), licensed MIT. It adds 80 tokens to every session and 3,228 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to triage-prs, differing in 0 lines, and is treated as a copy.

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

oss-maintainer

Run an open-source project's issue/PR/release loop like a careful human maintainer — triage to root cause, absorb community PRs before duplicating them, gate every merge, ship honest releases, and thank the people doing your QA for free.

debpalash/VoiceStudio · 55 tokens