12 KiB
Build Module - Interactive Module Builder Instructions
The workflow execution engine is governed by: {project_root}/bmad/core/tasks/workflow.md You MUST have already loaded and processed: {project_root}/bmad/bmb/workflows/create-module/workflow.yaml Study existing modules in: {project_root}/bmad/ for patterns
Do you want to brainstorm module ideas first? [y/n]If yes: Invoke brainstorming workflow: {brainstorming-workflow} Pass context data: {brainstorming_context} Wait for brainstorming session completion Use brainstorming output to inform module concept, agent lineup, and workflow portfolio
If no, proceed to check for module brief.
brainstorming_results
Do you have a module brief or should we create one? [have/create/skip]If create: Invoke module-brief workflow: {project-root}/bmad/bmb/workflows/module-brief/workflow.yaml Wait for module brief completion Load the module brief to use as blueprint
If have: Provide path to module brief document Load the module brief and use it to pre-populate all planning sections
If skip, proceed directly to module definition.
module_brief
Load and study the complete module structure guide Load module structure guide: {module_structure_guide} Understand module types (Simple/Standard/Complex) Review directory structures and component guidelines Study the installation infrastructure patternsAsk the user about their module vision:
Module Identity:
- Module code (kebab-case, e.g., "rpg-toolkit", "data-viz", "team-collab")
- Module name (friendly name, e.g., "RPG Toolkit", "Data Visualization Suite")
- Module purpose (1-2 sentences describing what it does)
- Target audience (who will use this module?)
Module Theme Examples:
- Domain-Specific: Legal, Medical, Finance, Education
- Creative: RPG/Gaming, Story Writing, Music Production
- Technical: DevOps, Testing, Architecture, Security
- Business: Project Management, Marketing, Sales
- Personal: Journaling, Learning, Productivity
Check {src_impact} variable to determine output location:
- If {src_impact} = true: Module will be created at {src_output_folder}
- If {src_impact} = false: Module will be created at {default_output_folder}
Store module identity for scaffolding.
module_identity
Gather the module's component architecture:Agents Planning: Ask: How many agents will this module have? (typically 1-5)
For each agent, gather:
- Agent name and purpose
- Will it be Simple, Expert, or Module type?
- Key commands it should have
- Create now or placeholder for later?
Example for RPG module:
- DM Agent - Dungeon Master assistant (Module type)
- NPC Agent - Character simulation (Expert type)
- Story Writer Agent - Adventure creation (Module type)
Workflows Planning: Ask: How many workflows? (typically 2-10)
For each workflow, gather:
- Workflow name and purpose
- Document, Action, or Interactive type?
- Complexity (simple/complex)
- Create now or placeholder?
Example workflows:
- adventure-plan - Create full adventure (Document)
- random-encounter - Quick encounter generator (Action)
- npc-generator - Create NPCs on the fly (Interactive)
- treasure-generator - Loot tables (Action)
Tasks Planning (optional): Ask: Any special tasks that don't warrant full workflows?
For each task:
- Task name and purpose
- Standalone or supporting?
module_components
Determine base module path based on {src_impact}: - If {src_impact} = true: Use {src_output_folder} - If {src_impact} = false: Use {default_output_folder}Create base module directories at the determined path:
{{module_code}}/
├── agents/ # Agent definitions
├── workflows/ # Workflow folders
├── tasks/ # Task files (if any)
├── templates/ # Shared templates
├── data/ # Module data files
├── config.yaml # Module configuration
└── README.md # Module documentation
Create installer directory:
{{module_code}}/
├── _module-installer/
│ ├── install-module-config.yaml
│ ├── installer.js (optional)
│ └── assets/ # Files to copy during install
├── config.yaml # Runtime configuration
├── agents/ # Agent configs (optional)
├── workflows/ # Workflow instances
└── data/ # User data directory
directory_structure
Create the main module config.yaml:# {{module_name}} Module Configuration
module_name: {{module_name}}
module_code: {{module_code}}
author: {{user_name}}
description: {{module_purpose}}
# Module paths
module_root: "{project-root}/bmad/{{module_code}}"
installer_path: "{project-root}/bmad/{{module_code}}"
# Component counts
agents:
count: {{agent_count}}
list: {{agent_list}}
workflows:
count: {{workflow_count}}
list: {{workflow_list}}
tasks:
count: {{task_count}}
list: {{task_list}}
# Module-specific settings
{{custom_settings}}
# Output configuration
output_folder: "{project-root}/docs/{{module_code}}"
data_folder: "{{determined_module_path}}/data"
Determine save location based on {src_impact}:
- If {src_impact} = true: Save to {src_output_folder}/config.yaml
- If {src_impact} = false: Save to {default_output_folder}/config.yaml
module_config
Ask: **Create your first agent now? [Yes/no]**If yes: {agent_builder}
Guide them to create the primary agent for the module. Ensure it's saved to the correct location based on {src_impact}:
- If {src_impact} = true: {src_output_folder}/agents/
- If {src_impact} = false: {default_output_folder}/agents/
If no, create placeholder:
# {{primary_agent_name}} Agent
<!-- TODO: Create using create-agent workflow -->
<!-- Purpose: {{agent_purpose}} -->
<!-- Type: {{agent_type}} -->
first_agent
Ask: **Create your first workflow now? [Yes/no]**If yes: {workflow_builder}
Guide them to create the primary workflow. Ensure it's saved to the correct location based on {src_impact}:
- If {src_impact} = true: {src_output_folder}/workflows/
- If {src_impact} = false: {default_output_folder}/workflows/
If no, create placeholder structure:
workflows/{{workflow_name}}/
├── workflow.yaml # TODO: Configure
├── instructions.md # TODO: Add steps
└── template.md # TODO: If document workflow
first_workflow
Load installer templates from: {installer_templates}Create install-module-config.yaml:
# {{module_name}} Installation Configuration
module_name: { { module_name } }
module_code: { { module_code } }
installation_date: { { date } }
# Installation steps
install_steps:
- name: 'Create directories'
action: 'mkdir'
paths:
- '{project-root}/bmad/{{module_code}}'
- '{project-root}/bmad/{{module_code}}/data'
- '{project-root}/bmad/{{module_code}}/agents'
- name: 'Copy configuration'
action: 'copy'
source: '{installer_path}/config.yaml'
dest: '{project-root}/bmad/{{module_code}}/config.yaml'
- name: 'Register module'
action: 'register'
manifest: '{project-root}/bmad/_cfg/manifest.yaml'
# External assets (if any)
external_assets:
- description: '{{asset_description}}'
source: 'assets/{{filename}}'
dest: '{{destination_path}}'
# Post-install message
post_install_message: |
{{module_name}} has been installed successfully!
To get started:
1. Load any {{module_code}} agent
2. Use *help to see available commands
3. Check README.md for full documentation
Create installer.js stub (optional):
// {{module_name}} Module Installer
// This is a placeholder for complex installation logic
function installModule(config) {
console.log('Installing {{module_name}} module...');
// TODO: Add any complex installation logic here
// Examples:
// - Database setup
// - API key configuration
// - External service registration
// - File system preparation
console.log('{{module_name}} module installed successfully!');
return true;
}
module.exports = { installModule };
installer_config
Generate comprehensive README.md:# {{module_name}}
{{module_purpose}}
## Overview
This module provides:
{{component_summary}}
## Installation
```bash
bmad install {{module_code}}
```
Components
Agents ({{agent_count}})
{{agent_documentation}}
Workflows ({{workflow_count}})
{{workflow_documentation}}
Tasks ({{task_count}})
{{task_documentation}}
Quick Start
-
Load the main agent:
agent {{primary_agent}} -
View available commands:
*help -
Run the main workflow:
workflow {{primary_workflow}}
Module Structure
{{directory_tree}}
Configuration
The module can be configured in bmad/{{module_code}}/config.yaml
Key settings: {{configuration_options}}
Examples
Example 1: {{example_use_case}}
{{example_walkthrough}}
Development Roadmap
- {{roadmap_item_1}}
- {{roadmap_item_2}}
- {{roadmap_item_3}}
Contributing
To extend this module:
- Add new agents using
create-agentworkflow - Add new workflows using
create-workflowworkflow - Submit improvements via pull request
Author
Created by {{user_name}} on {{date}}
<template-output>module_readme</template-output>
</step>
<step n="9" goal="Generate component roadmap">
Create a development roadmap for remaining components:
**TODO.md file:**
```markdown
# {{module_name}} Development Roadmap
## Phase 1: Core Components
{{phase1_tasks}}
## Phase 2: Enhanced Features
{{phase2_tasks}}
## Phase 3: Polish and Integration
{{phase3_tasks}}
## Quick Commands
Create new agent:
workflow create-agent
Create new workflow:
workflow create-workflow
## Notes
{{development_notes}}
Ask if user wants to:
- Continue building more components now
- Save roadmap for later development
- Test what's been built so far
development_roadmap
Run validation checks:-
Structure validation:
- All required directories created
- Config files properly formatted
- Installer configuration valid
-
Component validation:
- At least one agent or workflow exists (or planned)
- All references use correct paths
- Module code consistent throughout
-
Documentation validation:
- README.md complete
- Installation instructions clear
- Examples provided
Show summary:
✅ Module: {{module_name}} ({{module_code}})
📁 Location:
- If {src_impact} = true: {src_output_folder}
- If {src_impact} = false: {default_output_folder}
👥 Agents: {{agent_count}} ({{agents_created}} created, {{agents_planned}} planned)
📋 Workflows: {{workflow_count}} ({{workflows_created}} created, {{workflows_planned}} planned)
📝 Tasks: {{task_count}}
📦 Installer: Ready at same location
Next steps:
- Complete remaining components using roadmap
- Test module with:
bmad install {{module_code}} - Share module or integrate with existing system
Ask: Would you like to:
- Create another component now?
- Test the module installation?
- Exit and continue later?
module_summary