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.
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.
git clone --depth 1 https://github.com/parcadei/Continuous-Claude-v3Wrote 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.
[](https://agentmods.dev/agents/parcadei/continuous-claude-v3/review-agent)<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>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.
| Model | Per session | Once 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 |
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- review-agent — 100% identical, 556 lines differ
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:
- PLAN = Source of truth for requirements (what should happen)
- SESSION DATA = Braintrust traces (what actually happened)
- 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
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.
- 8d ago First seen · 279 lines · 25 tokens per session scan A 24a5d87533c1
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.
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.
code-reviewer
Dedicated read-only code review specialist. Use for /code-review after the review mode and target are resolved.
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.
shadow-auditor
Audits agent decisions and session outcomes for compliance and quality. Assign as a shadow for end-of-session review.
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…
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.