2025-09-28 23:17:07 -05:00
# Build Agent Workflow Configuration
2025-09-29 20:19:14 -05:00
name : create-agent
2025-10-03 11:54:32 -05:00
description : "Interactive workflow to build BMAD Core compliant agents (YAML source compiled to .md during install) with optional brainstorming, persona development, and command structure"
2025-09-28 23:17:07 -05:00
author : "BMad"
# Critical variables load from config_source
config_source : "{project-root}/bmad/bmb/config.yaml"
output_folder : "{config_source}:output_folder"
user_name : "{config_source}:user_name"
src_impact : "{config_source}:src_impact"
communication_language : "{config_source}:communication_language"
date : system-generated
# Technical documentation for agent building
agent_types : "{installed_path}/agent-types.md"
agent_architecture : "{installed_path}/agent-architecture.md"
agent_commands : "{installed_path}/agent-command-patterns.md"
communication_styles : "{installed_path}/communication-styles.md"
# Optional docs that help understand agent patterns
recommended_inputs :
- example_agents : "{project-root}/bmad/bmm/agents/"
- agent_activation_rules : "{project-root}/src/utility/models/agent-activation-ide.xml"
# Module path and component files
2025-09-29 20:19:14 -05:00
installed_path : "{project-root}/bmad/bmb/workflows/create-agent"
2025-09-28 23:17:07 -05:00
template : false # This is an interactive workflow - no template needed
instructions : "{installed_path}/instructions.md"
validation : "{installed_path}/checklist.md"
2025-10-03 11:54:32 -05:00
# Output configuration - YAML agents compiled to .md at install time
# If src_impact=true: Save YAML to src/modules/{{target_module}}/agents/
# If src_impact=false: Save YAML to output_folder/agents/
default_output_file : "{output_folder}/agents/{{agent_filename}}.agent.yaml"
src_output_file : "{project-root}/src/modules/{{target_module}}/agents/{{agent_filename}}.agent.yaml"
# Optional user override file (auto-created by installer if missing)
config_output_file : "{project-root}/bmad/_cfg/agents/{{target_module}}-{{agent_filename}}.customize.yaml"
2025-09-28 23:17:07 -05:00
2025-09-29 20:19:14 -05:00
web_bundle :
name : "create-agent"
description : "Interactive workflow to build BMAD Core compliant agents (simple, expert, or module types) with optional brainstorming for agent ideas, proper persona development, activation rules, and command structure"
author : "BMad"
web_bundle_files :
- "bmad/bmb/workflows/create-agent/instructions.md"
- "bmad/bmb/workflows/create-agent/checklist.md"
- "bmad/bmb/workflows/create-agent/agent-types.md"
- "bmad/bmb/workflows/create-agent/agent-architecture.md"
- "bmad/bmb/workflows/create-agent/agent-command-patterns.md"
- "bmad/bmb/workflows/create-agent/communication-styles.md"