address-review

address-review is a skill for Claude Code from Jartan-LLC/grimoire. It costs 14 tokens per session (485 once invoked), scanned A, original, MIT.

A skill for handling code-review findings on a pull request one at a time. It investigates each comment and waits for the user to decide whether to fix, skip, or change it.

In plain words
What is it for?
Use it to load recent pull-request feedback, inspect the related code, assess each finding, and apply approved fixes.
Why use it?
It gives every review comment a considered assessment and keeps the final decision with the developer.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the praxis plugin — 16 skills, 7 agents shipped together

Good fit Use it to load recent pull-request feedback, inspect the related code, assess each finding, and apply approved fixes.

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

Made for: Claude Code.

Or install praxis, the plugin that ships this one along with the rest of its 16 skills, 7 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/jartan-llc/grimoire/address-review/github.svg)](https://agentmods.dev/skills/jartan-llc/grimoire/address-review)
Your own site
<a href="https://agentmods.dev/skills/jartan-llc/grimoire/address-review"><img src="https://agentmods.dev/badge/skills/jartan-llc/grimoire/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/jartan-llc/grimoire/address-review"><img src="https://agentmods.dev/badge/skills/jartan-llc/grimoire/address-review.svg" alt="Reviewed on agentmods" width="80" 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 485 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.00014 $0.00485
Opus 5 $0.00007 $0.00243
Sonnet 5 $0.00003 $0.00097
Haiku 4.5 $0.00001 $0.00049

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

plugins/praxis/skills/address-review/SKILL.md · 54 lines

How it starts

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

Address Review

Work through code review findings on a pull request, investigating each one and applying fixes where warranted.

Always pause for the user's decision on each finding -- even in auto mode, even if the reviewer or your own assessment recommends skipping. Auto mode grants tool access, not decision authority; the user decides what to fix, skip, or adjust.

Process

1. Load Review

Determine the PR number from the user's request. Fetch the review comments:

gh pr view <pr-number> --comments

There may be multiple review comments in the history -- use only the most recent one. Parse its findings into a numbered list grouped by severity (Critical > Important > Minor).

2. Check Out Branch

Ensure the PR's branch is checked out locally so fixes can be applied.

3. Walk Through Findings

Work through each finding sequentially. For each one:

  1. Investigate -- Read the relevant code. Understand whether the finding is a real problem, a theoretical concern, or a false positive. Check how the rest of the codebase handles the same pattern.
  2. Assess -- Present your assessment to the user: is it a real issue, valid but not applicable here, or wrong? Propose a specific fix or recommend skipping, with reasoning.
  3. Act on user decision -- Apply the fix, skip it, or adjust based on the user's response.

Do NOT blindly apply every suggestion. Investigate first -- the reviewer may have missed context, flagged a pattern that's intentional, or suggested a fix that creates inconsistency with the rest of the codebase.

When the user agrees to skip a finding, post a brief PR comment explaining why it was declined:

gh pr comment <pr-number> --body "**Re: <finding title>** -- <concise reason for skipping>"

4. Commit

The user may ask to commit at any point during the review -- commit what's been done so far and continue with the remaining findings. Use the format:

fix(<scope>): address code review findings

Read the full file on GitHub · 54 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 · 54 lines · 14 tokens per session scan A 63f47a3abd67

Subscribe to this mod's changes

address-review is a skill published in the GitHub repository Jartan-LLC/grimoire (2 stars, last pushed 4d ago), licensed MIT. It adds 14 tokens to every session and 485 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-31.

Related

Other skills, from other repositories

review-arch

Conduct a principal-level architecture review of a system, specification, diagram, or set of design decisions. Use when asked to review an architecture, evaluate a design, assess coupling/cohesion, check for anti-patterns, audit system boundaries, or produce an Architecture Review Board (ARB) style verdict. Also use…

sergeyklay/.agents · 199 tokens

review-impl

Review implementation changes for a given task against architectural standards. Use when reviewing a PR, evaluating recently committed code, assessing whether implementation changes are correct and architecturally sound, or when asked to 'review my changes', 'check this implementation', 'review what I built', 'is this…

sergeyklay/.agents · 155 tokens

survey

After building a feature (or evaluating a plan), verify it matches what was planned, respects the project's declared architecture and standards, and is production-ready. Reports issues clearly and routes broken behavior to dredge or contested judgment calls to watershed.

partikularwaters/Banka · 49 tokens

watershed

Get a wider, multi-angle critique of code, a plan, or an idea through five distinct critical perspectives, followed by a sixth consolidation pass. Use when a decision is contested, high-stakes, or one careful survey is not enough.

partikularwaters/Banka · 51 tokens

design-parity-review

Prove a Compose UI pull request matches its intended design by diffing the rendered code (candidate) against a Figma / Stitch / Claude Design reference and posting a parity verdict. Use when asked to check a PR against a design, wire up a design-parity bot, set up the committed reference cache so runs make zero Figma…

yschimke/skills · 133 tokens

compose-preview-review

Review pull requests that change Compose UI by rendering @Preview composables on base and head and diffing them. Use when reviewing a UI PR locally or from a CI agent session (@claude mention), authoring an agent-opened PR that touches UI, or triaging flaky or unstable previews (time/random/animation). Pairs with the…

yschimke/skills · 93 tokens