project-code-review

project-code-review is an agent for Claude Code from Kanevry/session-orchestrator. It costs 0 tokens per session (213 once invoked), scanned A, original, MIT.

A read-only code-review agent that checks code changes for project conventions, security problems, correctness, error handling, and edge cases before merging.

In plain words
What is it for?
It helps review changed modules, identify injection risks and unsafe patterns, check naming and file structure, and find missing error handling.
Why use it?
It gives a second review pass for issues that may be missed during implementation.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the session-orchestrator plugin — 43 skills, 25 commands, 17 agents, 11 hooks, 1 MCP server shipped together

Good fit It helps review changed modules, identify injection risks and unsafe patterns, check naming and file structure, and find missing error handling.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/kanevry/session-orchestrator/project-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.

Clone the repo
git clone --depth 1 https://github.com/Kanevry/session-orchestrator

Made for: Claude Code.

Or install session-orchestrator, the plugin that ships this one along with the rest of its 43 skills, 25 commands, 17 agents, 11 hooks, 1 MCP server.

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

README.md
[![agentmods](https://agentmods.dev/badge/agents/kanevry/session-orchestrator/project-code-review/github.svg)](https://agentmods.dev/agents/kanevry/session-orchestrator/project-code-review)
Your own site
<a href="https://agentmods.dev/agents/kanevry/session-orchestrator/project-code-review"><img src="https://agentmods.dev/badge/agents/kanevry/session-orchestrator/project-code-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 project-code-review

Your own site · 80×15
<a href="https://agentmods.dev/agents/kanevry/session-orchestrator/project-code-review"><img src="https://agentmods.dev/badge/agents/kanevry/session-orchestrator/project-code-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 213 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.00213
Opus 5 $0.00000 $0.00106
Sonnet 5 $0.00000 $0.00043
Haiku 4.5 $0.00000 $0.00021

Measured 5d ago against content hash 82c8d274e612, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

project-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 5d 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.

skills/bootstrap/templates/agents/project-code-review.md · 19 lines

What it actually says

Project Code Review Agent

Performs read-only review of code changes. Use this agent to:

  • Enforce project-specific coding conventions
  • Identify security issues, injection risks, or unsafe patterns
  • Check for missing error handling or edge cases
  • Verify adherence to naming conventions and file structure

Edit this file to add project-specific review checklists, e.g. banned patterns, required linting rules, security invariants, or architecture constraints.

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. 5d ago First seen · 19 lines · 0 tokens per session scan A 82c8d274e612

Subscribe to this mod's changes

project-code-review is an agent published in the GitHub repository Kanevry/session-orchestrator (50 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 213 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-09-03.

Related

Other agents, from other repositories

qa-loop

Autonomous audit-fix loop aligned with the Anthropic 2026 pattern (code-review plugin). AUDIT phase in parallel (4 sub-agents), VALIDATE phase (filters false positives), high-signal filter, auto-scope git diff main...HEAD. Flags --audit-only and --comment for read-only and inline PR post modes.

christopherlouet/claude-base · 72 tokens

qa-claudemd

Audit of compliance with the project's CLAUDE.md and repo conventions. Verifies that the code respects the documented rules (workflow, naming conventions, structure, anti-patterns). Use as a sub-agent in qa-loop for the Anthropic 2026 pattern.

christopherlouet/claude-base · 58 tokens

arbiter

Aggregates the refuter panel's independently-committed verdicts into one per-criterion verdict, under the independence guard. Never itself judges the diff. Invoked only by mnm-verify, after every lens for the current round has already committed.

momomuchu/make-no-mistakes · 54 tokens

refuter-correctness

Breaks a diff on pure functional correctness — wrong output, crash, violated invariant, uncovered edge case. Read-only, re-runs the decisive check itself. Invoked only by mnm-verify; never by the user, never by the implementer.

momomuchu/make-no-mistakes · 58 tokens

refuter-regression

Breaks a diff on regression — anything that worked before this change and doesn't now, including quietly weakened checks. Read-only, re-runs the pass-to-pass suite itself. Invoked only by mnm-verify; never by the user, never by the implementer.

momomuchu/make-no-mistakes · 60 tokens

refuter-spec

Breaks a diff on spec-conformance — DoD criteria met in letter but not substance, Non-Goals silently crossed, write-scope exceeded. Read-only. Invoked only by mnm-verify; never by the user, never by the implementer.

momomuchu/make-no-mistakes · 57 tokens