Breakthrough Method of Agile AI-driven Development
npm install bmad-fh



Breakthrough Method of Agile AI Driven Development — An AI-driven agile development framework with 21 specialized agents, 50+ guided workflows, and scale-adaptive intelligence that adjusts from bug fixes to enterprise systems.
100% free and open source. No paywalls. No gated content. No gated Discord. We believe in empowering everyone, not just those who can pay.
Traditional AI tools do the thinking for you, producing average results. BMad agents and facilitated workflow act as expert collaborators who guide you through a structured process to bring out your best thinking in partnership with the AI.
- AI Intelligent Help: Brand new for beta - AI assisted help will guide you from the beginning to the end - just ask for /bmad-help after you have installed BMad to your project
- Scale-Domain-Adaptive: Automatically adjusts planning depth and needs based on project complexity, domain and type - a SaaS Mobile Dating App has different planning needs from a diagnostic medical system, BMad adapts and helps you along the way
- Structured Workflows: Grounded in agile best practices across analysis, planning, architecture, and implementation
- Specialized Agents: 12+ domain experts (PM, Architect, Developer, UX, Scrum Master, and more)
- Party Mode: Bring multiple agent personas into one session to plan, troubleshoot, or discuss your project collaboratively, multiple perspectives with maximum fun
- Complete Lifecycle: From brainstorming to deployment, BMad is there with you every step of the way
Prerequisites: Node.js v20+
``bash`
npx bmad-fh install
Follow the installer prompts, then open your AI IDE (Claude Code, Cursor, Windsurf, etc.) in the project folder.
> Not sure what to do? Run /bmad-help — it tells you exactly what's next and what's optional. You can also ask it questions like:
- /bmad-help How should I build a web app for my TShirt Business that can scale to millions?/bmad-help I just finished the architecture, I am not sure what to do next
-
And the amazing thing is BMad Help evolves depending on what modules you install also!
- /bmad-help Im interested in really exploring creative ways to demo BMad at work, what do you recommend to help plan a great slide deck and compelling narrative?, and if you have the Creative Intelligence Suite installed, it will offer you different or complimentary advice than if you just have BMad Method Module installed!
The workflows below show the fastest path to working code. You can also load agents directly for a more structured process, extensive planning, or to learn about agile development practices — the agents guide you with menus, explanations, and elicitation at each step.
Bug fixes, small features, clear scope — 3 commands - 1 Optional Agent:
1. /quick-spec — analyzes your codebase and produces a tech-spec with stories/dev-story
2. — implements each story/code-review
3. — validates quality
Products, platforms, complex features — structured planning then build:
1. /product-brief — define problem, users, and MVP scope/create-prd
2. — full requirements with personas, metrics, and risks/create-architecture
3. — technical decisions and system design/create-epics-and-stories
4. — break work into prioritized stories/sprint-planning
5. — initialize sprint tracking/create-story
6. Repeat per story: → /dev-story → /code-review
Every step tells you what's next. Optional phases (brainstorming, research, UX design) are available when you need them — ask /bmad-help anytime. For a detailed walkthrough, see the Getting Started Tutorial.
BMad Method extends with official modules for specialized domains. Modules are available during installation and can be added to your project at any time. After the V6 beta period these will also be available as Plugins and Granular Skills.
| Module | GitHub | NPM | Purpose |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------- |
| BMad Method (BMM) | fairyhunter13/BMAD-METHOD | bmad-fh | Core framework with 34+ workflows across 4 development phases |
| BMad Builder (BMB) | bmad-code-org/bmad-builder | bmad-builder | Create custom BMad agents, workflows, and domain-specific modules |
| Test Architect (TEA) 🆕 | bmad-code-org/tea | tea | Risk-based test strategy, automation, and release gates (8 workflows) |
| Game Dev Studio (BMGD) | bmad-code-org/bmad-module-game-dev-studio | bmad-game-dev-studio | Game development workflows for Unity, Unreal, and Godot |
| Creative Intelligence Suite (CIS) | bmad-code-org/bmad-module-creative-intelligence-suite | bmad-creative-intelligence-suite | Innovation, brainstorming, design thinking, and problem-solving |
- More modules are coming in the next 2 weeks from BMad Official, and a community marketplace for the installer also will be coming with the final V6 release!
BMad provides two testing options to fit your needs:
Quick test automation for rapid coverage
- ✅ Always available in BMM module (no separate install)
- ✅ Simple: One workflow (QA - Automate)
- ✅ Beginner-friendly: Standard test framework patterns
- ✅ Fast: Generate tests and ship
Use Quinn for: Small projects, quick coverage, standard patterns
Enterprise-grade test strategy and quality engineering
- 🆕 Standalone module (install separately)
- 🏗️ Comprehensive: 8 workflows covering full test lifecycle
- 🎯 Advanced: Risk-based planning, quality gates, NFR assessment
- 📚 Knowledge-driven: 34 testing patterns and best practices
- 📖 Test Architect Documentation
Use TEA for: Enterprise projects, test strategy, compliance, release gates
---
BMad Documentation — Tutorials, how-to guides, concepts, and reference
Test Architect Documentation — TEA standalone module documentation
- Getting Started Tutorial
- Upgrading from Previous Versions
- Test Architect Migration Guide — Upgrading from BMM-embedded TEA
- v4 Documentation
- If you need to install V4, you can do this with npx bmad-fh@4.44.3 install - similar for any past version.
BMad supports running multiple workflows in parallel across different terminal sessions with isolated artifacts. Perfect for:
- Multi-team projects — Each team works in their own scope
- Parallel feature development — Develop auth, payments, and catalog simultaneously
- Microservices — One scope per service with shared contracts
- Experimentation — Create isolated scopes for spikes and prototypes
`bashInitialize scope system
npx bmad-fh scope init
> Important: Workflows only use scoped directories when a scope is active.
> For parallel work, prefer inline
--scope, conversation /scope , or BMAD_SCOPE env var.
> .bmad-scope is a shared file (NOT parallel-safe) and can be disabled with npx bmad-fh scope file-disable.$3
| Command | Description |
| ---------------------------------- | ------------------------------------------- |
|
npx bmad-fh scope init | Initialize the scope system in your project |
| npx bmad-fh scope list | List all scopes (alias: ls) |
| npx bmad-fh scope create | Create a new scope (alias: new) |
| npx bmad-fh scope info | Show scope details (alias: show) |
| npx bmad-fh scope set [id] | Set active scope for session (alias: use) |
| npx bmad-fh scope unset | Clear active scope (alias: clear) |
| npx bmad-fh scope file-disable | Disable .bmad-scope without deleting it |
| npx bmad-fh scope file-enable | Re-enable .bmad-scope for resolution |
| npx bmad-fh scope remove | Remove a scope (aliases: rm, delete) |
| npx bmad-fh scope archive | Archive a completed scope |
| npx bmad-fh scope activate | Reactivate an archived scope |
| npx bmad-fh scope sync-up | Promote artifacts to shared layer |
| npx bmad-fh scope sync-down | Pull shared updates into scope |
| npx bmad-fh scope help [cmd] | Show help (add command for detailed help) |$3
`bash
npx bmad-fh scope create auth \
--name "Authentication Service" \
--description "User auth, SSO, and session management" \
--deps users,notifications \
--context # Create scope-specific project-context.md
`$3
After initialization and scope creation:
`
project-root/
├── _bmad/
│ ├── _config/
│ │ └── scopes.yaml # Scope registry and settings
│ └── _events/
│ ├── event-log.yaml # Event history
│ └── subscriptions.yaml # Cross-scope subscriptions
│
├── _bmad-output/
│ ├── _shared/ # Shared knowledge layer
│ │ ├── project-context.md # Global project context
│ │ ├── contracts/ # Integration contracts
│ │ └── principles/ # Architecture principles
│ │
│ ├── auth/ # Auth scope artifacts
│ │ ├── planning-artifacts/
│ │ ├── implementation-artifacts/
│ │ └── tests/
│ │
│ └── payments/ # Payments scope artifacts
│ └── ...
│
└── .bmad-scope # Shared active scope marker (gitignored; can be disabled with enabled: false)
`$3
Scopes follow a "read-any, write-own" isolation model:
| Operation | Own Scope | Other Scopes | \_shared/ |
| --------- | --------- | ------------ | ----------- |
| Read | Allowed | Allowed | Allowed |
| Write | Allowed | Blocked | via sync-up |
$3
Workflows automatically detect scope context using this priority order:
| Priority | Source | Parallel-Safe | Example |
| -------- | ------------------------- | ------------- | ---------------------------------- |
| 1 | Inline
--scope flag | Yes | /workflow-prd --scope auth |
| 2 | Conversation memory | Yes | Earlier /scope auth in same chat |
| 3 | BMAD_SCOPE env var | Yes | export BMAD_SCOPE=auth |
| 4 | .bmad-scope file | No | Set via scope set auth |
| 5 | Prompt user (if required) | Yes | Interactive selection |For parallel development, always use inline scope or set scope at conversation start:
`bash
Parallel-safe: inline scope (recommended)
/workflow-prd --scope authParallel-safe: set at conversation start
/scope auth
/workflow-prd # Uses auth from conversation memoryNOT parallel-safe: shared file (single terminal only)
npx bmad-fh scope set authDisable shared file without deleting it
npx bmad-fh scope file-disable
`Scope-aware path variables in workflows:
-
{scope} → Scope ID (e.g., "auth")
- {scope_path} → _bmad-output/auth
- {scope_planning} → _bmad-output/auth/planning-artifacts
- {scope_implementation} → _bmad-output/auth/implementation-artifacts
- {scope_tests} → _bmad-output/auth/tests$3
`bash
Show comprehensive help for all scope commands
npx bmad-fh scope helpGet detailed help for a specific command
npx bmad-fh scope help create
npx bmad-fh scope help sync-up
``See Enhanced Workflow Scoping Guide for comprehensive technical documentation on parallel-safe scope resolution, architecture, and troubleshooting.
- Discord — Get help, share ideas, collaborate
- Subscribe on YouTube — Tutorials, master class, and podcast (launching Feb 2025)
- GitHub Issues — Bug reports and feature requests
- Discussions — Community conversations
BMad is free for everyone — and always will be. If you'd like to support development:
- ⭐ Please click the star project icon near the top right of this page
- ☕ Buy Me a Coffee — Fuel the development
- 🏢 Corporate sponsorship — DM on Discord
- 🎤 Speaking & Media — Available for conferences, podcasts, interviews (BM on Discord)
We welcome contributions! See CONTRIBUTING.md for guidelines.
MIT License — see LICENSE for details.
---
BMad and BMAD-METHOD are trademarks of BMad Code, LLC. See TRADEMARK.md for details.

See CONTRIBUTORS.md for contributor information.