Files
BMAD-METHOD/bmad/bmb/workflows/create-module/instructions.md
Brian Madison 54985778f2 minor fixes
2025-10-16 21:50:50 -05:00

14 KiB

Build Module - Interactive Module Builder Instructions

The workflow execution engine is governed by: {project-root}/bmad/core/tasks/workflow.xml 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 Communicate in {communication_language} throughout the module creation process

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 in following steps

If no: Proceed directly to Step 0

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 Step 1

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 patterns

If brainstorming or module brief was completed, reference those results to guide the conversation

Guide user to articulate their module's vision, exploring its purpose, what it will help with, and who will use it

Based on their description, intelligently propose module details:

Module Identity Development:

  1. Module name - Extract from their description with proper title case
  2. Module code - Generate kebab-case from name following patterns:
    • Multi-word descriptive names → shortened kebab-case
    • Domain-specific terms → recognizable abbreviations
    • Present suggested code and confirm it works for paths like bmad/{{code}}/agents/
  3. Module purpose - Refine their description into 1-2 clear sentences
  4. Target audience - Infer from context or ask if unclear

Module Theme Reference Categories:

  • 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)

Determine output location:

  • Module will be created at {installer_output_folder}

Store module identity for scaffolding

module_identity

Based on the module purpose, intelligently propose an initial component architecture

Agents Planning:

Suggest agents based on module purpose, considering agent types (Simple/Expert/Module) appropriate to each role

Example Agent Patterns by Domain:

  • Data/Analytics: Analyst, Designer, Builder roles
  • Gaming/Creative: Game Master, Generator, Storytelling roles
  • Team/Business: Manager, Facilitator, Documentation roles

Present suggested agent list with types, explaining we can start with core ones and add others later Confirm which agents resonate with their vision

Workflows Planning:

Intelligently suggest workflows that complement the proposed agents

Example Workflow Patterns by Domain:

  • Data/Analytics: analyze-dataset, create-dashboard, generate-report
  • Gaming/Creative: session-prep, generate-encounter, world-building
  • Team/Business: planning, facilitation, documentation workflows

For each workflow, note whether it should be Document, Action, or Interactive type Confirm which workflows are most important to start with Determine which to create now vs placeholder

Tasks Planning (optional): Any special tasks that don't warrant full workflows?

If tasks needed: For each task, capture name, purpose, and whether standalone or supporting

module_components

Based on components, intelligently determine module type using criteria:

Simple Module Criteria:

  • 1-2 agents, all Simple type
  • 1-3 workflows
  • No complex integrations

Standard Module Criteria:

  • 2-4 agents with mixed types
  • 3-8 workflows
  • Some shared resources

Complex Module Criteria:

  • 4+ agents or multiple Module-type agents
  • 8+ workflows
  • Complex interdependencies
  • External integrations

Present determined module type with explanation of what structure will be set up

module_type

Use module path determined in Step 1: - The module base path is {{module_path}}

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"

Save location:

  • Save to {{module_path}}/config.yaml

module_config

Create your first agent now? [yes/no]

If yes: Invoke agent builder workflow: {agent_builder} Pass module_components as context input Guide them to create the primary agent for the module

Save to module's agents folder:

  • Save to {{module_path}}/agents/

If no: Create placeholder file in agents folder with TODO notes including agent name, purpose, and type

first_agent

Create your first workflow now? [yes/no]

If yes: Invoke workflow builder: {workflow_builder} Pass module_components as context input Guide them to create the primary workflow

Save to module's workflows folder:

  • Save to {{module_path}}/workflows/

If no: Create placeholder workflow folder structure with TODO notes for workflow.yaml, instructions.md, and template.md 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

  1. Load the main agent:

    agent {{primary_agent}}
    
  2. View available commands:

    *help
    
  3. 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:

  1. Add new agents using create-agent workflow
  2. Add new workflows using create-workflow workflow
  3. 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:

  1. Continue building more components now
  2. Save roadmap for later development
  3. 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

Present summary to {user_name}:

  • Module name and code
  • Location path
  • Agent count (created vs planned)
  • Workflow count (created vs planned)
  • Task count
  • Installer status

Provide next steps guidance:

  1. Complete remaining components using roadmap
  2. Run the BMAD Method installer to this project location
  3. Select 'Compile Agents' option after confirming folder
  4. Module will be compiled and available for use
  5. Test with bmad install command
  6. Share or integrate with existing system

Would you like to:

  • Create another component now?
  • Test the module installation?
  • Exit and continue later?

module_summary