From ralph-wiggum
Cancels an active Ralph Wiggum loop by removing its state file and reporting the iteration at which it was stopped.
How this command is triggered — by the user, by Claude, or both
Slash command
/ralph-wiggum:cancel-ralphThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Cancel Ralph Check the output above: 1. **If FOUND_LOOP=false**: - Say "No active Ralph loop found." 2. **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.
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:
If FOUND_LOOP=true:
rm .claude/ralph-loop.local.mdnpx claudepluginhub drtraderai-glitch/claude-fix-ccttb-trading-bot-011curiykaujpyyxdwfrbjok --plugin ralph-wiggum5plugins reuse this command
First indexed Dec 31, 2025
/cancel-ralphCancels an active Ralph Wiggum loop by removing its state file and reporting the iteration at which it was stopped.
/cancel-ralphCancels active Ralph Loop: checks for .claude/ralph-loop.local.md state file, reads iteration if present, removes it, and reports status.
/cancel-ralphCancels an active Ralph loop by removing its state file and reporting the last iteration number.
/cancel-ralphCancels an active Ralph Reviewed loop by deleting the state file and reporting the iteration and review count.
/cancel-ralphLists active Ralph Wiggum loops, prompts user to select and confirm cancellation of one or more via interactive menu, then deletes state files and logs action.