coding-agent-loops
Installation
SKILL.md
Coding Agent Loops
Run AI coding agents in persistent, self-healing sessions with automatic retry and completion notification.
Core Concept
Instead of one long agent session that stalls or dies, run many short sessions in a loop. Each iteration starts fresh — no accumulated context. The agent picks up where it left off via files and git history.
Quick Start with Claude Code
Single Task
tmux new -d -s my-task \
"cd ~/Mundi\ Princeps && claude --dangerously-skip-permissions -p 'Fix the authentication bug in apps/kadenwood'; \
EXIT_CODE=\$?; echo EXITED: \$EXIT_CODE; sleep 999999"