From oh-my-claudecode
Cancels active Ralph and linked Ultrawork modes by writing deactivation state files. Use when you need to stop persistent completion loops.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-claudecode:cancel-ralphThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
[RALPH CANCELLED]
[RALPH CANCELLED]
Ralph has been cancelled. You MUST now deactivate the state files.
Execute this command to fully cancel ALL persistent modes:
mkdir -p .omc ~/.claude && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ralph"}' > .omc/ralph-state.json && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ralph", "linked_to_ralph": false}' > .omc/ultrawork-state.json && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ralph"}' > .omc/ralph-plan-state.json && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ralph"}' > ~/.claude/ralph-state.json && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ralph"}' > ~/.claude/ultrawork-state.json && \
rm -f .omc/ralph-verification.json
After running this command, you are free to stop working. The persistent mode hook will no longer force continuation.
Since v3.0, Ralph automatically activates Ultrawork for parallel execution. When you cancel Ralph, the linked Ultrawork is also cancelled. If you started Ultrawork separately (not via Ralph), use /cancel-ultrawork to cancel it independently.
/ralph "task" - Start ralph with ultrawork (default)/ultrawork "task" - Start ultrawork only (standalone)Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub mazenyassergithub/oh-my-claudecode --plugin oh-my-claudecode