633 B
633 B
description, allowed-tools, hide-from-slash-command-tool
| description | allowed-tools | hide-from-slash-command-tool | |
|---|---|---|---|
| Cancel active Ralph Wiggum loop |
|
true |
Cancel Ralph
if [[ -f .claude/ralph-loop.local.md ]]; then
ITERATION=$(grep '^iteration:' .claude/ralph-loop.local.md | sed 's/iteration: *//')
echo "FOUND_LOOP=true"
echo "ITERATION=$ITERATION"
else
echo "FOUND_LOOP=false"
fi
Check the output above:
-
If FOUND_LOOP=false:
- Say "No active Ralph loop found."
-
If FOUND_LOOP=true:
- Use Bash:
rm .claude/ralph-loop.local.md - Report: "Cancelled Ralph loop (was at iteration N)" where N is the ITERATION value from above.
- Use Bash: