Night Mode — also called YOLO Mode — lets CC Commander run an autonomous build session while you sleep. You answer 10 setup questions before you go, and CC Commander dispatches Claude with Opus at maximum reasoning, a hard budget cap, and a self-testing loop. The goal is to wake up to shipped code.Documentation Index
Fetch the complete documentation index at: https://docs.commanderplugin.com/llms.txt
Use this file to discover all available pages before exploring further.
How to launch
- Slash command
- Direct routing
Inside any Claude Code session:
The 10-question setup flow
Before starting the autonomous build, CC Commander walks you through 10 questions to produce a precise specification:- What are we building?
- Who is this for?
- What does success look like?
- What is the tech stack?
- Are there any constraints?
- What are the must-have features?
- What are the nice-to-have features?
- Is there a deadline?
- What is the budget cap?
- Anything else Claude should know?
Default configuration
Once you confirm the setup, CC Commander shows you the full configuration before starting:| Setting | Default | What it means |
|---|---|---|
| Model | Opus (max reasoning) | The most capable model, tuned for complex, multi-step tasks |
| Budget | $10 hard cap | Claude stops when the session reaches this cost |
| Max turns | 100 | Maximum back-and-forth steps in a single session |
| Self-test | Enabled | Claude runs tests after each phase and iterates on failures |
| Checkpoint | Every 10 edits | Commits are saved at regular intervals so progress is never lost |
| Stop file | ~/.claude/commander/yolo-stop | Create this file to halt the loop gracefully |
Stopping a running build
To stop the YOLO loop before it reaches the budget cap or the max-turns limit, create the stop file:You can also switch to the Claude tab in split mode (
Ctrl+A n) and press Ctrl+C for an immediate stop, but this skips the graceful checkpoint. The stop file is the safer option for overnight runs.Best practices
Write a clear task description
The more specific your answer to “What are we building?”, the better Claude can stay on track. Include the feature name, user-facing behavior, and any API or data contract constraints.
Define acceptance criteria
Answer the success criteria question with concrete, testable conditions — for example, “The checkout flow completes without errors and the Stripe test webhook fires.” Claude uses these criteria to decide when a phase is done.