Getting Started
Build software faster using AI-powered workflows with specialized agents that guide you through planning, architecture, and implementation.
What You’ll Learn
Section titled “What You’ll Learn”- Install and initialize the Wizz Method for a new project
- Use Wizz-Help — your intelligent guide that knows what to do next
- Choose the right planning track for your project size
- Progress through phases from requirements to working code
- Use agents and workflows effectively
Meet Wizz-Help: Your Intelligent Guide
Section titled “Meet Wizz-Help: Your Intelligent Guide”Wizz-Help is the fastest way to get started with the Wizz Method. You don’t need to memorize workflows or phases. Just ask, and Wizz-Help will:
- Inspect your project to see what’s already been done
- Show your options based on which modules you have installed
- Recommend what’s next — including the first required task
- Answer questions like “I have a SaaS idea, where do I start?”
How to Use Wizz-Help
Section titled “How to Use Wizz-Help”Run it in your AI IDE by invoking the skill:
wizz-helpOr combine it with a question for context-aware guidance:
wizz-help I have an idea for a SaaS product, I already know all the features I want. where do I get started?Wizz-Help will respond with:
- What’s recommended for your situation
- What the first required task is
- What the rest of the process looks like
It Powers Workflows Too
Section titled “It Powers Workflows Too”Wizz-Help doesn’t just answer questions. It automatically runs at the end of every workflow to tell you exactly what to do next. No guessing, no searching docs. Just clear guidance on the next required workflow.
Understanding the Wizz Method
Section titled “Understanding the Wizz Method”The Wizz Method helps you build software through guided workflows with specialized AI agents. The process follows four phases:
| Phase | Name | What Happens |
|---|---|---|
| 1 | Analysis | Brainstorming, research, product brief or PRFAQ (optional) |
| 2 | Planning | Create requirements (PRD or spec) |
| 3 | Solutioning | Design architecture (Wizz Method/Enterprise only) |
| 4 | Implementation | Build epic by epic, story by story |
Open the Workflow Map to explore phases, workflows, and context management.
Based on your project’s complexity, the Wizz Method offers three planning tracks:
| Track | Best For | Documents Created |
|---|---|---|
| Quick Flow | Bug fixes, simple features, clear scope (1-15 stories) | Tech-spec only |
| Wizz Method | Products, platforms, complex features (10-50+ stories) | PRD + Architecture + UX |
| Enterprise | Compliance, multi-tenant systems (30+ stories) | PRD + Architecture + Security + DevOps |
Installation
Section titled “Installation”Open a terminal in your project directory and run:
npx bmad-method installIf you want the newest prerelease build instead of the default release channel, use npx bmad-method@next install.
When prompted to select modules, choose Wizz Method.
The installer creates two folders:
_wizz/— agents, workflows, tasks, and configuration_wizz-output/— empty for now, but this is where your artifacts will be saved
Step 1: Create Your Plan
Section titled “Step 1: Create Your Plan”Work through phases 1-3. Use fresh chats for each workflow.
Phase 1: Analysis (Optional)
Section titled “Phase 1: Analysis (Optional)”All workflows in this phase are optional. Not sure which to use?
- brainstorming (
wizz-brainstorming) — Guided ideation - research (
wizz-market-research/wizz-domain-research/wizz-technical-research) — Market, domain, and technical research - product-brief (
wizz-product-brief) — Recommended foundation document when your concept is clear - prfaq (
wizz-prfaq) — Working Backwards challenge to stress-test and forge your product concept
Phase 2: Planning (Required)
Section titled “Phase 2: Planning (Required)”For Wizz Method and Enterprise tracks:
- Run
wizz-prdin a new chat — state your intent (Create / Update / Validate) or let the skill ask - Output:
prd.md,addendum.md,decision-log.md
For Quick Flow track:
- Run
wizz-quick-dev— it handles planning and implementation in a single workflow, skip to implementation
Phase 3: Solutioning (Wizz Method/Enterprise)
Section titled “Phase 3: Solutioning (Wizz Method/Enterprise)”Create Architecture
- Invoke the Architect agent (
wizz-agent-architect) in a new chat - Run
wizz-create-architecture(wizz-create-architecture) - Output: Architecture document with technical decisions
Create Epics and Stories
- Invoke the PM agent (
wizz-agent-pm) in a new chat - Run
wizz-create-epics-and-stories(wizz-create-epics-and-stories) - The workflow uses both PRD and Architecture to create technically-informed stories
Implementation Readiness Check (Highly Recommended)
- Invoke the Architect agent (
wizz-agent-architect) in a new chat - Run
wizz-check-implementation-readiness(wizz-check-implementation-readiness) - Validates cohesion across all planning documents
Step 2: Build Your Project
Section titled “Step 2: Build Your Project”Once planning is complete, move to implementation. Each workflow should run in a fresh chat.
Initialize Sprint Planning
Section titled “Initialize Sprint Planning”Invoke the Developer agent (wizz-agent-dev) and run wizz-sprint-planning (wizz-sprint-planning). This creates sprint-status.yaml to track all epics and stories.
The Build Cycle
Section titled “The Build Cycle”For each story, repeat this cycle with fresh chats:
| Step | Agent | Workflow | Command | Purpose |
|---|---|---|---|---|
| 1 | DEV | wizz-create-story | wizz-create-story | Create story file from epic |
| 2 | DEV | wizz-dev-story | wizz-dev-story | Implement the story |
| 3 | DEV | wizz-code-review | wizz-code-review | Quality validation (recommended) |
After completing all stories in an epic, invoke the Developer agent (wizz-agent-dev) and run wizz-retrospective (wizz-retrospective).
What You’ve Accomplished
Section titled “What You’ve Accomplished”You’ve learned the foundation of building with the Wizz Method:
- Installed the Wizz Method and configured it for your IDE
- Initialized a project with your chosen planning track
- Created planning documents (PRD, Architecture, Epics & Stories)
- Understood the build cycle for implementation
Your project now has:
your-project/├── _wizz/ # Wizz Method configuration├── _wizz-output/│ ├── planning-artifacts/│ │ ├── PRD.md # Your requirements document│ │ ├── architecture.md # Technical decisions│ │ └── epics/ # Epic and story files│ ├── implementation-artifacts/│ │ └── sprint-status.yaml # Sprint tracking│ └── project-context.md # Implementation rules (optional)└── ...Quick Reference
Section titled “Quick Reference”| Workflow | Command | Agent | Purpose |
|---|---|---|---|
wizz-help ⭐ | wizz-help | Any | Your intelligent guide — ask anything! |
wizz-prd | wizz-prd | Any | Create, update, or validate a PRD |
wizz-create-architecture | wizz-create-architecture | Architect | Create architecture document |
wizz-generate-project-context | wizz-generate-project-context | Analyst | Create project context file |
wizz-create-epics-and-stories | wizz-create-epics-and-stories | PM | Break down PRD into epics |
wizz-check-implementation-readiness | wizz-check-implementation-readiness | Architect | Validate planning cohesion |
wizz-sprint-planning | wizz-sprint-planning | DEV | Initialize sprint tracking |
wizz-create-story | wizz-create-story | DEV | Create a story file |
wizz-dev-story | wizz-dev-story | DEV | Implement a story |
wizz-code-review | wizz-code-review | DEV | Review implemented code |
Common Questions
Section titled “Common Questions”Do I always need architecture? Only for Wizz Method and Enterprise tracks. Quick Flow skips from spec to implementation.
Can I change my plan later?
Yes. The wizz-correct-course workflow handles scope changes mid-implementation.
What if I want to brainstorm first?
Invoke the Analyst agent (wizz-agent-analyst) and run wizz-brainstorming (wizz-brainstorming) before starting your PRD.
Do I need to follow a strict order? Not strictly. Once you learn the flow, you can run workflows directly using the Quick Reference above.
Getting Help
Section titled “Getting Help”- During workflows — Agents guide you with questions and explanations
- Community — Discord (#bmad-method-help, #report-bugs-and-issues)
Key Takeaways
Section titled “Key Takeaways”Ready to start? Install the Wizz Method, invoke wizz-help, and let your intelligent guide lead the way.