← ClaudeAtlas

iteratelisted

Ralph Loop pattern with swarm mode: iterative execution until VERIFIED_DONE with multi-agent coordination. Use when: (1) iterative refinement needed, (2) quality gates must pass, (3) automated validation required. Triggers: /iterate, 'iterate until done', 'keep trying', 'fix until passing', 'loop until done'.
alfredolopez80/multi-agent-ralph-loop · ★ 146 · AI & Automation · score 80
Install: claude install-skill alfredolopez80/multi-agent-ralph-loop
# /iterate - Ralph Iterate Pattern (v3.0) Execute tasks iteratively with automatic quality validation until VERIFIED_DONE signal. ## v2.88 Key Changes (MODEL-AGNOSTIC) - **Model-agnostic**: Uses model configured in `~/.claude/settings.json` or CLI/env vars - **No flags required**: Iterations use the configured default model - **Flexible**: Works with GLM-5, Claude, Minimax, or any configured model - **Settings-driven**: Model selection via `ANTHROPIC_DEFAULT_*_MODEL` env vars ## v2.87 Key Changes (UNIFIED SKILLS MODEL) - **Skills/Commands unification**: All commands now use SKILL.md format - **Single source of truth**: Skills live in repo, symlinked globally - **Version alignment**: All skills updated to v2.87.0 - **Documentation consolidated**: Architecture docs in `docs/architecture/` ## Overview The Ralph Loop is a **continuous execution pattern** that iterates through EXECUTE -> VALIDATE -> QUALITY CHECK cycles until the task passes all quality gates or reaches the iteration limit. ``` +------------------------------------------------------------------+ | RALPH LOOP PATTERN | +------------------------------------------------------------------+ | | | +----------+ +--------------+ +-----------------+ | | | EXECUTE |--->| VALIDATE |--->| Quality Passed? | | | | Task | | (hooks/gates)| +--------+--------+ |