What problem does it solve? Running Claude Code autonomously over long tasks is hard: single prompts lose context between iterations, parallel agents conflict on files, and naive loops waste money without exit conditions. This Skill provides proven patterns and reference architectures for building self-running development loops that iterate, review, and merge code without human intervention. ## Core Features & Use Cases - Loop Pattern Spectrum: Six architectures from simple claude -p sequential pipelines to RFC-driven multi-agent DAG orchestration (Ralphinho), with a decision matrix for choosing the right one. - Context Bridging & Quality Gates: Techniques like SHARED_TASK_NOTES.md for cross-iteration memory, the de-sloppify cleanup pass, and separate reviewer agents to eliminate author bias. - Bounded Autonomy: Exit conditions via max-runs, max-cost, max-duration, and completion signals, plus CI failure auto-recovery and merge-queue eviction handling. - Use Case: You want Claude to add tests across a repo overnight. Use the Continuous Claude PR loop pattern: each iteration creates a branch, runs claude -p, opens a PR, waits for CI, auto-fixes failures, merges, and repeats until the cost cap is hit. ## Quick Start Ask Claude to set up a sequential autonomous pipeline using the autonomous-loops patterns that implements a feature, runs a cleanup pass, verifies the build, and commits each step.