Ralph Loop - continuous execution until task completion. Automatically continues work across iterations.
Continuous execution mode that persists until the task is complete.
/loop implement the entire checkout flow
If interrupted, the loop remembers progress and resumes:
[Loop Progress: 7/12 tasks complete]
Resuming from: "Add payment validation"
Visual progress indicator:
[=====> ] 5/10 tasks
Current: Implementing order confirmation
Next: Email notification setup
Automatically pauses for:
/loop migrate all API endpoints to v2
[Loop Started: API Migration]
Tasks identified: 15
[1/15] Analyzing current v1 endpoints...
[2/15] Creating v2 router structure...
[3/15] Migrating /users endpoint...
...
[15/15] Updating API documentation...
[Loop Complete]
- 15 tasks completed
- 23 files modified
- 0 errors
During loop execution:
pause - Pause at next safe pointskip - Skip current taskstatus - Show progressstop - End loop (saves progress)| Option | Description |
|---|---|
--max-tasks N | Limit to N tasks |
--pause-on-error | Stop on any error |
--dry-run | Plan only, don't execute |
--verbose | Detailed progress output |