code-review

code-review is a skill for Claude Code, Codex from adonai-labs/agent-runway. It costs 92 tokens per session (2,611 once invoked), scanned A, original, MIT.

A structured code-review procedure that searches the repository first and then reports evidence-based findings. It checks engineering quality, security, and performance, with optional focused review lenses.

In plain words
What is it for?
Use it to review a pull request or a list of changed files and classify findings by severity.
Why use it?
It reduces the chance of missing problems hidden outside the changed lines, such as security weaknesses, slow database access, or maintainability issues.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review a pull request or a list of changed files and classify findings by severity.

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

Any agent
npx skills add adonai-labs/agent-runway --skill code-review
Clone the repo
git clone --depth 1 https://github.com/adonai-labs/agent-runway

Made for: Claude Code, Codex.

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 code-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/adonai-labs/agent-runway/code-review.svg)](https://agentmods.dev/skills/adonai-labs/agent-runway/code-review)
Your own site
<a href="https://agentmods.dev/skills/adonai-labs/agent-runway/code-review"><img src="https://agentmods.dev/badge/skills/adonai-labs/agent-runway/code-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,611 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.00092 $0.02611
Opus 5 $0.00046 $0.01306
Sonnet 5 $0.00018 $0.00522
Haiku 4.5 $0.00009 $0.00261

Measured 7d ago against content hash 521526ae99a1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

code-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 7d 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/skills/code-review/SKILL.md · 280 lines

How it starts

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

Code Review

Invoke Command

/review
Files changed: [list of files]
Lens: [all | engineering | security | performance]   (optional, defaults to all)

Or when delegated from the lead skill, the file list is passed automatically.

Not sure which skill to use? Start with /start — it classifies intent and routes to the right skill.


Review Lenses

A complete review examines code through three lenses. Each has a distinct focus and catches a different class of issue.

Lens Focus Where its checklist lives
Engineering (default) Clean code, SOLID, architecture, readability, maintainability, error handling Phase 3 checklists in this skill
Security OWASP Top 10, threat model for sensitive flows, input/auth/crypto/data handling Security Checklist (OWASP) in reference.md
Performance Algorithmic complexity, N+1 access, resource usage, scalability under load Phase 3 "Performance & complexity" criterion

Multi-pass protocol

  • Standard review (default): apply all three lenses in a single pass.
  • High-risk review - when the change touches a security surface, modifies a public contract, or spans many files: run one focused pass per lens. A focused pass keeps attention on a single class of issue, which surfaces findings a combined pass tends to miss. Run focused passes as separate /review invocations (isolated context) when possible.
  • Consolidate: merge findings across passes into one report. De-duplicate by file + line; when two passes flag the same location, keep the highest severity and note both lenses. Never ship overlapping duplicate findings.

The Lens: value in the handoff scopes a single focused pass; omit it (or use all) for a standard review.

Optional contrarian lens

Use a contrarian lens only for high-impact review areas: architecture boundaries, irreversible platform choices, compliance/audit flows, data consistency, security trust boundaries, or public contracts. Do not run a full /contrarian gate for an ordinary PR review.

Read the full file on GitHub · 280 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago First seen · 280 lines · 92 tokens per session scan A 521526ae99a1

Subscribe to this mod's changes

code-review is a skill published in the GitHub repository adonai-labs/agent-runway (2 stars, last pushed 17d ago), licensed MIT. It adds 92 tokens to every session and 2,611 once invoked, about $0.0005 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 skills, from other repositories

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

pr-blocker-summarizer

Summarizes open pull requests into a blockers-first standup digest. Activates when the user asks to summarize open PRs, find blocked pull requests, generate a PR standup, or triage review backlog from a PR export.

FrancyJGLisboa/agent-skill-creator · 54 tokens

review-work

Post-implementation gate review: run manual QA on the real surface yourself, then launch ONE gate reviewer (never a panel) to audit goal, constraints, code quality, security, missed context, and QA evidence. Use before a PR handoff or when the user explicitly asks to review completed work.

code-yeongyu/oh-my-openagent · 63 tokens

plugin-review

Review plugin quality with tiered checks and dependency scoping. Use for PR and pre-release audits.

athola/claude-night-market · 23 tokens

ponytail-lazy-senior-dev

Applies the "lazy senior developer" mindset. Use this skill whenever generating, modifying, reviewing code, or fixing bugs to prioritize code reuse, minimalism, YAGNI principles, and root-cause fixes. Also use whenever the user says "ponytail", "be lazy", "lazy mode", "simplest solution", "minimal solution", "yagni"…

GulajavaMinistudio/awesome-copilot-id · 146 tokens

adr

Create and manage Architecture Decision Records. Documents significant technical decisions with context, alternatives, and consequences. Also supports evaluate (assess proposals) and design (system design) modes.

drafthq/draft · 37 tokens