From loophaus
Cancels active Claude Code loops by checking/removing .loophaus/state.json or legacy .claude/ralph-loop.local.md files and reporting stopped iteration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loophaus:ralph-claude-cancelThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
To cancel the loop:
To cancel the loop:
Check if .loophaus/state.json exists using Bash: test -f .loophaus/state.json && echo "EXISTS" || echo "NOT_FOUND"
test -f .claude/ralph-loop.local.md && echo "LEGACY" || echo "NOT_FOUND"If NOT_FOUND on both: Say "No active loop found."
If EXISTS (.loophaus/state.json):
.loophaus/state.json to get the current iteration number from currentIterationrm .loophaus/state.jsonIf LEGACY (.claude/ralph-loop.local.md):
.claude/ralph-loop.local.md to get the iteration number from the iteration: fieldrm .claude/ralph-loop.local.mdnpx claudepluginhub vcz-gray/loophausProvides 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.
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.