viberslib
BACK TO DICTIONARY
🔁 WORKFLOW

Ralph Loop

EN

Bash loop pattern popularized by Geoffrey Huntley: re-run an AI agent with fresh context each iteration, read tasks from a plan file, commit on success. The "Ralph Wiggum technique" — forgetful but persistent.

TR

Geoffrey Huntley'in popülerleştirdiği bash döngüsü deseni: AI agent'ı taze context ile sürekli baştan çağır, plan dosyasından sırayı oku, commit'e kadar git. "Ralph Wiggum tekniği" — unutkan ama ısrarlı.

EXAMPLES
  • while true; do claude -p "$(cat plan.md)" --headless; done
  • fresh-context loop: read prd.json → pick top task → implement → commit
RELATED TERMS