From oh-my-claudecode
Cancels active Ultrawork mode by updating JSON state files. Checks for Ralph linkage and directs to /cancel-ralph if linked.
npx claudepluginhub mazenyassergithub/oh-my-claudecode --plugin oh-my-claudecodeThis skill uses the workspace's default tool permissions.
[ULTRAWORK CANCELLED]
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
[ULTRAWORK CANCELLED]
The Ultrawork mode has been cancelled. Clearing state files.
First, check if ultrawork is linked to an active Ralph loop:
cat .omc/ultrawork-state.json 2>/dev/null | jq -r '.linked_to_ralph // false'
If linked_to_ralph is true: Use /cancel-ralph instead to cancel both Ralph and its linked Ultrawork.
Otherwise, execute this command to cancel Ultrawork:
mkdir -p .omc && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ultrawork"}' > .omc/ultrawork-state.json && \
echo '{"active": false, "cancelled_at": "'$(date -Iseconds)'", "reason": "User cancelled via /cancel-ultrawork"}' > ~/.claude/ultrawork-state.json
After running this command, ultrawork mode will be deactivated and the HUD will update.
Since v3.0, Ralph automatically activates Ultrawork. If you see linked_to_ralph: true in the ultrawork state, it means Ultrawork was auto-activated by Ralph. In this case:
/cancel-ralph to cancel both modes/ultrawork "task" - Start ultrawork only (standalone)/ralph "task" - Start ralph with ultrawork (default)