address-pr-review

address-pr-review is a skill for Claude Code from timurgaleev/vibestack. It costs 69 tokens per session (3,722 once invoked), scanned A, original, MIT.

A workflow for handling unresolved pull-request review comments and failed CI checks. A pull request is a proposed code change, while CI automatically builds and tests code for each change.

In plain words
What is it for?
Use it to inspect review threads, fix or explain issues, run tests, push a commit, reply to reviewers, and resolve addressed threads.
Why use it?
It gathers the remaining feedback and failures into one pass, reducing the chance that a fix is missed before the pull request is merged. It also keeps the discussion and code changes in sync.

Skill for Claude Code

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

Good fit Use it to inspect review threads, fix or explain issues, run tests, push a commit, reply to reviewers, and resolve addressed threads.

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

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 address-pr-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/timurgaleev/vibestack/address-pr-review"><img src="https://agentmods.dev/badge/skills/timurgaleev/vibestack/address-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,722 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 pass 7 Sept 2026
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.00069 $0.03722
Opus 5 $0.00034 $0.01861
Sonnet 5 $0.00014 $0.00744
Haiku 4.5 $0.00007 $0.00372

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

Security

Grade A, and why

address-pr-review 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 3 executable files (bin/pr-ci-failures.sh, bin/pr-thread-reply.sh, bin/pr-threads.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/address-pr-review/SKILL.md · 345 lines

How it starts

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

When to invoke

Use when: "address the review", "fix the review comments", "resolve the threads", "CI is red on the PR", "iterate on the PR", or when a shipping flow hands back a PR that has unresolved threads or failing checks.

Preamble

eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)" 2>/dev/null || SLUG="unknown"
_LEARN_FILE="${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl"
if [ -f "$_LEARN_FILE" ]; then
  _LEARN_COUNT=$(wc -l < "$_LEARN_FILE" 2>/dev/null | tr -d ' ')
  echo "LEARNINGS: $_LEARN_COUNT entries loaded"
  if [ "$_LEARN_COUNT" -gt 5 ] 2>/dev/null; then
    ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true
  fi
else
  echo "LEARNINGS: none yet"
fi

{{include lib/snippets/session-host.md}}

{{include lib/snippets/decision-brief.md}}

{{include lib/snippets/working-protocols.md}}

{{include lib/snippets/state-protocols.md}}

User-invocable

When the user types /address-pr-review, run this skill.


Step 1: Confirm the branch

Never trust the branch name from earlier in the conversation. Ask git:

git branch --show-current
git status --short

If the branch is the default branch (main, master), stop: there is no PR to address from there. Say which branch you are on and ask the user to check out the feature branch.

If the working tree is dirty, list the dirty files before doing anything, and keep that list. Step 5 stages only the files this round actually edited, so the list is how you tell your own edits from work that was already in the tree.


Step 2: Collect what is open

Run both collectors. They read the PR from the current branch on their own.

bash "${CLAUDE_SKILL_DIR}/bin/pr-threads.sh"
bash "${CLAUDE_SKILL_DIR}/bin/pr-ci-failures.sh"

pr-threads.sh prints a JSON array of unresolved review threads. Each thread carries id, path, line, isOutdated, and its comments with author, body, and url. The array is the whole list — the script pages through every thread, so a long review is not silently cut short. Exit 2 means there is no PR for this branch (stop and say so; /ship is the skill that opens one), or that a page of threads could not be fetched. On that second case nothing is printed at all: treat it as unknown, not as zero threads, and re-run.

Read the full file on GitHub · 345 lines

Files

What ships with it

3 files 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 · 345 lines · 69 tokens per session scan A aa24266f6b45

Subscribe to this mod's changes

address-pr-review is a skill published in the GitHub repository timurgaleev/vibestack (6 stars, last pushed 8d ago), licensed MIT. It adds 69 tokens to every session and 3,722 once invoked, about $0.0003 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

merge-open-prs

Review, verify (Docker by default), and auto-merge open PRs when CI, reviews, and local verification pass. Batch up to 10 PRs per run. Use when the user wants to merge all open PRs, clear the PR queue, or run /merge-open-prs.

emaraschio/cursor-commands · 65 tokens

address-github-pr-comments

Address review comments on the current GitHub PR.

emaraschio/cursor-commands · 15 tokens

gentle-ai-collab-perfect

Trigger: contributing to Gentleman-Programming/gentle-ai as an external collaborator. Strict issue-first workflow, honest PR bodies, contributor-vs-maintainer scope, chained-PR strategy, verification protocol, docstring coverage. Load whenever the active repo is Gentleman-Programming/gentle-ai and any part of the…

Gentleman-Programming/gentle-ai · 106 tokens

branch-pr

Create Gentle AI pull requests with issue-first checks. Trigger: creating, opening, or preparing PRs for review.

Gentleman-Programming/gentle-ai · 26 tokens

work-unit-commits

Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.

Gentleman-Programming/gentle-ai · 33 tokens

sem

Use sem to get entity-level (function/class/method) semantic diffs, impact analysis, blame, and dependency context from any Git repo. Trigger this skill whenever the user asks what changed in a commit or PR, wants to understand the blast radius of a change, needs to know who last modified a function, wants to trace…

Ataraxy-Labs/sem · 112 tokens