← ClaudeAtlas

vibe-modelisted

Sets the execution mode for the vibe-* framework — manual or autonomous. In manual mode: waits for "next" between tasks, waits for "review:" after phases. In autonomous mode: executes all tasks automatically, uses subagents for independent tasks in parallel, auto-runs review after each phase, only stops on P0 findings or deploy gates. Triggers on "vibe-mode: autonomous", "vibe-mode: manual", "vibe-mode: status", "set autonomous mode", "set manual mode", "switch to autonomous", "turn on autonomous", "turn off autonomous", "what mode am I in". Always use when the user wants to control how much the framework runs automatically vs waits for human input. Writes VIBE_MODE to CLAUDE.md. Execution-driving skills (vibe-new-app, vibe-add-feature, vibe-fix-bug, vibe-parallel, vibe-review, vibe-cost) read it on startup; skills with no mode-dependent behavior don't need to.
aakashdhar/vibe-skill · ★ 7 · AI & Automation · score 68
Install: claude install-skill aakashdhar/vibe-skill
# Vibe Mode Skill Sets and persists the execution mode for the entire vibe-* framework. One command. Affects every skill in the session. --- ## Commands ``` vibe-mode: autonomous ← full auto-execution, subagents, auto-review vibe-mode: manual ← default, waits for next and review: at each step vibe-mode: status ← shows current mode and what it means ``` --- ## Step 1 — Read current CLAUDE.md ```bash cat CLAUDE.md 2>/dev/null | grep "VIBE_MODE" || echo "NOT SET" ``` If `CLAUDE.md` does not exist: > "No CLAUDE.md found — are you at the project root? > Run this from inside a vibe-* project." Stop. --- ## Step 2 — Apply the mode ### Setting autonomous mode Find the `## Execution mode` section in `CLAUDE.md`. If it exists — update the `VIBE_MODE` line. If it doesn't exist — append the section. ``` ## Execution mode VIBE_MODE=autonomous ``` Then confirm: ``` ⚡ Autonomous mode activated. What this means for this session: Tasks — execute automatically, no "next" needed Parallel — independent tasks spawn as subagents simultaneously Sequential — dependent tasks run in order automatically Review — runs automatically after each phase completes P0 found — stops and waits for you to resolve P1/P2 — logged to backlog, build continues Deploy — always manual, no exceptions To switch back: vibe-mode: manual ``` ### Setting manual mode ``` ## Execution mode VIBE_MODE=manual ``` Confirm: ``` ✋ Manual mode activated. What t