AI SummaryA control booster that immediately disables autonomous loop mode in Claude Code by setting state flags and kill switches. Developers using RU (autonomous mode) benefit from having a reliable emergency stop mechanism.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "stop" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (2 files) mkdir -p .claude/skills/stop && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/stop/SKILL.md "https://raw.githubusercontent.com/terrylica/cc-skills/main/plugins/ru/skills/stop/SKILL.md" && mkdir -p .claude/skills/stop/references && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/stop/references/evolution-log.md "https://raw.githubusercontent.com/terrylica/cc-skills/main/plugins/ru/skills/stop/references/evolution-log.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Disable autonomous loop mode immediately. TRIGGERS - ru stop, stop autonomous, disable loop, end autonomous mode.
RU: Stop
EXECUTE IMMEDIATELY: Use the Bash tool to run the following script. `bash /usr/bin/env bash << 'RALPH_UNIVERSAL_STOP' PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$(pwd)}" echo "Stopping RU loop..."
Set state to stopped
STATE_FILE="$PROJECT_DIR/.claude/ru-state.json" if [[ -d "$PROJECT_DIR/.claude" ]]; then echo '{"state": "stopped"}' > "$STATE_FILE" fi
Create kill switch for redundancy
touch "$PROJECT_DIR/.claude/STOP_LOOP"
Update config if exists
CONFIG_FILE="$PROJECT_DIR/.claude/ru-config.json" if [[ -f "$CONFIG_FILE" ]]; then jq '.state = "stopped"' "$CONFIG_FILE" > "$CONFIG_FILE.tmp" && mv "$CONFIG_FILE.tmp" "$CONFIG_FILE" fi
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster