Main Menu
  • Tools
  • Developers
  • Topics
  • Discussions
  • Communities
  • News
  • Podcasts
  • Blogs
  • Builds
  • Contests
  • Compare
  • Arena
Create
    EveryDev.ai
    Sign inSubscribe
    Home
    Tools

    2,315+ AI tools

    • New
    • Trending
    • Featured
    • Compare
    • Arena
    Categories
    • Agents1228
    • Coding1045
    • Infrastructure455
    • Marketing414
    • Design374
    • Projects340
    • Analytics319
    • Research306
    • Testing200
    • Data171
    • Integration169
    • Security169
    • MCP164
    • Learning146
    • Communication131
    • Prompts122
    • Extensions120
    • Commerce116
    • Voice107
    • DevOps92
    • Web73
    • Finance19
    1. Home
    2. Tools
    3. adamsreview
    adamsreview icon

    adamsreview

    Code Review

    Multi-stage code review plugin for Claude Code featuring parallel sub-agent detection, automated fix loops, interactive walkthrough, and persistent JSON state.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Runs against the user's own Claude Code subscription.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Code ReviewAI Coding AssistantsAutomated Testing

    Alternatives

    Qodo MergeCodeRabbitStage CLI
    Developer
    Adam MillerAdam Miller builds open-source developer tooling focused on…

    Listed May 2026

    About adamsreview

    adamsreview is an open-source Claude Code plugin built by Adam Miller that extends the built-in /review command into a six-command multi-stage pipeline. It runs against a regular Claude Code subscription and stores persistent review state under ~/.adams-reviews/ for long-lived review workflows. The project is licensed under MIT and hosted on GitHub.

    What It Is

    adamsreview is a code review pipeline plugin for Claude Code that dispatches up to seven parallel sub-agent "lenses" (correctness, security, UX, and others), runs deduplication and validation passes, and produces a structured artifact that downstream commands can act on. The pipeline is modeled after Claude Code's built-in /review but extends it with automated fix loops, regression detection, and an interactive walkthrough mode. The author notes, anecdotally, that it catches more real bugs and produces fewer false positives than Claude Code's built-in /review, /ultrareview, and several third-party tools — though this is self-reported with n=1.

    The Six-Command Pipeline

    The plugin ships six namespaced commands that can be used independently or chained:

    • /adamsreview:review — multi-lens review with optional --ensemble mode that adds a Codex CLI pass and PR bot-comment scraping on top of internal Claude lenses.
    • /adamsreview:codex-review — Codex CLI peer review with tunable effort levels (low, medium, high, xhigh); produces the same artifact shape as :review.
    • /adamsreview:add — injects externally-sourced findings (e.g., a cloud /ultrareview paste or a teammate's note) into an existing artifact, deduped and validated.
    • /adamsreview:walkthrough — interactive driver for findings that :fix would skip; uses Claude Code's AskUserQuestion UI to walk through uncertain items one by one and posts a decisions log to the PR.
    • /adamsreview:fix — automated fix loop that dispatches per-fix-group sub-agents in parallel, re-reviews with Opus, reverts regressions, and commits survivors.
    • /adamsreview:promote — human override to promote a single finding to auto-fixable, bypassing the lane filter and score threshold.

    Architecture and State Model

    Review state (artifact, trace, phase logs, token logs) is written to ~/.adams-reviews/<repo-slug>/<branch>/<review_id>/. The artifact schema is defined in bin/schema-v1.json. Shared phase fragments live under fragments/, helper scripts under bin/ (auto-added to $PATH by the plugin runtime), and command files at bare-stem paths under commands/. Python helpers use PEP 723 inline-script shebangs via uv, so no venv or global pip install is required — uv fetches and caches jsonschema on first run.

    Token accounting distinguishes sub-agent tokens (precise, per-review, always shown) from orchestrator tokens (opt-in, time-window filtered from Claude Code session transcripts, can over-count if unrelated work happens in the same working directory between review and fix).

    Runtime Dependencies

    ToolVersionPurpose
    uv0.7+Python helper runner
    python33.10+Invoked by uv
    bash3.2+All shell helpers (3.2-portable for macOS default bash)
    jq1.6+Artifact read helpers
    gh2.xPR comment publish and external scrape
    git2.xEverywhere

    Installation is via the Claude Code plugin marketplace: /plugin marketplace add adamjgmiller/adamsreview followed by /plugin install adamsreview@adamsreview. Local checkout installs and one-shot --plugin-dir launches are also supported.

    Update: v0.4.0

    The current release is v0.4.0, which introduced the auto-fix-hint feature (Phase 5.5, Phase 7.5, and Step 4.5), enabling :fix and :walkthrough to batch-accept Sonnet-proposed fixes in a single confirmation step. /adamsreview:codex-review landed in v0.3.0. Recent releases have focused on hardening — anti-serialization callouts at fan-out sites, parallel-dispatch correctness, and JSON-pipeline backslash safety. The repository was created in April 2026 and last pushed in May 2026, with active follow-ups tracked in GitHub issues.

    adamsreview - 1

    Community Discussions

    Be the first to start a conversation about adamsreview

    Share your experience with adamsreview, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source (MIT)

    Fully free and open-source under the MIT License. Runs against the user's own Claude Code subscription.

    • All six pipeline commands (review, codex-review, add, walkthrough, fix, promote)
    • Multi-lens parallel sub-agent review
    • Automated fix loop with regression detection
    • Interactive walkthrough mode
    • Persistent JSON artifact state

    Capabilities

    Key Features

    • Multi-lens parallel sub-agent code review (up to 7 lenses)
    • Automated fix loop with regression detection and revert
    • Interactive walkthrough for uncertain findings via AskUserQuestion UI
    • External finding injection with deduplication and validation
    • Codex CLI peer review with tunable effort levels
    • Ensemble mode combining Claude lenses, Codex CLI, and PR bot-comment scraping
    • Persistent JSON artifact state per repo/branch/review
    • Auto-fix-hint batch-accept flow for one-confirm fix dispatch
    • Per-finding promotion override bypassing lane filter and score threshold
    • Token accounting for sub-agent and orchestrator spend
    • PR comment publishing and patching via GitHub CLI
    • Trivial-mode classifier to skip full lens run on small diffs
    • Holistic Opus cross-cutting pass (optional)
    • Granular or combined commit modes for fix output

    Integrations

    Claude Code
    Codex CLI
    GitHub CLI (gh)
    GitHub Pull Requests
    Anthropic Claude (Sonnet, Opus)
    uv (Python runner)
    jq
    Git
    API Available
    View Docs

    Reviews & Ratings

    No ratings yet

    Be the first to rate adamsreview and help others make informed decisions.

    Developer

    Adam Miller

    Adam Miller builds open-source developer tooling focused on AI-assisted code review workflows. The adamsreview project extends Claude Code's built-in review capabilities into a multi-stage pipeline with automated fix loops and persistent state. The project is independently maintained and hosted on GitHub under the MIT license.

    Read more about Adam Miller
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Qodo Merge icon

    Qodo Merge

    Qodo Merge is an AI-powered code review platform that automatically reviews pull requests, provides actionable feedback, and helps development teams ship high-quality code faster.

    CodeRabbit icon

    CodeRabbit

    AI-powered code review tool that automatically reviews pull requests, catches bugs, and provides context-aware feedback to help development teams ship faster with higher code quality.

    Stage CLI icon

    Stage CLI

    AI-powered CLI code review tool that organizes local code changes into logical chapters and highlights what to review before diving into the code.

    Browse all tools

    Related Topics

    Code Review

    Tools that help review, analyze, and improve code quality.

    71 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    436 tools

    Automated Testing

    AI-powered platforms that automate end-to-end testing processes with intelligent test case generation, execution, and reporting for faster, more reliable software delivery.

    88 tools
    Browse all topics
    Back to all tools
    Explore AI Tools
    • AI Coding Assistants
    • Agent Frameworks
    • MCP Servers
    • AI Prompt Tools
    • Vibe Coding Tools
    • AI Design Tools
    • AI Database Tools
    • AI Website Builders
    • AI Testing Tools
    • LLM Evaluations
    Follow Us
    • X / Twitter
    • LinkedIn
    • Reddit
    • Discord
    • Threads
    • Bluesky
    • Mastodon
    • YouTube
    • GitHub
    • Instagram
    Get Started
    • About
    • Editorial Standards
    • Corrections & Disclosures
    • Community Guidelines
    • Advertise
    • Contact Us
    • Newsletter
    • Submit a Tool
    • Start a Discussion
    • Write A Blog
    • Share A Build
    • Terms of Service
    • Privacy Policy
    Explore with AI
    • ChatGPT
    • Gemini
    • Claude
    • Grok
    • Perplexity
    Agent Experience
    • llms.txt
    Theme
    With AI, Everyone is a Dev. EveryDev.ai © 2026
    1view
    Discussions