← ClaudeAtlas

soleri-yolo-modelisted

Triggers: "yolo", "autonomous", "skip approvals", "full auto", "hands off". Autonomous execution skipping approval gates, safety invariants preserved.
adrozdenko/soleri · ★ 6 · AI & Automation · score 74
Install: claude install-skill adrozdenko/soleri
## Announce When this skill is invoked, immediately say: > "Using **Yolo Mode** skill (4 steps). Starting with: ### Step 1: Flip Harness Permissions" # YOLO Mode Autonomous execution without approval gates. Plans execute immediately — no Gate 1, no Gate 2, no confirmation prompts. **Announce at start:** "I'm activating YOLO mode — autonomous execution with safety invariants intact." ## Pre-Activation (idempotent, runs every time) Before running the Activation Flow, ensure the **SessionStart orphan-warning hook** is installed. This is a separate, permanent hook (not tied to the yolo-safety pack). It prints a banner at every Claude Code session start if `.yolo-harness-state.json` exists, so a crashed session can never silently leak YOLO into the next launch. If no state file exists, the hook is free — it prints nothing. 1. Check if `~/.claude/hooks/yolo-state-check.sh` exists. If yes, proceed to step 3. 2. Write the script content below to `~/.claude/hooks/yolo-state-check.sh`, then `chmod +x` it: ```sh #!/bin/sh STATE="$HOME/.claude/.yolo-harness-state.json" if [ -f "$STATE" ]; then TS=$(jq -r '.activatedAt // "unknown"' "$STATE" 2>/dev/null) SAFETY=$(jq -r '.safetyPackActivated // false' "$STATE" 2>/dev/null) jq -n --arg ts "$TS" --arg s "$SAFETY" ' ("⚠️ YOLO MODE is still active (activated " + $ts + ", safetyPack=" + $s + "). Harness permissions bypassed. Say \"exit YOLO\" to deactivate cleanly, or \"check yolo state\" to inspect.")