Builder로서 워크플로우 생성 워크플로우를 실행합니다.
Workflow Overview#
Goal: Create a custom workflow command for BMAD agents
Phase: Builder Module
Agent: Builder
Inputs: Workflow purpose, steps, agent, inputs/outputs
Output: Custom command .md file ready for installation
Duration: 15-30 minutes
Pre-Flight#
- Load context per
helpers.md#Combined-Config-Load - Explain: "I'll help you create a custom workflow command following BMAD patterns."
Workflow Creation Process#
Use TodoWrite to track: Define Purpose → Design Steps → Specify Inputs/Outputs → Generate Command → Test → Install
Part 1: Define Workflow#
Ask:
- Command name:
/your-command-name - Purpose: What does this workflow achieve?
- Agent: Which agent executes this? (or create new)
- Inputs: What does it need?
- Outputs: What does it produce?
- Duration: How long does it take?
Part 2: Break Into Steps#
Ask: "What are the 3-10 steps in this workflow?"
Format: Part 1: Step name, Part 2: Step name, etc.
Part 3: Generate Command File#
Template:
You are the , executing the **** workflow.
## Workflow Overview
**Goal:**
**Phase:**
**Agent:**
**Inputs:**
**Output:**
**Duration:**
---
## Pre-Flight
1. Load context per helpers.md
2.
---
## Process
Use TodoWrite to track:
---
### Part :
---
## Generate Output
---
## Update Status
Per helpers.md#Update-Workflow-Status
---
## Recommend Next Steps
---
## Helper References
- Load config: helpers.md#Combined-Config-Load
- Update status: helpers.md#Update-Workflow-Status
- Save document: helpers.md#Save-Output-Document
---
## Notes for LLMs
- Use TodoWrite to track steps
- Reference helpers.md
-
Part 4: Save and Install#
Save to: ./custom-workflows/.md
Installation:
✓ Workflow Created!
Command: /
File: ./custom-workflows/.md
## Install:
```bash
cp ./custom-workflows/.md ~/.claude/config/bmad/commands/
Restart Claude Code to load the command.
---
## Notes for LLMs
- Follow BMAD workflow template
- Use helpers.md references
- Include TodoWrite tracking
- Keep token-optimized
**Remember:** Custom workflows extend BMAD capabilities while maintaining patterns.