Interactive Wizard
The interactive wizard is the easiest way to use ralph-starter. It guides you through the entire process of creating a project, from idea to running code.
Launch the Wizard
ralph-starter
Or explicitly:
ralph-starter wizard
How It Works
Step 1: Project Idea
The wizard first asks if you have a project idea:
- "Yes, I know what I want to build" - Proceed to describe your idea
- "No, help me brainstorm ideas" - Launch Idea Mode
Step 2: Idea Refinement
Once you describe your idea (e.g., "a habit tracker app"), the AI:
- Suggests a project name
- Determines the project type (web app, CLI, API, etc.)
- Recommends a tech stack
- Identifies core features
- Suggests additional features
- Estimates complexity
Step 3: Customization
You can then customize:
- Project Type - Web, API, CLI, Mobile, Library, Automation
- Tech Stack - Frontend, backend, database choices
- Features - Select which features to include
- Complexity - Prototype, MVP, or Full-featured
Step 4: Execution Options
Choose how to proceed:
- Start building automatically - Begin the AI coding loop
- Just create the plan - Generate files for manual execution later
Optional: Enable auto-commit to save changes as you build.
Step 5: Build
The wizard then:
- Creates the project directory
- Initializes Ralph Playbook files (AGENTS.md, specs/, etc.)
- Writes a detailed specification
- Generates an implementation plan
- Starts building with AI (if auto-run enabled)
Example Session
$ ralph-starter
╭─────────────────────────────────────────────────────────────╮
│ Welcome to ralph-starter! │
│ Let's build something awesome together. │
╰─────────────────────────────────────────────────────────────╯
? Do you have a project idea?
❯ Yes, I know what I want to build
No, help me brainstorm ideas
? What's your idea for today?
(e.g., "a habit tracker app" or "an API for managing recipes")
> a personal finance tracker
✔ Got it!
Here's what I understand:
────────────────────────────────────────
Project: personal-finance-tracker
Type: Web Application
Tech Stack:
Frontend: react
Backend: nodejs
Database: sqlite
Key Features:
• Transaction tracking
• Budget management
• Expense categories
• Monthly reports
Complexity: Working MVP
? Does this look right?
❯ Yes, let's build it!
I want to change something
Start over with a different idea
Existing Project Detection
The wizard automatically detects existing projects when you select a working directory.
Ralph Playbook Projects
If the directory contains Ralph Playbook files (like AGENTS.md, IMPLEMENTATION_PLAN.md), the wizard recognizes it as an existing Ralph project:
Ralph Playbook detected!
────────────────────────────────────────
Directory: /path/to/my-project
Found files:
✓ AGENTS.md
✓ IMPLEMENTATION_PLAN.md
✓ PROMPT_build.md
✓ PROMPT_plan.md
✓ specs/
────────────────────────────────────────
? This project is already set up for Ralph. What would you like to do?
❯ Continue working on this project
Start fresh (will overwrite existing Ralph files)
Choose a different directory
When you choose "Continue working", you can:
- Run the build loop - Execute tasks from the implementation plan
- Regenerate the implementation plan - Re-analyze specs and update tasks
- Add a new spec - Add additional requirements to the project
Language Projects
If the directory contains a language project file (package.json, pyproject.toml, Cargo.toml, go.mod) but no Ralph Playbook, the wizard offers:
- Add features to this existing project - Set up Ralph in the existing project
- Create new project in a subfolder - Keep the existing project separate
- Choose a different directory - Pick a different location
Compatibility
This detection makes ralph-starter compatible with other Ralph Wiggum methodology tools:
- ralph-cli
- ralph-tui
- oh-my-claudecode
- claude-craft
- And more...
Non-Developer Friendly
The wizard uses plain language instead of technical jargon:
| Technical Term | Wizard Language |
|---|---|
| "Configure database" | "How should it store data?" |
| "Select framework" | "What type of app?" |
| "Initialize repository" | "Let me set up the project" |
| "Run build pipeline" | "Start building" |
Next Steps
- Idea Mode - For when you don't know what to build
- Input Sources - Fetch specs from external services