review

review is a command for Claude Code from bl1nk-bot/bl1nk-agents-manager. It costs 0 tokens per session (2,552 once invoked), scanned A, original, MIT.

A reusable code-review command for examining local changes or a GitHub pull request, which is a proposed code change for review.

In plain words
What is it for?
It is for reviewing uncommitted or staged changes and checking pull requests for actionable issues.
Why use it?
It defines how to identify the review target and organize the review process, including handling command options.

Command for Claude Code

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

Good fit It is for reviewing uncommitted or staged changes and checking pull requests for actionable issues.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/bl1nk-bot/bl1nk-agents-manager/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.

Clone the repo
git clone --depth 1 https://github.com/bl1nk-bot/bl1nk-agents-manager

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 review

README.md
[![agentmods](https://agentmods.dev/badge/commands/bl1nk-bot/bl1nk-agents-manager/review/github.svg)](https://agentmods.dev/commands/bl1nk-bot/bl1nk-agents-manager/review)
Your own site
<a href="https://agentmods.dev/commands/bl1nk-bot/bl1nk-agents-manager/review"><img src="https://agentmods.dev/badge/commands/bl1nk-bot/bl1nk-agents-manager/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 review

Your own site · 80×15
<a href="https://agentmods.dev/commands/bl1nk-bot/bl1nk-agents-manager/review"><img src="https://agentmods.dev/badge/commands/bl1nk-bot/bl1nk-agents-manager/review.svg" alt="Reviewed on agentmods" width="80" 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 2,552 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.00000 $0.02552
Opus 5 $0.00000 $0.01276
Sonnet 5 $0.00000 $0.00510
Haiku 4.5 $0.00000 $0.00255

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

.kilo/commands/review.md · 247 lines

How it starts

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

Code Review

You are an expert code reviewer. Your job is to review code changes and provide actionable feedback.

Step 1: Determine what to review

Your goal here is to understand the scope of changes so you can dispatch agents effectively in Step 2.

First, parse the --comment flag: split the arguments by whitespace, and if any token is exactly --comment (not a substring match — ignore tokens like --commentary), set the comment flag and remove that token from the argument list. If --comment is set but the review target is not a PR, warn the user: "Warning: --comment flag is ignored because the review target is not a PR." and continue without it.

Based on the remaining arguments:

  • No arguments: Review local uncommitted changes

    • Run git diff and git diff --staged to get all changes
    • If both diffs are empty, inform the user there are no changes to review and stop here — do not proceed to the review agents
  • PR number or URL (e.g., 123 or https://github.com/.../pull/123):

    • Save the current branch name, stash any local changes (git stash --include-untracked), then gh pr checkout <number>
    • Run gh pr view <number> and save the output (title, description, base branch, etc.) to a temp file (e.g., /tmp/pr-review-context.md) so agents can read it without you repeating it in each prompt
    • Note the base branch (e.g., main) — agents will use git diff <base>...HEAD to get the diff and can read files directly
  • File path (e.g., src/foo.ts):

    • Run git diff HEAD -- <file> to get recent changes
    • If no diff, read the file and review its current state

Step 2: Parallel multi-dimensional review

Launch four parallel review agents to analyze the changes from different angles. Each agent should focus exclusively on its dimension.

IMPORTANT: Do NOT paste the full diff into each agent's prompt — this duplicates it 4x. Instead, give each agent the command to obtain the diff, a concise summary of what the changes are about, and its review focus. Each agent can read files and search the codebase on its own.

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

Subscribe to this mod's changes

review is a command published in the GitHub repository bl1nk-bot/bl1nk-agents-manager (8 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,552 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-31.