fix-pr-review

fix-pr-review is a skill for Claude Code from hiromaily/go-crypto-wallet. It costs 26 tokens per session (870 once invoked), scanned A, original, MIT.

A workflow for handling review comments on a GitHub pull request. It fetches the review, chooses relevant development guidance, applies fixes, verifies them, and replies to the comments.

In plain words
What is it for?
Addressing review comments, checking changed files, running verification, and updating the pull request.
Why use it?
It organizes the work needed to turn pull-request feedback into tested changes and clear responses.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Addressing review comments, checking changed files, running verification, and updating the pull request.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hiromaily/go-crypto-wallet/fix-pr-review"><img src="https://agentmods.dev/badge/skills/hiromaily/go-crypto-wallet/fix-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 870 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.00026 $0.00870
Opus 5 $0.00013 $0.00435
Sonnet 5 $0.00005 $0.00174
Haiku 4.5 $0.00003 $0.00087

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

Security

Grade A, and why

fix-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 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.

.claude/skills/fix-pr-review/SKILL.md · 119 lines

How it starts

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

Fix PR Review Workflow

Workflow for addressing review comments on pull requests.

Expected Command Format

Please revise the reviews at https://github.com/{owner}/{repo}/pull/{pr_number}#pullrequestreview-{review_id} and reply to each review with your results.

Input Formats

User may provide either:

  • PR number: 563, #563
  • Full review URL: https://github.com/{owner}/{repo}/pull/{pr_number}#pullrequestreview-{review_id}

Extract {pr_number} (and optionally {review_id}) from the input.

Process Overview

1. Fetch PR details and review comments
2. Classify files and load development skill
3. Fix each comment
4. Run verification
5. Commit and push changes
6. Reply to each review comment on GitHub

Step 1: Fetch PR Information

gh pr view {pr_number}
gh pr diff {pr_number} --name-only
gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews
gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews/{review_id}/comments
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments

Step 2: Classify and Load Skill

Classify modified files and load the appropriate development skill.

For file-type-to-skill mapping, see .claude/rules/general.md (Language-Specific Skills table).

Step 3: Address ALL Comments

IMPORTANT: Every review comment must be addressed. Do not skip or miss any comment.

  1. List all comments from the API response
  2. Sort by priority: Security > Functionality > Code Quality
  3. Fix each one, one by one
  4. Track status: FIXED, ALREADY APPLIED, or SKIPPED

Step 4: Run Verification

Run verification commands from the loaded development skill.

For verification commands by file type, see .claude/rules/task-context-loading.md (Verification Commands by File Type).

If PR modifies multiple file types, run all applicable verification commands.

Step 5: Commit and Push

Follow git-workflow skill for commit conventions.

git add .
git commit -m "$(cat <<'EOF'
fix(scope): address PR review comments

- Fix: [specific fix 1]
- Fix: [specific fix 2]
EOF
)"
git push

Read the full file on GitHub · 119 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 · 119 lines · 26 tokens per session scan A 9541751a0f1a

Subscribe to this mod's changes

fix-pr-review is a skill published in the GitHub repository hiromaily/go-crypto-wallet (127 stars, last pushed 4mo ago), licensed MIT. It adds 26 tokens to every session and 870 once invoked, about $0.0001 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-01.