BMAD Builder
Trigger Intents
bmad:create-skill
bmad:create-workflow
Workflow Variants
create-skill
- Scaffold a new BMAD skill folder with minimal required files.
create-workflow
- Define workflow contract, artifacts, and trigger semantics for a domain task.
Inputs
- capability goal and scope
- intended triggers/intents
- expected inputs, outputs, and quality checks
Language Guard (Mandatory)
Enforce language selection separately for chat responses and generated artifacts.
Chat language (communication_language) fallback order:
language.communication_language from bmad/project.yaml
English
Rules for chat responses:
- Use the resolved chat language for all assistant responses (questions, status updates, summaries, and handoff notes).
- Do not switch chat language unless the user explicitly requests a different language in the current thread.
Artifact language (document_output_language) fallback order:
language.document_output_language from bmad/project.yaml
English
Rules for generated artifacts:
- Use the resolved artifact language for all generated BMAD documents and structured artifacts.
- write prose and field values in the resolved document language
- avoid mixed-language requirement clauses with English modal verbs (for example,
System shall followed by non-English text)
- allow English acronyms/abbreviations in non-English sentences (for example,
API, SLA, KPI, OAuth, WCAG)
- Keep code snippets, CLI commands, file paths, and identifiers in their original technical form.
Mandatory Reference Load
Before executing create-skill or create-workflow, read REFERENCE.md first.
Treat REFERENCE.md as required context before applying scaffold patterns.
Output Contract
- new skill scaffold under
skills/
- required files:
SKILL.md, agents/openai.yaml
- optional files:
templates/, scripts/, resources/
Core Workflow
- Define role, trigger semantics, and artifact contract.
- Scaffold minimal structure.
- Add deterministic scripts only where repeatability is required.
- Validate frontmatter and trigger clarity.
- Provide usage prompt and handoff rules.
Script Selection
Template Map
templates/skill.template.md
Why: baseline structure for new skill instructions.
templates/workflow.template.md
Why: workflow contract template.
templates/document.template.md
Why: reusable artifact template.
Reference Map
REFERENCE.md
Must read first for extended builder guidance and quality checks.
resources/skill-patterns.md
Use for naming, trigger, and structure patterns.
Quality Gates
- skill metadata is valid and discoverable
- triggers and outputs are unambiguous
- generated structure is minimal and maintainable
- no runtime-specific legacy dependencies are introduced
1---2name: bmad-builder3description: Skill and workflow scaffolding skill for BMAD. Use for bmad:create-skill and bmad:create-workflow to extend BMAD with domain-specific capabilities.4---56# BMAD Builder78## Trigger Intents910- `bmad:create-skill`11- `bmad:create-workflow`1213## Workflow Variants14151. `create-skill`16- Scaffold a new BMAD skill folder with minimal required files.17182. `create-workflow`19- Define workflow contract, artifacts, and trigger semantics for a domain task.2021## Inputs2223- capability goal and scope24- intended triggers/intents25- expected inputs, outputs, and quality checks2627## Language Guard (Mandatory)2829Enforce language selection separately for chat responses and generated artifacts.3031Chat language (`communication_language`) fallback order:32331. `language.communication_language` from `bmad/project.yaml`342. `English`3536Rules for chat responses:3738- Use the resolved chat language for all assistant responses (questions, status updates, summaries, and handoff notes).39- Do not switch chat language unless the user explicitly requests a different language in the current thread.4041Artifact language (`document_output_language`) fallback order:42431. `language.document_output_language` from `bmad/project.yaml`442. `English`4546Rules for generated artifacts:4748- Use the resolved artifact language for all generated BMAD documents and structured artifacts.49- write prose and field values in the resolved document language50- avoid mixed-language requirement clauses with English modal verbs (for example, `System shall` followed by non-English text)51- allow English acronyms/abbreviations in non-English sentences (for example, `API`, `SLA`, `KPI`, `OAuth`, `WCAG`)52- Keep code snippets, CLI commands, file paths, and identifiers in their original technical form.5354## Mandatory Reference Load5556Before executing `create-skill` or `create-workflow`, read `REFERENCE.md` first.57Treat `REFERENCE.md` as required context before applying scaffold patterns.5859## Output Contract6061- new skill scaffold under `skills/`62- required files: `SKILL.md`, `agents/openai.yaml`63- optional files: `templates/`, `scripts/`, `resources/`6465## Core Workflow66671. Define role, trigger semantics, and artifact contract.682. Scaffold minimal structure.693. Add deterministic scripts only where repeatability is required.704. Validate frontmatter and trigger clarity.715. Provide usage prompt and handoff rules.7273## Script Selection7475- Create scaffold:76 ```bash77 bash scripts/scaffold-skill.sh <skill-name>78 ```79- Validate resulting skill:80 ```bash81 bash scripts/validate-skill.sh <skill-dir>82 ```8384## Template Map8586- `templates/skill.template.md`87- Why: baseline structure for new skill instructions.8889- `templates/workflow.template.md`90- Why: workflow contract template.9192- `templates/document.template.md`93- Why: reusable artifact template.9495## Reference Map9697- `REFERENCE.md`98- Must read first for extended builder guidance and quality checks.99100- `resources/skill-patterns.md`101- Use for naming, trigger, and structure patterns.102103## Quality Gates104105- skill metadata is valid and discoverable106- triggers and outputs are unambiguous107- generated structure is minimal and maintainable108- no runtime-specific legacy dependencies are introduced