EveryDev.ai
Subscribe
Home
Tools

3,431+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • 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
    1. Home
    2. Tools
    3. ClaudeZero
    ClaudeZero icon

    ClaudeZero

    AI Coding Assistants

    An open-source supervisor script that loops Claude Code over a todo list, completing and committing each task, with parallel instance support and context-rot prevention via automatic session restarts.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free to use, modify, and distribute under the MIT License.

    Engagement

    Available On

    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI Coding AssistantsTerminal & Session ManagementAutonomous Systems

    Alternatives

    port22workmuxWarp Code
    Developer
    Ivan RublevGreven, GermanyEst. 2026

    Listed Aug 2026

    About ClaudeZero

    ClaudeZero is an open-source, MIT-licensed shell script built and maintained by Ivan Rublev that acts as a supervisor for Claude Code, Anthropic's coding agent. It runs claude in a loop over a Markdown todo list, guiding it to implement, commit, and check off each task one at a time — unattended. The project is self-hosted, free to use, and available on GitHub.

    What It Is

    ClaudeZero sits at the "loop engineering" layer of AI-assisted software delivery. Rather than prompting Claude Code manually turn by turn, ClaudeZero automates the outer loop: it claims a task, forks a git worktree, lets Claude implement and commit, merges back to the base branch, ticks the checkbox, and restarts for the next task. Multiple instances can run in parallel, coordinating through git worktrees and flock-serialized merges so no two instances race on the same task.

    How the Loop Works

    The kata every instance follows is strict and deterministic:

    • Find & validate — reads the todo file; a missing or duplicate task ID stops the loop with a report.
    • Judge independence — a task is only blocked if its body explicitly consumes an unchecked task's output; adjacency alone is not a dependency.
    • Claim & re-check — one task per git worktree (branch name = claim), then guards against a peer who already landed it.
    • Implement & check off — scoped to that task, ticks only its box, commits.
    • Merge serially — on conflict or over-check, self-heals once; otherwise stops and hands off to the user.
    • End the session — the shell starts a fresh one for the next task, or waits without spending a token while peers hold the rest.

    Context Rot Prevention

    A core design concern is "context rot" — the quality decay that happens as a long Claude session accumulates tool output, dead ends, and superseded reasoning. ClaudeZero's Stop hook monitors cumulative token usage and SIGTERMs the session before rot sets in, then restarts on a fresh context. The thresholds are model-aware: models with a 1M context window restart at 200,000 tokens; all others restart at 160,000 (80% of an assumed 200k window). Because all durable state lives in git and the todo file, the restart is amnesiac by design — only what was committed survives, which is exactly what should survive.

    Parallel Execution and Crash Resilience

    Running claudezero todo.md in multiple terminal windows spawns parallel instances. Each instance gets a short human-readable nickname (e.g., "moss") so operators can identify and kill specific sessions without reading hex IDs. Crash resilience is built in: if a claude process dies mid-task, its worktree and claim branch remain; the next instance to come by reclaims the branch, finishes the work, and merges it back. A task only counts as done once its checkbox is ticked on the base branch.

    Loop Engineering Philosophy

    ClaudeZero is the mechanical layer of a three-level framework the author calls "loop engineering":

    1. Spec — the todo file plus per-task issue files with acceptance criteria.
    2. Harness — CLAUDE.md conventions, tests, linters, and review checks.
    3. Loop — ClaudeZero, which owns the prompting cycle so the developer designs the system rather than driving it turn by turn.

    ClaudeZero never writes CLAUDE.md itself, keeping the harness learning-agnostic. A --taskprompt flag lets operators inject a reflection step — for example, instructing Claude to append a lesson to CLAUDE.md after each task so future sessions and parallel peers inherit what was learned.

    Setup Path

    ClaudeZero supports macOS and Linux (bash 3.2-safe). Installation is via Homebrew on macOS (brew install IvanRublev/tap/claudezero) or a single curl command on Linux. Prerequisites are bash, git, the claude CLI, and flock. The script guard-checks prerequisites at startup and exits with a clear message if anything is missing. End-to-end tests live in TEST.md and are designed to be executed autonomously by an LLM agent.

    ClaudeZero - 1

    Community Discussions

    Be the first to start a conversation about ClaudeZero

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

    Pricing

    OPEN SOURCE

    Open Source

    Free to use, modify, and distribute under the MIT License.

    • Full supervisor loop over todo lists
    • Parallel instance support
    • Context-rot prevention
    • Crash resilience
    • Token usage reporting

    Capabilities

    Key Features

    • Loops Claude Code over a Markdown todo list until all tasks are completed and committed
    • Automatic context-rot prevention via token-threshold-based session restarts
    • Parallel instance support with git worktree isolation per task
    • flock-serialized merges to prevent race conditions across instances
    • Crash resilience: incomplete tasks are reclaimed by the next available instance
    • Named sessions with human-readable nicknames for easy identification
    • Ctrl+C window with 5-second pause between runs for clean stops
    • Watchdog timer to kill stalled claude sessions
    • Dependency-wait logic to avoid burning tokens on fully blocked todo lists
    • CLAUDEZERO_LINK for symlinking external spec files into worktrees
    • Token usage reporting per instance and aggregated across all instances
    • Loop prompt mode for arbitrary repeated prompting without todo zeroing
    • Task prompt customization via --taskprompt flag
    • Reflection step support for writing lessons to CLAUDE.md across restarts

    Integrations

    Claude Code (claude CLI)
    Git
    Git worktrees
    flock
    Homebrew
    CLAUDE.md
    Bash
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

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

    Developer

    Ivan Rublev

    Ivan Rublev builds AI loop-engineering tools and consulting services that help software teams ship faster using AI-assisted delivery. He created ClaudeZero, an open-source supervisor for Claude Code, and offers hands-on training in spec discovery, todo design, and reflection-prompt engineering. Ivan has a background in backend engineering (Python), no-code tooling (n8n), cloud platforms (AWS, GCP, Azure), and collaborative modelling techniques like Event Storming and Example Mapping. He works with growth engineers and founding engineers to close the gap between AI assistance and production delivery.

    Founded 2026
    Greven, Germany
    1 employees
    Read more about Ivan Rublev
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    port22 icon

    port22

    port22 lets you monitor and control your Mac-based AI coding agents (Claude Code, Codex, OpenCode) from your iPhone, streaming live transcripts and approvals from anywhere.

    workmux icon

    workmux

    A CLI tool that combines git worktrees with tmux windows to create isolated, parallel development environments for running multiple AI agents simultaneously.

    Warp Code icon

    Warp Code

    An open-source agentic development environment built from the terminal, letting developers prompt, plan, and ship production code with AI agents across multiple models and repos.

    Browse all tools

    Related Topics

    AI Coding Assistants

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

    713 tools

    Terminal & Session Management

    Terminal emulators, multiplexers, and session managers that help developers run parallel AI coding agents, manage multiple workspaces, and maintain persistent terminal sessions.

    40 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    367 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions