Cancel active Ralph Loop
Stops an active Ralph loop by removing its state file.
/plugin marketplace add majesticlabs-dev/majestic-marketplace/plugin install majestic-ralph@majestic-marketplaceStop the currently running Ralph loop by removing the state file.
if [ -f .claude/ralph-loop.local.md ]; then
ITERATION=$(grep '^iteration:' .claude/ralph-loop.local.md | cut -d' ' -f2)
rm .claude/ralph-loop.local.md
echo "Ralph loop cancelled at iteration ${ITERATION:-unknown}"
else
echo "No active Ralph loop found"
fi
If loop was active:
Ralph loop cancelled at iteration N
If no loop:
No active Ralph loop found
/cancel-ralphCancel active Ralph Wiggum loop