BMAD-METHOD/tools/installer
Brian Madison 39e6db82b1 fix: rollback version from 5.0.0 to 4.3.0 and improve lint-staged config
- Reset both package.json files to version 4.3.0
- The v5.0.0 bump was accidental due to BREAKING CHANGE in commit message
- Enhanced lint-staged to check all YAML files in project including .bmad-core/
- This ensures husky catches YAML formatting issues before push

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-15 14:30:20 -05:00
..
bin feat: enhance installer with multi-IDE support and sync version bumping 2025-06-15 14:07:25 -05:00
config formatter updates 2025-06-14 18:11:16 -05:00
lib feat: enhance installer with multi-IDE support and sync version bumping 2025-06-15 14:07:25 -05:00
templates formatter updates 2025-06-14 18:11:16 -05:00
README.md style: apply prettier and yaml formatting 2025-06-15 14:20:19 -05:00
package-lock.json fix: BMAD install creates `.bmad-core/.bmad-core/` directory structure + updates (#223) 2025-06-15 12:50:40 -05:00
package.json fix: rollback version from 5.0.0 to 4.3.0 and improve lint-staged config 2025-06-15 14:30:20 -05:00

README.md

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