Skip to content

bmad-code-org/bmad-plugins-marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

BMad Plugins Marketplace

Official plugin marketplace for BMad Method - an AI-driven agile development framework.

Quick Start

# From any BMad project directory
claude plugin marketplace add bmad-code-org/bmad-plugins-marketplace
claude plugin install --scope project <plugin-name>@bmad-plugins

Understanding Installation Scope

When installing plugins, you can choose between project scope or user scope:

Project Scope (Recommended for Teams)

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

User Scope (Default)

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

Available Plugins

Plugin Description Install Command
bmad-utility-skills Issue triage, changelog drafting, and release automation claude plugin install --scope project bmad-utility-skills@bmad-plugins

bmad-utility-skills

Utility skills for BMad Method contributors.

Skills included:

  • gh-triage - AI-powered GitHub issue triage with deep analysis
  • draft-changelog - Generate changelog drafts for BMad projects
  • release-bmad-module - Automate BMad module releases

Install:

claude plugin install --scope project bmad-utility-skills@bmad-plugins

Usage (after restarting Claude Code):

bmad-utility-skills:gh-triage
bmad-utility-skills:draft-changelog bmad-builder
bmad-utility-skills:release-bmad-module cis

Auto-Enable Plugins for Your Team

To 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

Commands Reference

# 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-plugins

For Plugin Developers

To add a new plugin to this marketplace:

  1. 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)
    
  2. 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"
    }
  3. Update this README to include your plugin in the Available Plugins table

  4. Submit a PR to this marketplace

License

MIT

Author

bmad-code-org

Related Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published