You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: reduce Ralph default from 50 to 10 iterations, make configurable
50 was excessive for typical overnight task lists. Now defaults to 10.
Configurable via RALPH_MAX_ITERATIONS in .env or per-run.
The /run-ralph skill now counts tasks and sets iterations to
task count + 2 (buffer for retries), or asks the user.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: .claude/skills/run-ralph/SKILL.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,22 +39,29 @@ Rules for good task files:
39
39
sqlite3 store/messages.db "SELECT jid FROM registered_groups WHERE folder = 'main' LIMIT 1;"
40
40
```
41
41
42
-
### 3. Start the run
42
+
### 3. Set iterations
43
+
44
+
Count the unchecked tasks in the task file. Set `maxIterations` to that count + 2 (buffer for retries). If unsure, ask the user: "You have N tasks — run all of them, or set a limit?"
45
+
46
+
Default is 10 if not specified. Can also be set via `RALPH_MAX_ITERATIONS` in `.env`.
0 commit comments