review-agent

review-agent is an agent for Claude Code from parcadei/Continuous-Claude-v3. It costs 25 tokens per session (1,851 once invoked), scanned A, original, MIT.

A review agent that checks whether an implementation matches its plan and what happened during the coding session. It also examines the actual code changes.

In plain words
What is it for?
Use it after implementation to compare a plan, Braintrust session data, and the Git diff, a record of changes made to the code.
Why use it?
It can reveal missing requirements or differences between the intended work, the recorded process, and the final code before handoff.

Agent for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: model in frontmatter.

Good fit Use it after implementation to compare a plan, Braintrust session data, and the Git diff, a record of changes made to the code.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/parcadei/continuous-claude-v3/review-agent
About the project

Continuous-Claude-v3 is a Claude Code development environment that preserves working context between sessions, coordinates specialized agents, and stores project knowledge through ledgers, handoffs, and analysis tools. It is for people using Claude Code on ongoing or complex software work. Its catalogue entries are the skills, agents, hooks, plugin, and setting that provide its workflows and orchestration.

parcadei/Continuous-Claude-v3 · 3,937 stars · on GitHub

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/parcadei/Continuous-Claude-v3

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-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/parcadei/continuous-claude-v3/review-agent.svg)](https://agentmods.dev/agents/parcadei/continuous-claude-v3/review-agent)
Your own site
<a href="https://agentmods.dev/agents/parcadei/continuous-claude-v3/review-agent"><img src="https://agentmods.dev/badge/agents/parcadei/continuous-claude-v3/review-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,851 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.00025 $0.01851
Opus 5 $0.00013 $0.00925
Sonnet 5 $0.00005 $0.00370
Haiku 4.5 $0.00003 $0.00185

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

Security

Grade A, and why

review-agent 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/agents/review-agent.md · 279 lines

How it starts

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

Review Agent

You are a specialized review agent. Your job is to verify that an implementation matches its plan by comparing three sources:

  1. PLAN = Source of truth for requirements (what should happen)
  2. SESSION DATA = Braintrust traces (what actually happened)
  3. CODE DIFF = Git changes (what code was written)

When to Use

This agent is the 4th step in the agent flow:

plan-agent → validate-agent → implement-agent → review-agent

Invoke after implementation is complete but BEFORE creating a handoff.

Step 1: Gather the Three Sources

1.1 Find the Plan

# Find today's plans
ls -la $CLAUDE_PROJECT_DIR/thoughts/shared/plans/

# Or check the ledger for the current plan
grep -A5 "Plan:" $CLAUDE_PROJECT_DIR/CONTINUITY_*.md

Read the plan completely - extract all requirements/phases.

1.2 Query Braintrust Session Data

# Get last session summary
uv run python -m runtime.harness scripts/braintrust_analyze.py --last-session

# Replay full session (shows tool sequence)
uv run python -m runtime.harness scripts/braintrust_analyze.py --replay <session-id>

# Detect any loops or issues
uv run python -m runtime.harness scripts/braintrust_analyze.py --detect-loops

1.3 Get Git Diff

# What changed since last commit (uncommitted work)
git diff HEAD

# Or diff from specific commit
git diff <commit-hash>..HEAD

# Show file summary
git diff --stat HEAD

1.4 Run Automated Verification

# Run comprehensive checks from project root
cd $(git rev-parse --show-toplevel)

# Standard verification commands (adjust per project)
make check test 2>&1 || echo "make check/test failed"
uv run pytest 2>&1 || echo "pytest failed"
uv run mypy src/ 2>&1 || echo "type check failed"

1.5 Run Code Quality Checks (qlty)

# Lint changed files
uv run python -m runtime.harness scripts/qlty_check.py

# Get complexity metrics
uv run python -m runtime.harness scripts/qlty_check.py --metrics

# Find code smells
uv run python -m runtime.harness scripts/qlty_check.py --smells

Read the full file on GitHub · 279 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 · 279 lines · 25 tokens per session scan A 24a5d87533c1

Subscribe to this mod's changes

review-agent is an agent published in the GitHub repository parcadei/Continuous-Claude-v3 (3,937 stars, last pushed 7mo ago), licensed MIT. It adds 25 tokens to every session and 1,851 once invoked, about $0.0001 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-30.

Related

Other agents, from other repositories

flutter-reviewer

Code review agent for Flutter projects with Clean Architecture and BLoC. Validates architecture compliance, type safety, @freezed usage. AUTO-FIX: fixes all issues found.

aleksandr-chaika/flutter-clean-arch-skills · 40 tokens

code-reviewer

Dedicated read-only code review specialist. Use for /code-review after the review mode and target are resolved.

Byunk/minimal-claude-code · 25 tokens

fizzy-tasks

Lightweight agent for Fizzy.do task management without cluttering your main conversation context. Use for listing boards, creating cards, syncing todos, or closing completed work.

keskinonur/claude-plugin-fizzy · 39 tokens

shadow-auditor

Audits agent decisions and session outcomes for compliance and quality. Assign as a shadow for end-of-session review.

AgentWorkforce/relay · 27 tokens

geo-routing-engineer

Geospatial and routing specialist for Product-Builder products with maps, scheduling-by-location, or vehicle routing (route-optimization in logistics, dispatch in home services, field-booking). Owns the routing contract — geocoding, the VRP/routing model (constraints, objective), maps/distance-matrix provider…

avelikiy/great_cto · 112 tokens

architecture-reviewer

Architecture and design review agent — read-only. Evaluates structural decisions, identifies design smells, and flags risks before implementation. Never modifies code. Use before merging architectural changes or after a planner produces a plan.

FlorianBruniaux/claude-code-plugins · 45 tokens