address-review

address-review is a skill for Claude Code from sleeyax/promptfiles. It costs 61 tokens per session (1,952 once invoked), scanned A, original, MIT.

A workflow for reviewing comments on a GitHub pull request or GitLab merge request and addressing the relevant ones. These requests are pages where proposed code changes are discussed before being merged.

In plain words
What is it for?
It helps fetch and triage review comments, make the relevant edits, create a separate commit for each addressed comment, and optionally prepare replies or updates.
Why use it?
It helps turn reviewer feedback into tracked local code changes without overlooking individual comments.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: names the AskUserQuestion tool; mentions Codex.

Part of the sleeyax-skills plugin — 17 skills, 2 agents shipped together

Good fit It helps fetch and triage review comments, make the relevant edits, create a separate commit for each addressed comment, and optionally prepare replies or updates.

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

Made for: Claude Code.

Or install sleeyax-skills, the plugin that ships this one along with the rest of its 17 skills, 2 agents.

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/sleeyax/promptfiles/address-review/github.svg)](https://agentmods.dev/skills/sleeyax/promptfiles/address-review)
Your own site
<a href="https://agentmods.dev/skills/sleeyax/promptfiles/address-review"><img src="https://agentmods.dev/badge/skills/sleeyax/promptfiles/address-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-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/sleeyax/promptfiles/address-review"><img src="https://agentmods.dev/badge/skills/sleeyax/promptfiles/address-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,952 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.00061 $0.01952
Opus 5 $0.00030 $0.00976
Sonnet 5 $0.00012 $0.00390
Haiku 4.5 $0.00006 $0.00195

Measured 10d ago against content hash abcbe306a05b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 10d 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.

skills/review/address-review/SKILL.md · 132 lines

How it starts

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

Address Review Comments

PR/MR (optional): $ARGUMENTS

Pull the review feedback left on a pull request or merge request, decide what actually needs changing, and land each addressed comment as its own commit.

$ARGUMENTS is optional — with no argument, the target is the open PR/MR for the current branch. Example invocations: /address-review, /address-review 42, /address-review <mr-url>.

Hard rules

  • Every gate — target confirmation, dirty-tree, which comments to address, thread replies — is a real stop: ask, then wait for the answer. Use the AskUserQuestion tool when it's available in the session; where it isn't (e.g. Codex), ask in plain text with the same numbered options and stop until the user replies. Never assume an answer. Committing is not one of these gates — the git-commit skill commits on its own.
  • One commit per comment. Group only when several comments demand the same edit; say so in the report when you do.
  • Never write back to GitHub/GitLab (pushes, replies, resolves) unless the user explicitly opts in at step 8. The default is local-only: commits stay on the machine and the user pushes manually.
  • Pushing is coupled to replying. Push only as part of a step 8 reply option, and only before posting — never as a standalone step, and never force-push.
  • Don't blindly obey a comment. A reviewer can be wrong or working from stale context — flag disagreements instead of implementing them.
  • Don't dump the full diff into a prompt or a file. Read the files the comments point at.

Workflow

1. Resolve the target

Determine the provider from git remote -v:

  • Contains github.comGitHub
  • Contains gitlab.com or a self-hosted GitLab host → GitLab
  • Otherwise ask the user which provider to use.

Then resolve which PR/MR:

  • $ARGUMENTS is empty (the common case) → detect the current branch with git rev-parse --abbrev-ref HEAD and look up the open PR/MR whose source branch is that branch:
    • GitHub: gh pr view --json number,title,url,state (resolves from the current branch), or gh pr list --head <branch> --json number,title,url,state if that fails.
    • GitLab: glab mr view , or glab mr list --source-branch <branch>.
    • No match → don't guess. Tell the user the branch has no open PR/MR and ask for a URL or number.
    • Several matches → ask, listing them (number + title) so the user picks.
    • On the default branch with no argument → stop and ask; there's nothing sensible to infer.
  • $ARGUMENTS is a URL → parse host, project path, and number from it.
  • $ARGUMENTS is a bare number (strip a leading #) → that PR/MR in the current repo.

Read the full file on GitHub · 132 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. 10d ago First seen · 132 lines · 61 tokens per session scan A abcbe306a05b

Subscribe to this mod's changes

address-review is a skill published in the GitHub repository sleeyax/promptfiles (2 stars, last pushed 11d ago), licensed MIT. It adds 61 tokens to every session and 1,952 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-08-31.