# [4.8.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.7.0...v4.8.0) (2025-06-19) ### Bug Fixes * installer has fast v4 update option now to keep the bmad method up to date with changes easily without breaking any customizations from the user. The SM and DEV are much more configurable to find epics stories and architectureal information when the prd and architecture are deviant from v4 templates and/or have not been sharded. so a config will give the user the option to configure the SM to use the full large documents or the sharded versions! ([aea7f3c](aea7f3cc86)) * prevent double installation when updating v4 ([af0e767](af0e767ecf)) * resolve undefined config properties in performUpdate ([0185e01](0185e012bb)) * update file-manager to properly handle YAML manifest files ([724cdd0](724cdd07a1)) ### Features * add early v4 detection for improved update flow ([29e7bbf](29e7bbf4c5)) * add file resolution context for IDE agents ([74d9bb4](74d9bb4b2b)) * update web builder to remove IDE-specific properties from agent bundles ([2f2a1e7](2f2a1e72d6))
BMAD Method Installer
This directory contains the BMAD Method installer implementation.
Structure
installer/
├── bin/ # CLI entry points
│ └── bmad.js # Main CLI executable
├── lib/ # Core implementation
│ ├── installer.js # Main installation logic
│ ├── updater.js # Update management
│ ├── config-loader.js # YAML config parsing
│ ├── file-manager.js # File operations
│ ├── ide-setup.js # IDE-specific setup
│ └── prompts.js # Interactive CLI prompts
├── config/ # Configuration files
│ └── install.config.yml # Installation profiles
├── templates/ # IDE template files
│ ├── cursor-rules.md # Cursor template
│ ├── claude-commands.md # Claude Code template
│ └── windsurf-rules.md # Windsurf template
└── package.json # NPM package configuration
Installation Profiles
- minimal: IDE agents only (best for beginners)
- core: IDE + Web agents
- teams: Full team workflows
- developer: Everything including creation tools
Usage
# Interactive installation
npx bmad-method install
# Direct profile installation
npx bmad-method install --profile=minimal
# Update existing installation
npx bmad-method update
```text
## Development
```bash
# Install dependencies
npm install
# Run tests
npm test
# Lint code
npm run lint