2025-09-28 23:17:07 -05:00
# Build Module Workflow
## Overview
The Build Module workflow is an interactive scaffolding system that creates complete BMAD modules with agents, workflows, tasks, and installation infrastructure. It serves as the primary tool for building new modules in the BMAD ecosystem, guiding users through the entire module creation process from concept to deployment-ready structure.
## Key Features
- **Interactive Module Planning** - Collaborative session to define module concept, scope, and architecture
- **Intelligent Scaffolding** - Automatic creation of proper directory structures and configuration files
2025-09-29 20:19:14 -05:00
- **Component Integration** - Seamless integration with create-agent and create-workflow workflows
2025-09-28 23:17:07 -05:00
- **Installation Infrastructure** - Complete installer setup with configuration templates
- **Module Brief Integration** - Can use existing module briefs as blueprints for accelerated development
2025-09-29 20:19:14 -05:00
- **Validation and Documentation** - Built-in validation checks and comprehensive README generation
2025-09-28 23:17:07 -05:00
## Usage
### Basic Invocation
```bash
2025-09-29 20:19:14 -05:00
workflow create-module
2025-09-28 23:17:07 -05:00
```
### With Module Brief Input
```bash
# If you have a module brief from the module-brief workflow
2025-09-29 20:19:14 -05:00
workflow create-module --input module-brief-my-module-2024-09-26.md
2025-09-28 23:17:07 -05:00
```
### Configuration
The workflow loads critical variables from the BMB configuration:
2025-10-04 17:35:37 -05:00
- **custom_module_location**: Where custom modules are created (default: `bmad/` )
2025-09-28 23:17:07 -05:00
- **user_name**: Module author information
- **date**: Automatic timestamp for versioning
## Workflow Structure
### Files Included
```
2025-09-29 20:19:14 -05:00
create-module/
2025-09-28 23:17:07 -05:00
├── workflow.yaml # Configuration and metadata
├── instructions.md # Step-by-step execution guide
├── checklist.md # Validation criteria
├── module-structure.md # Module architecture guide
├── installer-templates/ # Installation templates
│ ├── install-config.yaml
│ └── installer.js
└── README.md # This file
```
## Workflow Process
### Phase 1: Concept Definition (Steps 1-2)
2025-09-29 20:19:14 -05:00
**Module Vision and Identity**
2025-09-28 23:17:07 -05:00
- Define module concept, purpose, and target audience
- Establish module code (kebab-case) and friendly name
- Choose module category (Domain-Specific, Creative, Technical, Business, Personal)
- Plan component architecture with agent and workflow specifications
**Module Brief Integration**
- Automatically detects existing module briefs in output folder
- Can load and use briefs as pre-populated blueprints
- Accelerates planning when comprehensive brief exists
### Phase 2: Architecture Planning (Steps 3-4)
**Directory Structure Creation**
- Creates complete module directory hierarchy
- Sets up agent, workflow, task, template, and data folders
- Establishes installer directory with proper configuration
**Module Configuration**
- Generates main config.yaml with module metadata
- Configures component counts and references
- Sets up output and data folder specifications
### Phase 3: Component Creation (Steps 5-6)
**Interactive Component Building**
2025-09-29 20:19:14 -05:00
- Optional creation of first agent using create-agent workflow
- Optional creation of first workflow using create-workflow workflow
2025-09-28 23:17:07 -05:00
- Creates placeholders for components to be built later
**Workflow Integration**
- Seamlessly invokes sub-workflows for component creation
- Ensures proper file placement and structure
- Maintains module consistency across components
2025-09-29 20:19:14 -05:00
### Phase 4: Installation and Documentation (Steps 7-9)
2025-09-28 23:17:07 -05:00
**Installer Infrastructure**
- Creates install-module-config.yaml for deployment
- Sets up optional installer.js for complex installation logic
- Configures post-install messaging and instructions
**Comprehensive Documentation**
- Generates detailed README.md with usage examples
- Creates development roadmap for remaining components
- Provides quick commands for continued development
2025-09-29 20:19:14 -05:00
### Phase 5: Validation and Finalization (Step 10)
2025-09-28 23:17:07 -05:00
**Quality Assurance**
- Validates directory structure and configuration files
- Checks component references and path consistency
- Ensures installer configuration is deployment-ready
- Provides comprehensive module summary and next steps
## Output
### Generated Files
- **Module Directory**: Complete module structure at `{project-root}/bmad/{module_code}/`
- **Configuration Files**: config.yaml, install-module-config.yaml
- **Documentation**: README.md, TODO.md development roadmap
- **Component Placeholders**: Structured folders for agents, workflows, and tasks
### Output Structure
The workflow creates a complete module ready for development:
1. **Module Identity** - Name, code, version, and metadata
2. **Directory Structure** - Proper BMAD module hierarchy
3. **Configuration System** - Runtime and installation configs
4. **Component Framework** - Ready-to-use agent and workflow scaffolding
5. **Installation Infrastructure** - Deployment-ready installer
6. **Documentation Suite** - README, roadmap, and development guides
## Requirements
- **Module Brief** (optional but recommended) - Use module-brief workflow first for best results
- **BMAD Core Configuration** - Properly configured BMB config.yaml
2025-09-29 20:19:14 -05:00
- **Build Tools Access** - create-agent and create-workflow workflows must be available
2025-09-28 23:17:07 -05:00
## Best Practices
### Before Starting
1. **Create a Module Brief** - Run module-brief workflow for comprehensive planning
2. **Review Existing Modules** - Study similar modules in `/bmad/` for patterns and inspiration
3. **Define Clear Scope** - Have a concrete vision of what the module will accomplish
### During Execution
1. **Use Module Briefs** - Load existing briefs when prompted for accelerated development
2. **Start Simple** - Create one core agent and workflow, then expand iteratively
2025-09-29 20:19:14 -05:00
3. **Leverage Sub-workflows** - Use create-agent and create-workflow for quality components
2025-09-28 23:17:07 -05:00
4. **Validate Early** - Review generated structure before proceeding to next phases
### After Completion
1. **Follow the Roadmap** - Use generated TODO.md for systematic development
2. **Test Installation** - Validate installer with `bmad install {module_code}`
3. **Iterate Components** - Use quick commands to add agents and workflows
4. **Document Progress** - Update README.md as the module evolves
## Troubleshooting
### Common Issues
**Issue**: Module already exists at target location
- **Solution**: Choose a different module code or remove existing module
- **Check**: Verify output folder permissions and available space
**Issue**: Sub-workflow invocation fails
2025-09-29 20:19:14 -05:00
- **Solution**: Ensure create-agent and create-workflow workflows are available
2025-09-28 23:17:07 -05:00
- **Check**: Validate workflow paths in config.yaml
**Issue**: Installation configuration invalid
- **Solution**: Review install-module-config.yaml syntax and paths
- **Check**: Ensure all referenced paths use {project-root} variables correctly
## Customization
To customize this workflow:
1. **Modify Instructions** - Update instructions.md to adjust scaffolding steps
2. **Extend Templates** - Add new installer templates in installer-templates/
3. **Update Validation** - Enhance checklist.md with additional quality checks
4. **Add Components** - Integrate additional sub-workflows for specialized components
## Version History
- **v1.0.0** - Initial release
- Interactive module scaffolding
2025-09-29 20:19:14 -05:00
- Component integration with create-agent and create-workflow
2025-09-28 23:17:07 -05:00
- Complete installation infrastructure
- Module brief integration support
## Support
For issues or questions:
2025-09-29 20:19:14 -05:00
- Review the workflow creation guide at `/bmad/bmb/workflows/create-workflow/workflow-creation-guide.md`
2025-09-28 23:17:07 -05:00
- Study module structure patterns at `module-structure.md`
- Validate output using `checklist.md`
- Consult existing modules in `/bmad/` for examples
---
_Part of the BMad Method v5 - BMB (Builder) Module_