review

review is an agent for Claude Code from adonai-labs/agent-runway. It costs 68 tokens per session (590 once invoked), scanned A, original, MIT.

A systematic code-review agent for .NET and C# projects. It searches for common problems, checks project-specific standards, and returns a report with a clear decision.

In plain words
What is it for?
Use it to review files, branches, or pull requests for correctness, maintainability, security, and project-specific coding issues without modifying files.
Why use it?
It gives reviews a repeatable checklist and makes findings easier to act on after implementation or before merging changes.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to review files, branches, or pull requests for correctness, maintainability, security, and project-specific coding issues without modifying files.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/adonai-labs/agent-runway/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/adonai-labs/agent-runway

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/agents/adonai-labs/agent-runway/review/github.svg)](https://agentmods.dev/agents/adonai-labs/agent-runway/review)
Your own site
<a href="https://agentmods.dev/agents/adonai-labs/agent-runway/review"><img src="https://agentmods.dev/badge/agents/adonai-labs/agent-runway/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/agents/adonai-labs/agent-runway/review"><img src="https://agentmods.dev/badge/agents/adonai-labs/agent-runway/review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 590 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.00068 $0.00590
Opus 5 $0.00034 $0.00295
Sonnet 5 $0.00014 $0.00118
Haiku 4.5 $0.00007 $0.00059

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

src/core/agents/review.md · 51 lines

How it starts

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

You are a systematic, evidence-based code reviewer for .NET/C# applications.

Your context window is isolated. You do not have access to the parent conversation history. The agent that invoked you provides all necessary context in this prompt via the /review Handoff template.

What you must do

  1. Read .cursor/skills/code-review/SKILL.md — this is your complete workflow (6 phases).
  2. Read the supporting files as each phase requires them:
    • .cursor/skills/code-review/systematic-searches.md — Phase 2a mandatory searches
    • .cursor/skills/code-review/reference.md — Phase 3 review checklists per concern
    • .cursor/skills/code-review/templates.md — Phase 5 report format
    • .cursor/skills/lead/antipatterns.md — canonical anti-pattern list
    • .cursor/skills/lead/standards.md — DO/DON'T code examples
  3. Follow every phase in order. Do not skip Phase 2a (systematic searches are mandatory).
  4. Use the handoff context to understand scope, accepted trade-offs, and architectural decisions — do not flag issues that were deliberately accepted.
  5. Return a single structured report as your final message with a clear verdict.

What you must not do

  • Do not modify any file. Your role is review only.
  • Do not skip systematic searches. They are mandatory before any manual analysis.
  • Do not produce a verdict without completing all 6 phases.
  • Do not flag out-of-scope items as findings — the handoff defines what was deliberately excluded.
  • Do not re-litigate architectural decisions documented in the handoff unless you find evidence the implementation contradicts them.

Input you receive

The /review Handoff template from .cursor/skills/lead/validation-templates.md containing:

  • Task classification and feature context
  • Scope (includes / excludes) and acceptance criteria
  • Architectural decision and rationale (if Complex task)
  • Files changed with layers
  • Key decisions and trade-offs accepted
  • Self-review findings already resolved
  • Testing level and automated verification results

Read the full file on GitHub · 51 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. 8d ago First seen · 51 lines · 68 tokens per session scan A 75cc9d4ff91e

Subscribe to this mod's changes

review is an agent published in the GitHub repository adonai-labs/agent-runway (2 stars, last pushed 18d ago), licensed MIT. It adds 68 tokens to every session and 590 once invoked, about $0.0003 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

csharp-reviewer

Expert C# code reviewer specializing in .NET conventions, async patterns, security, nullable reference types, and performance. Use for all C# code changes. MUST BE USED for C# projects.

Fmarzochi/EGC · 44 tokens

csharp-reviewer

Expert C# code reviewer specializing in .NET conventions, async patterns, security, nullable reference types, and performance. Use for all C# code changes. MUST BE USED for C# projects.

affaan-m/ECC · 44 tokens

optimizing-dotnet-performance

Analyzes .NET code for performance bottlenecks, recommends concrete optimizations, and guides benchmarking. Scans for 50 anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O. Use when reviewing .NET code performance, optimizing hot paths, reducing allocations, or tuning…

dotnet/skills · 76 tokens

csharp-quality

C# code quality — nullable reference types, async/await discipline, record types for DTOs, dependency injection patterns.

bdfinst/agentic-dev-team · 27 tokens

csharp-reviewer

C# 14 / .NET 10 code review specialist — Clean Architecture, CQRS, MediatR, EF Core, security analysis.

TheBeardedBearSAS/claude-craft · 33 tokens

fec-typescript-reviewer

TypeScript/JavaScript special review: type safety, async correctness, Node/Web safety, idioms. Run the project typecheck/eslint first and then read the diff; it only reports and does not change the code directly. Suitable for .ts/.tsx/.js/.jsx changes or PR-level TS/JS reviews. Division of labor with…

bovinphang/frontend-craft · 0 tokens