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/loophausGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.