Help us improve
Share bugs, ideas, or general feedback.
From code
Cancels active ClosedLoop loop: checks for .closedloop-ai/closedloop-loop.local.md state file, reads iteration if present, removes it, and reports status with iteration number or 'no active loop'.
npx claudepluginhub closedloop-ai/claude-plugins --plugin codeHow this command is triggered — by the user, by Claude, or both
Slash command
/code:cancel-codeThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Cancel ClosedLoop Loop To cancel the ClosedLoop loop: 1. Check if `.closedloop-ai/closedloop-loop.local.md` exists using Bash: `test -f .closedloop-ai/closedloop-loop.local.md && echo "EXISTS" || echo "NOT_FOUND"` 2. **If NOT_FOUND**: Say "No active ClosedLoop loop found." 3. **If EXISTS**: - Read `.closedloop-ai/closedloop-loop.local.md` to get the current iteration number from the `iteration:` field - Remove the file using Bash: `rm .closedloop-ai/closedloop-loop.local.md` - Report: "Cancelled ClosedLoop loop (was at iteration N)" where N is the iteration value
/cancel-loopStops a running loop by checking for .claude/fireauto-loop.local.md marker file, reports iteration if found, and removes it. Informs if no loop is running.
/cancel-wiggumCancels active Wiggum loop by removing .claude/wiggum-loop.local.md state file and reports iteration number or that no loop is active.
/cancel-iterateCancels active iterate loop by checking and removing .claude/ucai-iterate.local.md tracking file, reporting iteration number or 'no active loop found'.
/cancel-loop-codex-reviewCancels an active loop-with-codex-review by checking for state files, reading the current round number, and removing the state files.
/loop-stopStops active loop by checking and removing .loophaus/state.json or legacy .claude/ralph-loop.local.md, reports iteration stopped at or 'No active loop found'.
/cancel-rlcr-loopCancels active RLCR loop by running a Bash script, reports status from output, and prompts user for confirmation if in Finalize phase.
Share bugs, ideas, or general feedback.
To cancel the ClosedLoop loop:
Check if .closedloop-ai/closedloop-loop.local.md exists using Bash: test -f .closedloop-ai/closedloop-loop.local.md && echo "EXISTS" || echo "NOT_FOUND"
If NOT_FOUND: Say "No active ClosedLoop loop found."
If EXISTS:
.closedloop-ai/closedloop-loop.local.md to get the current iteration number from the iteration: fieldrm .closedloop-ai/closedloop-loop.local.md