review

review is a command for coding agents from koolamusic/claudefiles. It costs 29 tokens per session (575 once invoked), scanned A, original, MIT.

A code-review command that examines the active sprint or a chosen branch or commit range and reports findings by severity. A sprint is a focused project work period; a commit range is a selected set of Git changes.

In plain words
What is it for?
Use it to review the active sprint, a feature branch, or specific commits, including the changed files, commit history, implementation plans, and verification records.
Why use it?
It gives reviewers a defined change set and checks it against related plans and project context when those files are available. It reports problems without fixing them.

Command

Part of the jira plugin — 13 commands, 9 agents shipped together

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.

agentmods
npx agentmods add commands/koolamusic/claudefiles/review
Clone the repo
git clone --depth 1 https://github.com/koolamusic/claudefiles

Or install jira, the plugin that ships this one along with the rest of its 13 commands, 9 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 review

README.md
[![agentmods](https://agentmods.dev/badge/commands/koolamusic/claudefiles/review.svg)](https://agentmods.dev/commands/koolamusic/claudefiles/review)
Your own site
<a href="https://agentmods.dev/commands/koolamusic/claudefiles/review"><img src="https://agentmods.dev/badge/commands/koolamusic/claudefiles/review.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 575 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00029 $0.00575
Opus 5 $0.00015 $0.00287
Sonnet 5 $0.00006 $0.00115
Haiku 4.5 $0.00003 $0.00057

Measured 5d ago against content hash 298f1c9ccdd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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 5d 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/jira/commands/review.md · 49 lines

How it starts

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

Run a code review. By default reviews the active sprint; can also review an arbitrary branch or commit range.

Parse the input

$ARGUMENTS:

  • empty → review the active sprint (cat .jira/CURRENT)
  • --sprint <slug> → review that sprint specifically
  • <branch> (e.g. feat/foo) → review git diff main...<branch>
  • <range> (e.g. HEAD~5..HEAD) → review that range

If you can't parse the input unambiguously, default to "active sprint" and report what you assumed.

Steps

  1. Resolve the diff scope. Compute git diff <base>...<head> (and git log <base>..<head> for context).

  2. Get a quick summary before delegating: file count, +/- line count. If the diff is huge (> 2000 lines), include that in the review prompt so the reviewer paces itself.

  3. Spawn jira-reviewer:

    • The diff scope (branch, range, or sprint slug)
    • All *-PLAN.md paths if reviewing a sprint (reviewer checks goal alignment across plans)
    • Path to CONTEXT.md if reviewing a sprint (every D-XX must have implementing code)
    • Path to EXECUTION.md if reviewing a sprint (cross-reference Nyquist results and deviations)
    • Path to VERIFICATION.md if reviewing a sprint (cross-reference goal-backward outcomes)
  4. Receive the review (markdown output with verdict + findings by severity).

  5. If reviewing a sprint, persist the review:

    echo "$REVIEW" > .jira/sprints/<slug>/REVIEW.md
    git add .jira/sprints/<slug>/REVIEW.md
    git commit -m "review(<slug>): <verdict>"
    

    If reviewing an arbitrary branch/range, just print to the terminal — don't commit anywhere.

  6. Report the verdict, finding counts by severity, and the path to the saved review (if any).

Hard rules

  • Don't fix. Even one-liners. The reviewer reports; humans (or another /jira:execute) fix.
  • Don't open a PR comment. This is a local review tool; it's intentionally separate from GitHub review.
  • Don't summarize away findings. Pass the reviewer's output through verbatim.

Read the full file on GitHub · 49 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. 5d ago First seen · 49 lines · 29 tokens per session scan A 298f1c9ccdd8

Subscribe to this mod's changes

review is a command published in the GitHub repository koolamusic/claudefiles (132 stars, last pushed 6d ago), licensed MIT. It adds 29 tokens to every session and 575 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.