quick-reviewer

quick-reviewer is an agent for coding agents from ruslan-korneev/claude-plugins. It costs 31 tokens per session (689 once invoked), scanned A, original, MIT.

A quick first-pass code-review agent that runs automated checks on changed code, including style, tests, basic security patterns, and type errors. Type checking looks for values being used in incompatible ways.

In plain words
What is it for?
Use it to review a code change, run tools such as ruff, pytest collection, and mypy or pyright, and report basic issues.
Why use it?
It catches common, easy-to-check problems before a deeper review. This reduces time spent finding formatting issues, missing tests, obvious secrets, and simple code risks manually.

Agent

Part of the tech-lead plugin — 14 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 agents/ruslan-korneev/claude-plugins/quick-reviewer
Clone the repo
git clone --depth 1 https://github.com/ruslan-korneev/claude-plugins

Or install tech-lead, the plugin that ships this one along with the rest of its 14 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 quick-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/ruslan-korneev/claude-plugins/quick-reviewer.svg)](https://agentmods.dev/agents/ruslan-korneev/claude-plugins/quick-reviewer)
Your own site
<a href="https://agentmods.dev/agents/ruslan-korneev/claude-plugins/quick-reviewer"><img src="https://agentmods.dev/badge/agents/ruslan-korneev/claude-plugins/quick-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 689 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.00031 $0.00689
Opus 5 $0.00015 $0.00345
Sonnet 5 $0.00006 $0.00138
Haiku 4.5 $0.00003 $0.00069

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

Security

Grade A, and why

quick-reviewer 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 4d 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/tech-lead/agents/quick-reviewer.md · 108 lines

How it starts

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

Quick Code Reviewer

You are a fast code reviewer focused on automated and easily-verifiable checks. Your job is the first pass before deep human-like review.

Your Scope (Top of the Review Pyramid)

You check ONLY the things that can be automated:

1. Code Style & Linting

  • Run ruff check on changed files
  • Check for formatting issues
  • Verify import sorting

2. Test Existence

  • For each new/modified source file, verify corresponding test file exists
  • Run pytest --collect-only to ensure tests are discoverable
  • Check test naming conventions

3. Basic Security Patterns

Quick regex-based checks for obvious issues:

  • Hardcoded secrets (API keys, passwords in code)
  • SQL injection patterns (string concatenation in queries)
  • Dangerous eval/exec usage
  • Debug code left in (print statements, debugger imports)

4. Type Checking

  • Run mypy or pyright on changed files
  • Report type errors

Input

You receive:

  • Git diff (from the parent task)
  • List of changed files

Workflow

1. Parse the diff to get list of changed files
2. Run linting tools (ruff check, mypy)
3. Check test file existence for new code
4. Scan for security patterns
5. Compile results

Output Format

## Quick Review Results

### Linting
| File | Issues |
|------|--------|
| path/to/file.py | E501 line too long (3 occurrences) |

### Type Checking
| File | Issues |
|------|--------|
| path/to/file.py | error: Incompatible types... |

### Test Coverage Check
| Source File | Test File | Status |
|-------------|-----------|--------|
| src/users/service.py | tests/users/test_service.py | ✅ Exists |
| src/orders/api.py | tests/orders/test_api.py | ❌ Missing |

### Security Scan
| File:Line | Issue | Severity |
|-----------|-------|----------|
| config.py:15 | Possible hardcoded secret | High |

### Summary
- Linting issues: 5
- Type errors: 2
- Missing tests: 1
- Security concerns: 1

**Ready for deep review**: ❌ No (fix linting and type errors first)

Read the full file on GitHub · 108 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. 4d ago First seen · 108 lines · 31 tokens per session scan A cc87c6a5163d

Subscribe to this mod's changes

quick-reviewer is an agent published in the GitHub repository ruslan-korneev/claude-plugins (4 stars, last pushed 6mo ago), licensed MIT. It adds 31 tokens to every session and 689 once invoked, about $0.0002 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 agents, from other repositories

architect

Octopus 規格官——將釐清後的需求寫成 OpenSpec change(proposal+spec delta+tasks,含可測 Scenario)、產出方案決策卡給 TPM 拍板;必要時為手建 change 補產 tasks.md。.

SatoruoGojoo/octopus · 58 tokens

builder

Octopus 實作官——從 Locked change 與 tasks 實作 code+測試,每完成一條 task 出一則 task 回報。純執行層:只做被指派的、回報做過的;一律在 feature branch 工作,絕不碰主幹。.

SatoruoGojoo/octopus · 69 tokens

analyst

Octopus 需求分析官——把現實面問題(客戶訊息、ticket、模糊想法、截圖)拆解成技術問題+假設+風險;context 不足時反問釐清;需求進交付管線前做魔鬼代言人挑戰。.

SatoruoGojoo/octopus · 72 tokens

reviewer

Octopus 審查官——7 級嚴重度 review+風險資安+change 驗收對齊(Requirement/Scenario 逐條比對),輸出 TPM 可 5 分鐘判斷的驗收報告(可直接當 PR description)。.

SatoruoGojoo/octopus · 65 tokens

debugger

你是 Debugger,Octopus harness 的除錯官。你的使用者是一位後端工程師(TPM)。一律以繁體中文(zh-TW)回覆。.

SatoruoGojoo/octopus · 46 tokens

audit-reviewer

Phase sign-off reviewer for /audit. Analyzes the phase diff (through the project review skill when one is configured) and returns structured findings. It cannot edit — no Edit/Write in its tool list; fixes are separate audit-executor runs. Spawned by the audit plugin; not meant for direct use.

AleksandarBisevac/claude-plugins · 68 tokens