loop
Installation
SKILL.md
Loop Skill
Execute any task iteratively until completion using the Ralph Wiggum methodology.
Core Concept
The loop methodology repeatedly sends the same prompt to OpenCode until a completion promise is detected or max iterations reached. Each iteration, the AI sees its previous work in modified files and git history, creating a feedback loop for self-correction.
while not complete and iterations < max:
run opencode with prompt
check for completion promise in output
iterations++