BMAD Method plugin for the asdf version manager.
BMAD Method (Breakthrough Method for Agile AI Driven Development) is a battle-tested methodology and toolkit for AI-assisted software development with structured agents, roles, and workflows.
This plugin installs the bmad-method npm package and exposes its CLI executables as asdf shims. It does not scaffold BMAD project files — for project initialisation, run bmad after installation.
| Requirement | Notes |
|---|---|
| asdf | Version manager |
| Node.js ≥ 20 | Must be on PATH before installing. Manage with asdf-nodejs. |
| npm | Bundled with Node.js |
| curl | Required for version listing and downloads |
asdf plugin add bmad-method https://github.com/panz3r/asdf-bmad-method.gitasdf list all bmad-methodasdf install bmad-method latestasdf install bmad-method 6.3.0next is a special alias that resolves to the npm next dist-tag at install time. It gives you the latest pre-release build without knowing its concrete version number.
asdf install bmad-method next# Global default
asdf set -u bmad-method latest
# Per-project (writes .tool-versions)
asdf set bmad-method latestbmad --version
bmad-method --version| Command | Description |
|---|---|
bmad |
Main BMAD CLI entry point |
bmad-method |
Alias for the same CLI |
- This plugin installs the
bmad-methodnpm package into the asdf install prefix. It does not create or modify your project's BMAD configuration files. - If you previously installed
bmad-methodglobally vianpm install -g, remove it first to avoid conflicts:npm uninstall -g bmad-method.