autonomous-loops
Patterns and architectures for autonomous Claude Code loops — from simple sequential pipelines to RFC-driven multi-agent DAG systems. Retained for compatibility only: when new autonomous loop guidance is needed, use continuous-agent-loop instead.
By affaan-m · 2,904 installs
npx skills add affaan-m/ecc --skill autonomous-loops
Source repository · Upstream listing
Autonomous Loops Skill
Compatibility note (v1.8.0): autonomous loops is retained for one release.
The canonical skill name is now continuous agent loop . New loop guidance
should be authored there, while this skill remains available to avoid
breaking existing workflows.
Patterns, architectures, and reference implementations for running Claude Code autonomously in loops. Covers everything from simple claude p pipelines to full RFC driven multi agent DAG orchestration.
When to Use
Setting up autonomous development workflows that run without human intervention
Choosing the right loop architecture for your problem (simple vs complex)
Building CI/CD style continuous development pipelines
Running parallel agents with merge coordination
Implementing context persistence across loop iterations
Adding quality gates and cleanup passes to autonomous workflows
Loop Pattern Spectrum
From simplest to most sophisticated:
Pattern Complexity Best For
[Sequential Pipeline]( 1 sequential pipeline claude p) Low Daily dev steps, scripted workflows
[NanoClaw REPL]( 2 nanoclaw repl) Low Interactive persistent sessions
[Infinite Agentic Loop]( 3 infinite agentic loop) Medium Parallel content generation, spec driven work
[Continuous Claude PR Loop]( 4 continuous claude pr loop) Medium Multi day iterative projects with CI gates
[De Sloppify Pattern]( 5 the de sloppify pattern) Add on Quality cleanup after any Implementer step
[Ralphinho / RFC Driven DAG]( 6 ralphinho rfc driven dag orchestration) High Large features, multi unit parallel work with merge queue
1. Sequential Pipeline ( claude p )
The simplest loop. Break daily development into a sequence of non interactive claude p calls. Each call is a focused step with a clear prompt.
Core Insight
If you can't figure out a loop like this, it means you can't even drive the LLM to fix your code in interactive mode.
The claude p flag runs Claude Code non interactively with a prompt, exits when done. Chain calls to build a pipeline:
Key Design Principles
1. Each step is isolated — A fresh context window per claude p call means no context bleed between steps.
2. Order matters — Steps execute sequentially. Each builds on the filesystem state left by the previous.
3. Negative instructions are dangerous — Don't say "don't test type systems." Instead, add a separate cleanup step (see [De Sloppify Pattern]( 5 the de sloppify pattern)).
4. Exit codes propagate — set e stops the pipeline on failure.
Variations
With model routing:
With environment context:
With allowedTools restrictions:
2. NanoClaw REPL
ECC's built in persistent loop. A session aware REPL that calls claude p synchronously with full conversation history.
How It Works
1. Loads conversation history from ~/.claude/claw/{session}.md
2. Each user message is sent to claude p with full history as context
3. Responses are appended to the session file (Markdown as database)
4. Sessions persist across restarts
When NanoClaw vs Sequential Pipeline
Use Case NanoClaw Sequential Pipeline
Interactive exploration Yes No
Scripted automation No Yes
Session persistence Built in Manual
Context accumulation Grows per turn Fresh each step
CI/CD integration Poor Excellent
See the /claw command documentation for full details.
3. Infinite Agentic Loop
A two prompt system that orchestrates parallel sub agents for specification driven generation. Developed by disler (credit: @disler).
Architecture: Two Prompt System
The Pattern
1. Spec Analysis — Orchestrator reads a specification file (Markdown) defining what to generate
2. Directory Recon — Scans existing output to find the highest iteration number
3. Parallel Deployment — Launches N sub agents, each with:
The full spec
A unique creative direction
A specific iteration number (no conflicts)
A snapshot of existing iterations (for uniqueness)
4. Wave Management — For infinite mode, deploys waves of 3 5 agents until context is exhausted
Implementation via Claude Code Commands
Create .claude/commands/infinite.md :
Invoke:
Batching Strategy
Count Strategy
1 5 All agents simultaneously
6 20 Batches of 5
infinite Waves of 3 5, progressive sophistication
Key Insight: Uniqueness via Assignment
Don't rely on agents to self differentiate. The orchestrator assigns each agent a specific creative direction and iteration number. This prevents duplicate concepts across parallel agents.
4. Continuous Claude PR Loop
A production grade shell script that runs Claude Code in a continuous loop, creating PRs, waiting for CI, and merging automatically. Created by AnandChowdhary (credit: @AnandChowdhary).
Core Loop
Installation
Warning: Install continuous claude from its repository after reviewing the code. Do not pipe external scripts directly to bash.
Usage
Cross Iteration Context: SHARED TASK NOTES.md
The critical innovation: a SHARED TASK NOTES.md file persists across iterations:
Claude reads this file at iteration start and updates it at iteration end. This bridges the context gap between independent claude p invocations.
CI Failure Recovery
When PR checks fail, Continuous Claude automatically:
1. Fetches the failed run ID via gh run list
2. Spawns a new claude p with CI fix context
3. Claude inspects logs via gh run view , fixes code, commits, pushes
4. Re waits for checks (up to ci retry max attempts)
Completion Signal
Claude can signal "I'm done" by outputting a magic phrase:
Three consecutive iterations signaling completion stops the loop, preventing wasted runs on finished work.
Key Configuration
Flag Purpose
max runs N Stop after N successful iterations
max cost $X Stop after spending $X
max duration 2h Stop after time elapsed
merge strategy squash squash, merge, or rebase
worktree <name Parallel execution via git worktrees
disable commits Dry run mode (no git operations)
review prompt "..." Add reviewer pass per iteration
ci retry max N Auto fix CI failures (default: 1)
5. The De Sloppify Pattern
An add on pattern for any loop. Add a dedicated cleanup/refactor step after each Implementer step.
The Problem
When you ask an LLM to implement with TDD, it takes "write tests" too literally:
Tests that verify TypeScript's type system works (testing typeof x === 'string' )
Overly defensive runtime checks for things the type system already guarantees
Tests for framework behavior rather than business logic
Excessive error handling that obscures the actual code
Why Not Negative Instructions?
Adding "don't test type systems" or "don't add unnecessary checks" to the Implementer prompt has downstream effects:
The model becomes hesitant about ALL testing
It skips legitimate edge case tests
Quality degrades unpredictably
The Solution: Separate Pass
Instead of constraining the Implementer, let it be thorough. Then add a focused cleanup agent:
In a Loop Context
Key Insight
Rather than adding negative instructions which have downstream quality effects, add a separate de sloppify pass. Two focused agents outperform one constrained agent.
6. Ralphinho / RFC Driven DAG Orchestration
The most sophisticated pattern. An RFC driven, multi agent pipeline that decomposes a spec into a dependency DAG, runs each unit through a tiered quality pipeline, and lands them via an agent driven merge queue. Created by enitrat (credit: @enitrat).
Architecture Overview
RFC Decomposition
AI reads the RFC and produces work units:
Decomposition Rules:
Prefer fewer, cohesive units (minimize merge risk)
Minimize cross unit file overlap (avoid conflicts)
Keep tests WITH implementation (never separate "implement X" + "test X")
Dependencies only where real code dependency exists
The dependency DAG determines execution order:
Complexity Tiers
Different tiers get different pipeline depths:
Tier Pipeline Stages
trivial implement → test
small implement → test → code review
medium research → plan → implement → test → PRD review + code review → review fix
large research → plan → implement → test → PRD review + code review → review fix → final review
This prevents expensive operations on simple changes while ensuring architectural changes get thorough scrutiny.
Separate Context Windows (Author Bias Elimination)
Each stage runs in its own agent process with its own context window:
Stage Model Purpose
Research Sonnet Read codebase + RFC, produce context doc
Plan Opus Design implementation steps
Implement Codex Write code following the plan
Test Sonnet Run build + test suite
PRD Review Sonnet Spec compliance check
Code Review Opus Quality + security check
Review Fix Codex Address review issues
Final Review Opus Quality gate (large tier only)
Critical design: The reviewer never wrote the code it reviews. This eliminates author bias — the most common source of missed issues in self review.
Merge Queue with Eviction
After quality pipelines complete, units enter the merge queue:
File Overlap Intelligence:
Non overlapping units land speculatively in parallel
Overlapping units land one by one, rebasing each time
Eviction Recovery:
When evicted, full context is captured (conflicting files, diffs, test output) and fed back to the implementer on the next Ralph pass:
Data Flow Between Stages
Worktree Isolation
Every unit runs in an isolated worktree (uses jj/Jujutsu, not git):
Pipeline stages for the same unit share a worktree, preserving state (context files, plan files, code changes) across research → plan → implement → test → review.
Key Design Principles
1. Deterministic execution — Upfront decomposition locks in parallelism and ordering
2. Human review at leverage points — The work plan is the single highest leverage intervention point
3. Separate concerns — Each stage in a separate context window with a separate agent
4. Conflict recovery with context — Full eviction context enables intelligent re runs, not blind retries
5. Tier driven depth — Trivial changes skip research/review; large changes get maximum scrutiny
6. Resumable workflows — Full state persisted to SQLite; resume from any point
When to Use Ralphinho vs Simpler Patterns
Signal Use Ralphinho Use Simpler Pattern
Multiple interdependent work units Yes No
Need parallel implementation Yes No
Merge conflicts likely Yes No (sequential is fine)
Single file change No Yes (sequential pipeline)
Multi day project Yes Maybe (continuous claude)
Spec/RFC already written Yes Maybe
Quick iteration on one thing No Yes (NanoClaw or pipeline)
Choosing the Right Pattern
Decision Matrix
Combining Patterns
These patterns compose well:
1. Sequential Pipeline + De Sloppify — The most common combination. Every implement step gets a cleanup pass.
2. Continuous Claude + De Sloppify — Add review prompt with a de sloppify directive to each iteration.
3. Any loop + Verification — Use ECC's /verify command or verification loop skill as a gate before commits.
4. Ralphinho's tiered approach in simpler loops — Even in a sequential pipeline, you can route simple tasks to Haiku and complex tasks to Opus:
Anti Patterns
Common Mistakes
1. Infinite loops without exit conditions — Always have a max runs, max cost, max duration, or completion signal.
2. No context bridge between iterations — Each claude p call starts fresh. Use SHARED TASK NOTES.md or filesystem sta