address-review

address-review is a skill for Claude Code from fpindej/netrock. It costs 14 tokens per session (682 once invoked), scanned A, original, MIT.

A workflow for reading and responding to review comments on a GitHub pull request, a proposed set of code changes.

In plain words
What is it for?
It helps fetch pull-request comments, inspect the related code, decide whether changes are appropriate, make accepted fixes, and reply with the outcome.
Why use it?
It helps separate genuine change requests from questions and ensures each unresolved discussion is considered with its full reply history.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit It helps fetch pull-request comments, inspect the related code, decide whether changes are appropriate, make accepted fixes, and reply with the outcome.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/fpindej/netrock/address-review.svg)](https://agentmods.dev/skills/fpindej/netrock/address-review)
Your own site
<a href="https://agentmods.dev/skills/fpindej/netrock/address-review"><img src="https://agentmods.dev/badge/skills/fpindej/netrock/address-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 682 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.00014 $0.00682
Opus 5 $0.00007 $0.00341
Sonnet 5 $0.00003 $0.00136
Haiku 4.5 $0.00001 $0.00068

Measured 8d ago against content hash 677c486578d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

address-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 8d 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/address-review/SKILL.md · 77 lines

How it starts

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

/address-review

Read review comments on a GitHub PR, evaluate each one, and address it appropriately.

Steps

  1. Resolve the PR number. If an argument is provided, use it. Otherwise, detect from current branch:
gh pr view --json number,title,url
  1. Fetch all review comments (includes inline code comments and review threads):
gh api --method GET repos/{owner}/{repo}/pulls/{number}/comments
gh api --method GET repos/{owner}/{repo}/pulls/{number}/reviews

(Always pass --method GET explicitly for gh api reads - only explicit-GET calls are pre-approved by the project permissions.)

Filter to only unresolved threads with actual review content. Read the full thread (all replies in each discussion), not just the first comment.

  1. For each unresolved thread, evaluate what type of comment it is:

A. Change request ("change this", "use X instead of Y", "add Z")

  1. Read the referenced file + surrounding context
  2. Evaluate if the change is correct, factual, and worth it
  3. If yes: make the change, reply with what was changed and which commit
  4. If the change would break something or is incorrect: explain why and propose an alternative

B. Question ("why is this here?", "doesn't X already handle...?")

Reply with a clear explanation. Reference specific code/docs. If the answer reveals a real issue, fix it too.

C. Suggestion / discussion ("we could...", "what if we...")

Evaluate effort vs impact. Reply with one of:

  • "Good idea, I'll do it in this PR" (and do it)
  • "Makes sense, but better as a follow-up" (explain why)
  • "I don't think it's needed because..." (explain reasoning)

D. Factual correction ("that's not true", "table doesn't have column X")

Verify the claim by reading the actual code/schema. If the reviewer is right, fix it. If wrong, explain with evidence.

  1. Reply to each thread:
gh api repos/{owner}/{repo}/pulls/{number}/comments/{comment_id}/replies --method POST -f "body=<reply>"

Read the full file on GitHub · 77 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. 8d ago First seen · 77 lines · 14 tokens per session scan A 677c486578d0

Subscribe to this mod's changes

address-review is a skill published in the GitHub repository fpindej/netrock (232 stars, last pushed 7d ago), licensed MIT. It adds 14 tokens to every session and 682 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-08-30.