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: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
1
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.
2
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.
3
Set a realistic budget
The default 15–$20 in the settings.
4
Review commits before deploying
Night Mode commits at every checkpoint. When you wake up, review the git log and diff before merging or deploying.
git log --oneline gives a quick summary of what was built.