docs/tutorials/getting-started.md
Build software faster using AI-powered workflows with specialized agents that guide you through planning, architecture, and implementation.
:::note[Prerequisites]
:::tip[The Easiest Path]
Install → npx bmad-method install
Ask → bmad-help what should I do first?
Build → Let BMad-Help guide you workflow by workflow
:::
BMad-Help is the fastest way to get started with BMad. You don't need to memorize workflows or phases — just ask, and BMad-Help will:
Run it in your AI IDE by invoking the skill:
bmad-help
Or combine it with a question for context-aware guidance:
bmad-help I have an idea for a SaaS product, I already know all the features I want. where do I get started?
BMad-Help will respond with:
BMad-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.
:::tip[Start Here]
After installing BMad, invoke the bmad-help skill immediately. It will detect what modules you have installed and guide you to the right starting point for your project.
:::
BMad 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 (BMad 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, BMad offers three planning tracks:
| Track | Best For | Documents Created |
|---|---|---|
| Quick Flow | Bug fixes, simple features, clear scope (1-15 stories) | Tech-spec only |
| BMad Method | Products, platforms, complex features (10-50+ stories) | PRD + Architecture + UX |
| Enterprise | Compliance, multi-tenant systems (30+ stories) | PRD + Architecture + Security + DevOps |
:::note Story counts are guidance, not definitions. Choose your track based on planning needs, not story math. :::
Open a terminal in your project directory and run:
npx bmad-method install
If you want the newest prerelease build instead of the default release channel, use npx bmad-method@next install.
When prompted to select modules, choose BMad Method.
The installer creates two folders:
_bmad/ — agents, workflows, tasks, and configuration_bmad-output/ — empty for now, but this is where your artifacts will be saved:::tip[Your Next Step] Open your AI IDE in the project folder and run:
bmad-help
BMad-Help will detect what you've completed and recommend exactly what to do next. You can also ask it questions like "What are my options?" or "I have a SaaS idea, where should I start?" :::
:::note[How to Load Agents and Run Workflows]
Each workflow has a skill you invoke by name in your IDE (e.g., bmad-create-prd). Your AI tool will recognize the bmad-* name and run it — you don't need to load agents separately. You can also invoke an agent skill directly for general conversation (e.g., bmad-agent-pm for the PM agent).
:::
:::caution[Fresh Chats] Always start a fresh chat for each workflow. This prevents context limitations from causing issues. :::
Work through phases 1-3. Use fresh chats for each workflow.
:::tip[Project Context (Optional)]
Before starting, consider creating project-context.md to document your technical preferences and implementation rules. This ensures all AI agents follow your conventions throughout the project.
Create it manually at _bmad-output/project-context.md or generate it after architecture using bmad-generate-project-context. Learn more.
:::
All workflows in this phase are optional. Not sure which to use?
bmad-brainstorming) — Guided ideationbmad-market-research / bmad-domain-research / bmad-technical-research) — Market, domain, and technical researchbmad-product-brief) — Recommended foundation document when your concept is clearbmad-prfaq) — Working Backwards challenge to stress-test and forge your product conceptFor BMad Method and Enterprise tracks:
bmad-agent-pm) in a new chatbmad-create-prd workflow (bmad-create-prd)PRD.mdFor Quick Flow track:
bmad-quick-dev — it handles planning and implementation in a single workflow, skip to implementation:::note[UX Design (Optional)]
If your project has a user interface, invoke the UX-Designer agent (bmad-agent-ux-designer) and run the UX design workflow (bmad-create-ux-design) after creating your PRD.
:::
Create Architecture
bmad-agent-architect) in a new chatbmad-create-architecture (bmad-create-architecture)Create Epics and Stories
:::tip[V6 Improvement] Epics and stories are now created after architecture. This produces better quality stories because architecture decisions (database, API patterns, tech stack) directly affect how work should be broken down. :::
bmad-agent-pm) in a new chatbmad-create-epics-and-stories (bmad-create-epics-and-stories)Implementation Readiness Check (Highly Recommended)
bmad-agent-architect) in a new chatbmad-check-implementation-readiness (bmad-check-implementation-readiness)Once planning is complete, move to implementation. Each workflow should run in a fresh chat.
Invoke the Developer agent (bmad-agent-dev) and run bmad-sprint-planning (bmad-sprint-planning). This creates sprint-status.yaml to track all epics and stories.
For each story, repeat this cycle with fresh chats:
| Step | Agent | Workflow | Command | Purpose |
|---|---|---|---|---|
| 1 | DEV | bmad-create-story | bmad-create-story | Create story file from epic |
| 2 | DEV | bmad-dev-story | bmad-dev-story | Implement the story |
| 3 | DEV | bmad-code-review | bmad-code-review | Quality validation (recommended) |
After completing all stories in an epic, invoke the Developer agent (bmad-agent-dev) and run bmad-retrospective (bmad-retrospective).
You've learned the foundation of building with BMad:
Your project now has:
your-project/
├── _bmad/ # BMad configuration
├── _bmad-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)
└── ...
| Workflow | Command | Agent | Purpose |
|---|---|---|---|
bmad-help ⭐ | bmad-help | Any | Your intelligent guide — ask anything! |
bmad-create-prd | bmad-create-prd | PM | Create Product Requirements Document |
bmad-create-architecture | bmad-create-architecture | Architect | Create architecture document |
bmad-generate-project-context | bmad-generate-project-context | Analyst | Create project context file |
bmad-create-epics-and-stories | bmad-create-epics-and-stories | PM | Break down PRD into epics |
bmad-check-implementation-readiness | bmad-check-implementation-readiness | Architect | Validate planning cohesion |
bmad-sprint-planning | bmad-sprint-planning | DEV | Initialize sprint tracking |
bmad-create-story | bmad-create-story | DEV | Create a story file |
bmad-dev-story | bmad-dev-story | DEV | Implement a story |
bmad-code-review | bmad-code-review | DEV | Review implemented code |
Do I always need architecture? Only for BMad Method and Enterprise tracks. Quick Flow skips from spec to implementation.
Can I change my plan later?
Yes. The bmad-correct-course workflow handles scope changes mid-implementation.
What if I want to brainstorm first?
Invoke the Analyst agent (bmad-agent-analyst) and run bmad-brainstorming (bmad-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.
:::tip[First Stop: BMad-Help]
Invoke bmad-help anytime — it's the fastest way to get unstuck. Ask it anything:
BMad-Help inspects your project, detects what you've completed, and tells you exactly what to do next. :::
:::tip[Remember These]
bmad-help — Your intelligent guide that knows your project and optionsbmad-quick-dev; Method/Enterprise need PRD and architectureReady to start? Install BMad, invoke bmad-help, and let your intelligent guide lead the way.