ultrareview

ultrareview is a command for Claude Code from cassler/awesome-claude-code-setup. It costs 0 tokens per session (566 once invoked), scanned A, original, MIT.

A broad review of the changes on the current Git branch, using several focused checks. Git branches are separate lines of work, and the review compares one with a base branch such as main.

In plain words
What is it for?
Use it before merging branch changes into the main codebase. It helps inspect logic errors, security gaps, slow or wasteful code, and missing tests.
Why use it?
It brings correctness, security, performance, and test-coverage questions into one review of changed files. This helps surface issues that a single narrow check might miss.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

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/cassler/awesome-claude-code-setup/ultrareview
Clone the repo
git clone --depth 1 https://github.com/cassler/awesome-claude-code-setup

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 ultrareview

README.md
[![agentmods](https://agentmods.dev/badge/commands/cassler/awesome-claude-code-setup/ultrareview.svg)](https://agentmods.dev/commands/cassler/awesome-claude-code-setup/ultrareview)
Your own site
<a href="https://agentmods.dev/commands/cassler/awesome-claude-code-setup/ultrareview"><img src="https://agentmods.dev/badge/commands/cassler/awesome-claude-code-setup/ultrareview.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 566 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.1 $0.00000 $0.00566
Opus 5 $0.00000 $0.00283
Sonnet 5 $0.00000 $0.00113
Haiku 4.5 $0.00000 $0.00057

Measured 6d ago against content hash f0cb934d354d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ultrareview 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 6d 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.

commands/ultrareview.md · 79 lines

How it starts

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

Ultra Review

Run a comprehensive multi-agent code review on the current branch's changes.

Branch: ${BRANCH:-$(git branch --show-current)} Base: ${BASE:-main}

Review Scope

# Show what will be reviewed
git diff --stat ${BASE:-main}...HEAD
git log --oneline ${BASE:-main}..HEAD

Deep Analysis

Perform a thorough review covering all of the following areas. For each area, analyze every changed file in the diff above.

1. Correctness & Logic

  • Are there off-by-one errors, null dereferences, or incorrect conditionals?
  • Do edge cases produce correct behavior?
  • Are async operations handled properly (race conditions, unhandled rejections)?

2. Security

ch cq secrets-scan
ch nlp security $(git diff --name-only ${BASE:-main}...HEAD | tr '\n' ' ')
  • Injection vulnerabilities (SQL, command, XSS)
  • Authentication / authorization gaps
  • Sensitive data in logs or error messages

3. Performance

ch nlp complexity $(git diff --name-only ${BASE:-main}...HEAD | tr '\n' ' ')
  • N+1 queries or unnecessary loops
  • Missing indexes or expensive operations in hot paths
  • Memory leaks or unbounded data structures

4. Test Coverage

# Find changed files with no corresponding test
git diff --name-only ${BASE:-main}...HEAD | grep -v test | while read f; do
  base=$(basename "$f" | sed 's/\.[^.]*$//')
  chs find-file "*${base}*test*" || echo "No tests found for: $f"
done

5. Code Quality

ch nlp smells $(git diff --name-only ${BASE:-main}...HEAD | tr '\n' ' ')
ch cq large-files 300
  • Functions over 50 lines
  • Deep nesting (>3 levels)
  • Duplicate logic that should be extracted

6. Documentation

  • Are public APIs documented?
  • Are non-obvious decisions explained with comments?
  • Is the CHANGELOG or README updated if needed?

Review Report

After completing all analyses above, produce a structured report:

Summary: One paragraph describing the overall quality and risk level of these changes.

Must Fix (blocking): Issues that must be resolved before merge.

Read the full file on GitHub · 79 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. 6d ago First seen · 79 lines · 0 tokens per session scan A f0cb934d354d

Subscribe to this mod's changes

ultrareview is a command published in the GitHub repository cassler/awesome-claude-code-setup (267 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 566 tokens. 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.