Official plugin marketplace for BMad Method - an AI-driven agile development framework.
# From any BMad project directory
claude plugin marketplace add bmad-code-org/bmad-plugins-marketplace
claude plugin install --scope project <plugin-name>@bmad-pluginsWhen installing plugins, you can choose between project scope or user scope:
claude plugin install --scope project <plugin-name>@bmad-plugins- Configuration saved to
.claude/settings.json(in your project) - Can be committed to git
- Available to all contributors who clone the repo
- Use this for BMad modules you work on with a team
claude plugin install <plugin-name>@bmad-plugins- Configuration saved to
~/.claude/settings.json(your home directory) - Available across all your personal projects
- Use this for personal projects
| Plugin | Description | Install Command |
|---|---|---|
| bmad-utility-skills | Issue triage, changelog drafting, and release automation | claude plugin install --scope project bmad-utility-skills@bmad-plugins |
Utility skills for BMad Method contributors.
Skills included:
gh-triage- AI-powered GitHub issue triage with deep analysisdraft-changelog- Generate changelog drafts for BMad projectsrelease-bmad-module- Automate BMad module releases
Install:
claude plugin install --scope project bmad-utility-skills@bmad-pluginsUsage (after restarting Claude Code):
bmad-utility-skills:gh-triage
bmad-utility-skills:draft-changelog bmad-builder
bmad-utility-skills:release-bmad-module cisTo automatically prompt contributors to install plugins when they clone your BMad module, add to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"bmad-plugins": {
"source": {
"source": "github",
"repo": "bmad-code-org/bmad-plugins-marketplace"
}
}
},
"enabledPlugins": {
"bmad-utility-skills@bmad-plugins": true
}
}Then commit to your repository:
git add .claude/settings.json
git commit -m "Configure bmad-plugins marketplace"
git push# Add the marketplace
claude plugin marketplace add bmad-code-org/bmad-plugins-marketplace
# List available plugins from the marketplace
claude plugin marketplace list
# Install a plugin (project scope)
claude plugin install --scope project <plugin-name>@bmad-plugins
# List installed plugins
claude plugin list
# Uninstall a plugin
claude plugin uninstall <plugin-name>@bmad-plugins
# Update the marketplace
claude plugin marketplace update bmad-pluginsTo add a new plugin to this marketplace:
-
Create your plugin in a separate GitHub repo:
your-plugin/ ├── .claude-plugin/ │ └── plugin.json # Plugin manifest ├── skills/ # Agent Skills (optional) │ └── your-skill/ │ └── SKILL.md ├── agents/ # Custom agents (optional) └── commands/ # Commands (optional) -
Add to marketplace.json in this repo:
{ "name": "your-plugin", "source": { "source": "github", "repo": "bmad-code-org/your-plugin" }, "description": "Your plugin description", "version": "1.0.0" } -
Update this README to include your plugin in the Available Plugins table
-
Submit a PR to this marketplace
MIT
bmad-code-org