Help us improve
Share bugs, ideas, or general feedback.
From deep-loop
Cancel active deep loop session. Use when user asks to 'stop deep', 'cancel deep', 'abort loop'. Cleans up state files.
npx claudepluginhub marcusgoll/deep-loop-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/deep-loop:cancel-deepThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Immediately cancels an active deep loop session.
Cancels active Claude Code loops by checking/removing .loophaus/state.json or legacy .claude/ralph-loop.local.md files and reporting stopped iteration.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Share bugs, ideas, or general feedback.
Immediately cancels an active deep loop session.
Update state file:
# Read current state
cat .deep/state.json 2>/dev/null
Set cancelled state:
Write to .deep/state.json:
{
"active": false,
"complete": true,
"phase": "CANCELLED",
"cancelled_at": "<current ISO timestamp>",
"reason": "User requested cancellation"
}
Clean up control files:
rm -f .deep/FORCE_EXIT .deep/FORCE_COMPLETE .deep/NEEDS_USER .deep/RALPH_HANDOFF 2>/dev/null
Report:
Deep loop cancelled.
- State: .deep/state.json updated
- Control files: cleaned
.deep/ directory (preserves history)