Přeskočit na obsah
🤖 Consolidated, AI-optimized BMAD docs: llms-full.txt. Fetch this plain text file for complete context.
🚀 Build your own BMad modules and share them with the community! Get started or submit to the marketplace.

Install Custom and Community Modules

Tento obsah zatím není dostupný ve vašem jazyce.

Use the BMad installer to add modules from the community registry, third-party Git repositories, or local file paths.

  • Installing a community-contributed module from the BMad registry
  • Installing a module from a third-party Git repository (GitHub, GitLab, Bitbucket, self-hosted)
  • Testing a module you are developing locally with BMad Builder
  • Installing modules from a private or self-hosted Git server

Community modules are curated in the BMad plugins marketplace. They are organized by category and are pinned to an approved commit for safety.

Terminal window
npx bmad-method install

After selecting official modules, the installer asks:

Would you like to browse community modules?

Select Yes to enter the catalog browser. You can:

  • Browse by category
  • View featured modules
  • View all available modules
  • Search by keyword

Pick modules from any category. The installer shows descriptions, versions, and trust tiers. Already-installed modules are pre-checked for update.

After selecting community modules, the installer proceeds to custom sources, then tool/IDE configuration and the rest of the install flow.

Custom modules can come from any Git repository or a local directory on your machine. The installer resolves the source, analyzes the module structure, and installs it alongside your other modules.

During installation, after the community module step, the installer asks:

Would you like to install from a custom source (Git URL or local path)?

Select Yes, then provide a source:

Input TypeExample
HTTPS URL (any host)https://github.com/org/repo
HTTPS URL with subdirhttps://github.com/org/repo/tree/main/my-module
SSH URLgit@github.com:org/repo.git
Local path/Users/me/projects/my-module
Local path with tilde~/projects/my-module

The installer clones the repository (for URLs) or reads directly from disk (for local paths), then presents the discovered modules for selection.

Use the --custom-source flag to install custom modules from the command line:

Terminal window
npx bmad-method install \
--directory . \
--custom-source /path/to/my-module \
--tools claude-code \
--yes

When --custom-source is provided without --modules, only core and the custom modules are installed. To include official modules as well, add --modules:

Terminal window
npx bmad-method install \
--directory . \
--modules bmm \
--custom-source https://gitlab.com/myorg/my-module \
--tools claude-code \
--yes

Multiple sources can be comma-separated:

Terminal window
--custom-source /path/one,https://github.com/org/repo,/path/two

The installer uses two modes to find installable modules in a source:

ModeTriggerBehavior
DiscoverySource contains .claude-plugin/marketplace.jsonLists all plugins from the manifest; you pick which to install
DirectNo marketplace.json foundScans the directory for skills (subdirectories with SKILL.md), resolves as a single module

Discovery mode is typical for published modules. Direct mode is convenient when pointing at a skills directory during local development.

If you are building a module with BMad Builder, you can install it directly from your working directory:

Terminal window
npx bmad-method install \
--directory ~/my-project \
--custom-source ~/my-module-repo/skills \
--tools claude-code \
--yes

Local sources are referenced by path, not copied to a cache. When you update your module source and reinstall, the installer picks up the latest changes.

After installation, custom modules appear in _bmad/ alongside official modules:

your-project/
├── _bmad/
│ ├── core/ # Built-in core module
│ ├── bmm/ # Official module (if selected)
│ ├── my-module/ # Your custom module
│ │ ├── my-skill/
│ │ │ └── SKILL.md
│ │ └── module-help.csv
│ └── _config/
│ └── manifest.yaml # Tracks all modules, versions, and sources
└── ...

The manifest records the source of each custom module (repoUrl for Git sources, localPath for local sources) so that quick updates can locate the source again.

Custom modules participate in the normal update flow:

  • Quick update (--action quick-update): Refreshes all modules from their original sources. Git-based modules are re-fetched; local modules are re-read from their source path.
  • Full update: Re-runs module selection so you can add or remove custom modules.

Use BMad Builder to create modules that others can install:

  1. Run bmad-module-builder to scaffold your module structure
  2. Add skills, agents, and workflows with the various bmad builder tools
  3. Publish to a Git repository or share the folder collection
  4. Others install with --custom-source <your-repo-url>

For modules to support discovery mode, include a .claude-plugin/marketplace.json in your repository root (this is a cross-tool convention, not Claude-specific). See the BMad Builder documentation for the marketplace.json format.