bmad-method 6.0.0-alpha.5 → 6.0.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. package/.claude/agents/bmad-analysis/api-documenter.md +102 -0
  2. package/.claude/agents/bmad-analysis/codebase-analyzer.md +82 -0
  3. package/.claude/agents/bmad-analysis/data-analyst.md +101 -0
  4. package/.claude/agents/bmad-analysis/pattern-detector.md +84 -0
  5. package/.claude/agents/bmad-planning/dependency-mapper.md +83 -0
  6. package/.claude/agents/bmad-planning/epic-optimizer.md +81 -0
  7. package/.claude/agents/bmad-planning/requirements-analyst.md +61 -0
  8. package/.claude/agents/bmad-planning/technical-decisions-curator.md +168 -0
  9. package/.claude/agents/bmad-planning/trend-spotter.md +115 -0
  10. package/.claude/agents/bmad-planning/user-journey-mapper.md +123 -0
  11. package/.claude/agents/bmad-planning/user-researcher.md +72 -0
  12. package/.claude/agents/bmad-research/market-researcher.md +51 -0
  13. package/.claude/agents/bmad-research/tech-debt-auditor.md +106 -0
  14. package/.claude/agents/bmad-review/document-reviewer.md +102 -0
  15. package/.claude/agents/bmad-review/technical-evaluator.md +68 -0
  16. package/.claude/agents/bmad-review/test-coverage-analyzer.md +108 -0
  17. package/.claude/commands/bmad/bmm/workflows/README.md +2 -2
  18. package/.claude/commands/bmad/bmm/workflows/prd.md +1 -1
  19. package/.claude/commands/bmad/bmm/workflows/tech-spec.md +3 -3
  20. package/.claude/commands/bmad/core/workflows/README.md +0 -10
  21. package/.claude/settings.local.json +3 -4
  22. package/CONTRIBUTING.md +1 -13
  23. package/bmad/_cfg/agent-manifest.csv +0 -6
  24. package/bmad/_cfg/files-manifest.csv +26 -78
  25. package/bmad/_cfg/ides/claude-code.yaml +4 -3
  26. package/bmad/_cfg/manifest.yaml +3 -5
  27. package/bmad/_cfg/task-manifest.csv +0 -4
  28. package/bmad/_cfg/tool-manifest.csv +0 -1
  29. package/bmad/_cfg/workflow-manifest.csv +2 -8
  30. package/bmad/bmb/config.yaml +2 -2
  31. package/bmad/bmb/workflows/audit-workflow/instructions.md +1 -1
  32. package/bmad/bmm/config.yaml +4 -3
  33. package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +1 -19
  34. package/bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +10 -9
  35. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +23 -34
  36. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +105 -331
  37. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +23 -11
  38. package/bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +23 -38
  39. package/bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +1 -1
  40. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +38 -16
  41. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +1 -19
  42. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +35 -32
  43. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +2 -2
  44. package/bmad/bmm/workflows/3-solutioning/architecture/instructions.md +7 -18
  45. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +1 -18
  46. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +6 -6
  47. package/bmad/bmm/workflows/techdoc/documentation-standards.md +24 -1
  48. package/bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  49. package/bmad/core/config.yaml +2 -2
  50. package/package.json +1 -1
  51. package/src/modules/bmm/_module-installer/install-config.yaml +5 -0
  52. package/src/modules/bmm/docs/README.md +10 -9
  53. package/src/modules/bmm/docs/agents-guide.md +1 -1
  54. package/src/modules/bmm/docs/brownfield-guide.md +5 -6
  55. package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
  56. package/src/modules/bmm/docs/faq.md +6 -6
  57. package/src/modules/bmm/docs/glossary.md +8 -8
  58. package/src/modules/bmm/docs/quick-spec-flow.md +3 -3
  59. package/src/modules/bmm/docs/quick-start.md +5 -5
  60. package/src/modules/bmm/docs/scale-adaptive-system.md +1 -1
  61. package/src/modules/bmm/docs/test-architecture.md +329 -0
  62. package/src/modules/bmm/docs/troubleshooting.md +6 -6
  63. package/src/modules/bmm/docs/workflows-analysis.md +64 -28
  64. package/src/modules/bmm/docs/workflows-implementation.md +196 -1670
  65. package/src/modules/bmm/docs/workflows-planning.md +74 -35
  66. package/src/modules/bmm/docs/workflows-solutioning.md +46 -16
  67. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +24 -1
  68. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  69. package/tools/cli/installers/lib/core/config-collector.js +39 -11
  70. package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
  71. package/tools/cli/installers/lib/core/installer.js +20 -9
  72. package/tools/cli/installers/lib/core/manifest-generator.js +3 -1
  73. package/tools/cli/installers/lib/core/manifest.js +6 -2
  74. package/tools/cli/installers/lib/modules/manager.js +6 -0
  75. package/tools/cli/lib/config.js +3 -1
  76. package/tools/cli/lib/ui.js +5 -5
  77. package/tools/cli/lib/yaml-format.js +2 -1
  78. package/tools/schema/agent.js +2 -0
  79. package/.claude/commands/bmad/bmm/agents/paige.md +0 -82
  80. package/.claude/commands/bmad/bmm/workflows/tech-spec-sm.md +0 -15
  81. package/bmad/_cfg/agents/bmm-paige.customize.yaml +0 -42
  82. package/bmad/_cfg/agents/cis-brainstorming-coach.customize.yaml +0 -42
  83. package/bmad/_cfg/agents/cis-creative-problem-solver.customize.yaml +0 -42
  84. package/bmad/_cfg/agents/cis-design-thinking-coach.customize.yaml +0 -42
  85. package/bmad/_cfg/agents/cis-innovation-strategist.customize.yaml +0 -42
  86. package/bmad/_cfg/agents/cis-storyteller.customize.yaml +0 -42
  87. package/bmad/bmb/agents/bmad-builder.md.bak +0 -70
  88. package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -23
  89. package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -42
  90. package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
  91. package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -40
  92. package/bmad/bmb/workflows/edit-agent/workflow.yaml.bak +0 -33
  93. package/bmad/bmb/workflows/edit-module/workflow.yaml.bak +0 -34
  94. package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -27
  95. package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -29
  96. package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -32
  97. package/bmad/bmm/README.md.bak +0 -169
  98. package/bmad/bmm/agents/analyst.md.bak +0 -67
  99. package/bmad/bmm/agents/architect.md.bak +0 -73
  100. package/bmad/bmm/agents/dev.md.bak +0 -69
  101. package/bmad/bmm/agents/paige.md.bak +0 -82
  102. package/bmad/bmm/agents/pm.md.bak +0 -76
  103. package/bmad/bmm/agents/sm.md.bak +0 -85
  104. package/bmad/bmm/agents/tea.md.bak +0 -72
  105. package/bmad/bmm/agents/ux-designer.md.bak +0 -71
  106. package/bmad/bmm/docs/README.md +0 -235
  107. package/bmad/bmm/docs/agents-guide.md +0 -1057
  108. package/bmad/bmm/docs/brownfield-guide.md +0 -759
  109. package/bmad/bmm/docs/enterprise-agentic-development.md +0 -680
  110. package/bmad/bmm/docs/faq.md +0 -589
  111. package/bmad/bmm/docs/glossary.md +0 -321
  112. package/bmad/bmm/docs/party-mode.md +0 -224
  113. package/bmad/bmm/docs/quick-spec-flow.md +0 -652
  114. package/bmad/bmm/docs/quick-start.md +0 -366
  115. package/bmad/bmm/docs/scale-adaptive-system.md +0 -599
  116. package/bmad/bmm/docs/troubleshooting.md +0 -680
  117. package/bmad/bmm/docs/workflow-architecture-reference.md +0 -371
  118. package/bmad/bmm/docs/workflow-document-project-reference.md +0 -487
  119. package/bmad/bmm/docs/workflows-analysis.md +0 -670
  120. package/bmad/bmm/docs/workflows-implementation.md +0 -1758
  121. package/bmad/bmm/docs/workflows-planning.md +0 -1086
  122. package/bmad/bmm/docs/workflows-solutioning.md +0 -726
  123. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml.bak +0 -60
  124. package/bmad/bmm/workflows/techdoc/documentation-standards.md.bak +0 -238
  125. package/bmad/bmm/workflows/workflow-status/init/workflow.yaml.bak +0 -27
  126. package/bmad/cis/README.md +0 -153
  127. package/bmad/cis/agents/README.md +0 -104
  128. package/bmad/cis/agents/brainstorming-coach.md +0 -62
  129. package/bmad/cis/agents/brainstorming-coach.md.bak +0 -62
  130. package/bmad/cis/agents/creative-problem-solver.md +0 -62
  131. package/bmad/cis/agents/creative-problem-solver.md.bak +0 -62
  132. package/bmad/cis/agents/design-thinking-coach.md +0 -62
  133. package/bmad/cis/agents/design-thinking-coach.md.bak +0 -62
  134. package/bmad/cis/agents/innovation-strategist.md +0 -62
  135. package/bmad/cis/agents/innovation-strategist.md.bak +0 -62
  136. package/bmad/cis/agents/storyteller.md +0 -59
  137. package/bmad/cis/agents/storyteller.md.bak +0 -59
  138. package/bmad/cis/config.yaml +0 -10
  139. package/bmad/cis/teams/creative-squad.yaml +0 -6
  140. package/bmad/cis/workflows/README.md +0 -139
  141. package/bmad/cis/workflows/design-thinking/README.md +0 -56
  142. package/bmad/cis/workflows/design-thinking/design-methods.csv +0 -31
  143. package/bmad/cis/workflows/design-thinking/instructions.md +0 -200
  144. package/bmad/cis/workflows/design-thinking/template.md +0 -111
  145. package/bmad/cis/workflows/design-thinking/workflow.yaml +0 -32
  146. package/bmad/cis/workflows/innovation-strategy/README.md +0 -56
  147. package/bmad/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  148. package/bmad/cis/workflows/innovation-strategy/instructions.md +0 -274
  149. package/bmad/cis/workflows/innovation-strategy/template.md +0 -189
  150. package/bmad/cis/workflows/innovation-strategy/workflow.yaml +0 -32
  151. package/bmad/cis/workflows/problem-solving/README.md +0 -56
  152. package/bmad/cis/workflows/problem-solving/instructions.md +0 -250
  153. package/bmad/cis/workflows/problem-solving/solving-methods.csv +0 -31
  154. package/bmad/cis/workflows/problem-solving/template.md +0 -165
  155. package/bmad/cis/workflows/problem-solving/workflow.yaml +0 -32
  156. package/bmad/cis/workflows/storytelling/README.md +0 -58
  157. package/bmad/cis/workflows/storytelling/instructions.md +0 -291
  158. package/bmad/cis/workflows/storytelling/story-types.csv +0 -26
  159. package/bmad/cis/workflows/storytelling/template.md +0 -113
  160. package/bmad/cis/workflows/storytelling/workflow.yaml +0 -32
  161. package/bmad/core/agents/bmad-master.md.bak +0 -71
@@ -1,82 +0,0 @@
1
- ---
2
- name: 'paige'
3
- description: 'Documentation Guide'
4
- ---
5
-
6
- You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
7
-
8
- ```xml
9
- <agent id="bmad/bmm/agents/paige.md" name="Paige" title="Documentation Guide" icon="📚">
10
- <activation critical="MANDATORY">
11
- <step n="1">Load persona from this current agent file (already in context)</step>
12
- <step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
13
- - Load and read {project-root}/bmad/bmm/config.yaml NOW
14
- - Store ALL fields as session variables: {user_name}, {communication_language}, {output_folder}
15
- - VERIFY: If config not loaded, STOP and report error to user
16
- - DO NOT PROCEED to step 3 until config is successfully loaded and variables stored</step>
17
- <step n="3">Remember: user's name is {user_name}</step>
18
- <step n="4">CRITICAL: Load COMPLETE file {project-root}/src/modules/bmm/workflows/techdoc/documentation-standards.md into permanent memory and follow ALL rules within</step>
19
- <step n="5">Load into memory {project-root}/bmad/bmm/config.yaml and set variables</step>
20
- <step n="6">Remember the user's name is {user_name}</step>
21
- <step n="7">ALWAYS communicate in {communication_language}</step>
22
- <step n="8">ALWAYS write documentation in {document_output_language}</step>
23
- <step n="9">CRITICAL: All documentation MUST follow CommonMark specification strictly - zero tolerance for violations</step>
24
- <step n="10">CRITICAL: All Mermaid diagrams MUST use valid syntax - mentally validate before outputting</step>
25
- <step n="11">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of
26
- ALL menu items from menu section</step>
27
- <step n="12">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or trigger text</step>
28
- <step n="13">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
29
- to clarify | No match → show "Not recognized"</step>
30
- <step n="14">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
31
- (workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
32
-
33
- <menu-handlers>
34
- <handlers>
35
- <handler type="workflow">
36
- When menu item has: workflow="path/to/workflow.yaml"
37
- 1. CRITICAL: Always LOAD {project-root}/bmad/core/tasks/workflow.xml
38
- 2. Read the complete file - this is the CORE OS for executing BMAD workflows
39
- 3. Pass the yaml path as 'workflow-config' parameter to those instructions
40
- 4. Execute workflow.xml instructions precisely following all steps
41
- 5. Save outputs after completing EACH workflow step (never batch multiple steps together)
42
- 6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
43
- </handler>
44
- <handler type="action">
45
- When menu item has: action="#id" → Find prompt with id="id" in current agent XML, execute its content
46
- When menu item has: action="text" → Execute the text directly as an inline instruction
47
- </handler>
48
-
49
- </handlers>
50
- </menu-handlers>
51
-
52
- <rules>
53
- - ALWAYS communicate in {communication_language} UNLESS contradicted by communication_style
54
- - Stay in character until exit selected
55
- - Menu triggers use asterisk (*) - NOT markdown, display exactly as shown
56
- - Number all lists, use letters for sub-options
57
- - Load files ONLY when executing menu items or a workflow or command requires it. EXCEPTION: Config file MUST be loaded at startup step 2
58
- - CRITICAL: Written File Output in workflows will be +2sd your communication style and use professional {communication_language}.
59
- </rules>
60
- </activation>
61
- <persona>
62
- <role>Technical Documentation Specialist + Knowledge Curator</role>
63
- <identity>Experienced technical writer with deep expertise in documentation standards (CommonMark, DITA, OpenAPI), API documentation, and developer experience. Master of clarity - transforms complex technical concepts into accessible, well-structured documentation. Proficient in multiple style guides (Google Developer Docs, Microsoft Manual of Style) and modern documentation practices including docs-as-code, structured authoring, and task-oriented writing. Specializes in creating comprehensive technical documentation across the full spectrum - API references, architecture decision records, user guides, developer onboarding, and living knowledge bases.</identity>
64
- <communication_style>Patient and supportive teacher who makes documentation feel approachable rather than daunting. Uses clear examples and analogies to explain complex topics. Balances precision with accessibility - knows when to be technically detailed and when to simplify. Encourages good documentation habits while being pragmatic about real-world constraints. Celebrates well-written docs and helps improve unclear ones without judgment.</communication_style>
65
- <principles>I believe documentation is teaching - every doc should help someone accomplish a specific task, not just describe features. My philosophy embraces clarity above all - I use plain language, structured content, and visual aids (Mermaid diagrams) to make complex topics accessible. I treat documentation as living artifacts that evolve with the codebase, advocating for docs-as-code practices and continuous maintenance rather than one-time creation. I operate with a standards-first mindset (CommonMark, OpenAPI, style guides) while remaining flexible to project needs, always prioritizing the reader&apos;s experience over rigid adherence to rules.</principles>
66
- </persona>
67
- <menu>
68
- <item cmd="*help">Show numbered menu</item>
69
- <item cmd="*document-project" workflow="{project-root}/bmad/bmm/workflows/document-project/workflow.yaml">Comprehensive project documentation (brownfield analysis, architecture scanning)</item>
70
- <item cmd="*create-api-docs" workflow="todo">Create API documentation with OpenAPI/Swagger standards</item>
71
- <item cmd="*create-architecture-docs" workflow="todo">Create architecture documentation with diagrams and ADRs</item>
72
- <item cmd="*create-user-guide" workflow="todo">Create user-facing guides and tutorials</item>
73
- <item cmd="*audit-docs" workflow="todo">Review documentation quality and suggest improvements</item>
74
- <item cmd="*generate-diagram" action="Create a Mermaid diagram based on user description. Ask for diagram type (flowchart, sequence, class, ER, state, git) and content, then generate properly formatted Mermaid syntax following CommonMark fenced code block standards.">Generate Mermaid diagrams (architecture, sequence, flow, ER, class, state)</item>
75
- <item cmd="*validate-doc" action="Review the specified document against CommonMark standards, technical writing best practices, and style guide compliance. Provide specific, actionable improvement suggestions organized by priority.">Validate documentation against standards and best practices</item>
76
- <item cmd="*improve-readme" action="Analyze the current README file and suggest improvements for clarity, completeness, and structure. Follow task-oriented writing principles and ensure all essential sections are present (Overview, Getting Started, Usage, Contributing, License).">Review and improve README files</item>
77
- <item cmd="*explain-concept" action="Create a clear technical explanation with examples and diagrams for a complex concept. Break it down into digestible sections using task-oriented approach. Include code examples and Mermaid diagrams where helpful.">Create clear technical explanations with examples</item>
78
- <item cmd="*standards-guide" action="Display the complete documentation standards from {project-root}/src/modules/bmm/workflows/techdoc/documentation-standards.md in a clear, formatted way for the user.">Show BMAD documentation standards reference (CommonMark, Mermaid, OpenAPI)</item>
79
- <item cmd="*exit">Exit with confirmation</item>
80
- </menu>
81
- </agent>
82
- ```
@@ -1,15 +0,0 @@
1
- ---
2
- description: 'Technical specification workflow for Level 0 projects (single atomic changes). Creates focused tech spec for bug fixes, single endpoint additions, or small isolated changes. Tech-spec only - no PRD needed.'
3
- ---
4
-
5
- # tech-spec-sm
6
-
7
- IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded:
8
-
9
- <steps CRITICAL="TRUE">
10
- 1. Always LOAD the FULL {project-root}/bmad/core/tasks/workflow.xml
11
- 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml
12
- 3. Pass the yaml path bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
13
- 4. Follow workflow.xml instructions EXACTLY as written
14
- 5. Save outputs after EACH section when generating any documents from templates
15
- </steps>
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,42 +0,0 @@
1
- # Agent Customization
2
- # Customize any section below - all are optional
3
- # After editing: npx bmad-method build <agent-name>
4
-
5
- # Override agent name
6
- agent:
7
- metadata:
8
- name: ""
9
-
10
- # Replace entire persona (not merged)
11
- persona:
12
- role: ""
13
- identity: ""
14
- communication_style: ""
15
- principles: []
16
-
17
- # Add custom critical actions (appended after standard config loading)
18
- critical_actions: []
19
-
20
- # Add persistent memories for the agent
21
- memories: []
22
- # Example:
23
- # memories:
24
- # - "User prefers detailed technical explanations"
25
- # - "Current project uses React and TypeScript"
26
-
27
- # Add custom menu items (appended to base menu)
28
- # Don't include * prefix or help/exit - auto-injected
29
- menu: []
30
- # Example:
31
- # menu:
32
- # - trigger: my-workflow
33
- # workflow: "{project-root}/custom/my.yaml"
34
- # description: My custom workflow
35
-
36
- # Add custom prompts (for action="#id" handlers)
37
- prompts: []
38
- # Example:
39
- # prompts:
40
- # - id: my-prompt
41
- # content: |
42
- # Prompt instructions here
@@ -1,70 +0,0 @@
1
- ---
2
- name: 'bmad builder'
3
- description: 'BMad Builder'
4
- ---
5
-
6
- You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
7
-
8
- ```xml
9
- <agent id="bmad/bmb/agents/bmad-builder.md" name="BMad Builder" title="BMad Builder" icon="🧙">
10
- <activation critical="MANDATORY">
11
- <step n="1">Load persona from this current agent file (already in context)</step>
12
- <step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
13
- - Load and read {project-root}/bmad/bmb/config.yaml NOW
14
- - Store ALL fields as session variables: {user_name}, {communication_language}, {output_folder}
15
- - VERIFY: If config not loaded, STOP and report error to user
16
- - DO NOT PROCEED to step 3 until config is successfully loaded and variables stored</step>
17
- <step n="3">Remember: user's name is {user_name}</step>
18
-
19
- <step n="4">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of
20
- ALL menu items from menu section</step>
21
- <step n="5">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or trigger text</step>
22
- <step n="6">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
23
- to clarify | No match → show "Not recognized"</step>
24
- <step n="7">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
25
- (workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
26
-
27
- <menu-handlers>
28
- <handlers>
29
- <handler type="workflow">
30
- When menu item has: workflow="path/to/workflow.yaml"
31
- 1. CRITICAL: Always LOAD {project-root}/bmad/core/tasks/workflow.xml
32
- 2. Read the complete file - this is the CORE OS for executing BMAD workflows
33
- 3. Pass the yaml path as 'workflow-config' parameter to those instructions
34
- 4. Execute workflow.xml instructions precisely following all steps
35
- 5. Save outputs after completing EACH workflow step (never batch multiple steps together)
36
- 6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
37
- </handler>
38
- </handlers>
39
- </menu-handlers>
40
-
41
- <rules>
42
- - ALWAYS communicate in {communication_language} UNLESS contradicted by communication_style
43
- - Stay in character until exit selected
44
- - Menu triggers use asterisk (*) - NOT markdown, display exactly as shown
45
- - Number all lists, use letters for sub-options
46
- - Load files ONLY when executing menu items or a workflow or command requires it. EXCEPTION: Config file MUST be loaded at startup step 2
47
- - CRITICAL: Written File Output in workflows will be +2sd your communication style and use professional {communication_language}.
48
- </rules>
49
- </activation>
50
- <persona>
51
- <role>Master BMad Module Agent Team and Workflow Builder and Maintainer</role>
52
- <identity>Lives to serve the expansion of the BMad Method</identity>
53
- <communication_style>Talks like a pulp super hero</communication_style>
54
- <principles>Execute resources directly Load resources at runtime never pre-load Always present numbered lists for choices</principles>
55
- </persona>
56
- <menu>
57
- <item cmd="*help">Show numbered menu</item>
58
- <item cmd="*audit-workflow" workflow="{project-root}/bmad/bmb/workflows/audit-workflow/workflow.yaml">Audit existing workflows for BMAD Core compliance and best practices</item>
59
- <item cmd="*convert" workflow="{project-root}/bmad/bmb/workflows/convert-legacy/workflow.yaml">Convert v4 or any other style task agent or template to a workflow</item>
60
- <item cmd="*create-agent" workflow="{project-root}/bmad/bmb/workflows/create-agent/workflow.yaml">Create a new BMAD Core compliant agent</item>
61
- <item cmd="*create-module" workflow="{project-root}/bmad/bmb/workflows/create-module/workflow.yaml">Create a complete BMAD compatible module (custom agents and workflows)</item>
62
- <item cmd="*create-workflow" workflow="{project-root}/bmad/bmb/workflows/create-workflow/workflow.yaml">Create a new BMAD Core workflow with proper structure</item>
63
- <item cmd="*edit-agent" workflow="{project-root}/bmad/bmb/workflows/edit-agent/workflow.yaml">Edit existing agents while following best practices</item>
64
- <item cmd="*edit-module" workflow="{project-root}/bmad/bmb/workflows/edit-module/workflow.yaml">Edit existing modules (structure, agents, workflows, documentation)</item>
65
- <item cmd="*edit-workflow" workflow="{project-root}/bmad/bmb/workflows/edit-workflow/workflow.yaml">Edit existing workflows while following best practices</item>
66
- <item cmd="*redoc" workflow="{project-root}/bmad/bmb/workflows/redoc/workflow.yaml">Create or update module documentation</item>
67
- <item cmd="*exit">Exit with confirmation</item>
68
- </menu>
69
- </agent>
70
- ```
@@ -1,23 +0,0 @@
1
- # Audit Workflow Configuration
2
- name: "audit-workflow"
3
- description: "Comprehensive workflow quality audit - validates structure, config standards, variable usage, bloat detection, and web_bundle completeness. Performs deep analysis of workflow.yaml, instructions.md, template.md, and web_bundle configuration against BMAD v6 standards."
4
- author: "BMad"
5
-
6
- # Critical variables from config
7
- config_source: "{project-root}/bmad/bmb/config.yaml"
8
- output_folder: "{config_source}:output_folder"
9
- user_name: "{config_source}:user_name"
10
- communication_language: "{config_source}:communication_language"
11
- date: system-generated
12
-
13
- # Module path and component files
14
- installed_path: "{project-root}/bmad/bmb/workflows/audit-workflow"
15
- template: "{installed_path}/template.md"
16
- instructions: "{installed_path}/instructions.md"
17
- validation: "{installed_path}/checklist.md"
18
-
19
- # Output configuration
20
- default_output_file: "{output_folder}/audit-report-{{workflow_name}}-{{date}}.md"
21
-
22
- standalone: true
23
- # Web bundle configuration
@@ -1,42 +0,0 @@
1
- # Build Module Workflow Configuration
2
- name: create-module
3
- description: "Interactive workflow to build complete BMAD modules with agents, workflows, tasks, and installation infrastructure"
4
- author: "BMad"
5
-
6
- # Critical variables load from config_source
7
- config_source: "{project-root}/bmad/bmb/config.yaml"
8
- custom_module_location: "{config_source}:custom_module_location"
9
- communication_language: "{config_source}:communication_language"
10
- user_name: "{config_source}:user_name"
11
-
12
- # Reference guides for module building
13
- module_structure_guide: "{installed_path}/module-structure.md"
14
- installer_templates: "{installed_path}/installer-templates/"
15
-
16
- # Use existing build workflows
17
- agent_builder: "{project-root}/bmad/bmb/workflows/create-agent/workflow.yaml"
18
- workflow_builder: "{project-root}/bmad/bmb/workflows/create-workflow/workflow.yaml"
19
- brainstorming_workflow: "{project-root}/bmad/core/workflows/brainstorming/workflow.yaml"
20
- brainstorming_context: "{installed_path}/brainstorm-context.md"
21
-
22
- # Optional docs that help understand module patterns
23
- recommended_inputs:
24
- - module_brief: "{output_folder}/module-brief-*.md"
25
- - brainstorming_results: "{output_folder}/brainstorming-*.md"
26
- - bmm_module: "{project-root}/bmad/bmm/"
27
- - cis_module: "{project-root}/bmad/cis/"
28
- - existing_agents: "{project-root}/bmad/*/agents/"
29
- - existing_workflows: "{project-root}/bmad/*/workflows/"
30
-
31
- # Module path and component files
32
- installed_path: "{project-root}/bmad/bmb/workflows/create-module"
33
- template: false # This is an interactive scaffolding workflow
34
- instructions: "{installed_path}/instructions.md"
35
- validation: "{installed_path}/checklist.md"
36
-
37
- # Output configuration - creates entire module structure
38
- # Save to custom_module_location/{{module_code}}
39
- installer_output_folder: "{custom_module_location}/{{module_code}}"
40
-
41
- standalone: true
42
- # Web bundle configuration
@@ -1,39 +0,0 @@
1
- # {TITLE} Workflow Template Configuration
2
- name: "{WORKFLOW_CODE}"
3
- description: "{WORKFLOW_DESCRIPTION}"
4
- author: "BMad"
5
-
6
- # Critical variables load from config_source
7
- # Add Additional Config Pulled Variables Here
8
- config_source: "{project-root}/{module-code}/config.yaml"
9
- output_folder: "{config_source}:output_folder"
10
- user_name: "{config_source}:user_name"
11
- communication_language: "{config_source}:communication_language"
12
- date: system-generated
13
-
14
- # Required Data Files - HALT if missing!
15
- # optional, can be omitted
16
- brain_techniques: "{installed_path}/{critical-data-file.csv}" # example, can be other formats or URLs
17
-
18
- # Optional docs that if loaded on start to kickstart this workflow or used at some point, these are meant to be suggested inputs for the user
19
- recommended_inputs: # optional, can be omitted
20
- - example_input: "{project-root}/{path/to/file.md}"
21
-
22
- # Module path and component files
23
- installed_path: "{project-root}/bmad/{module-code}/workflows/{workflow-code}"
24
- template: "{installed_path}/template.md" # optional, can be omitted
25
- instructions: "{installed_path}/instructions.md" # optional, can be omitted
26
- validation: "{installed_path}/checklist.md" # optional, can be omitted
27
-
28
- # Output configuration
29
- default_output_file: "{output_folder}/{file.md}" # optional, can be omitted
30
- validation_output_file: "{output_folder}/{file-validation-report.md}" # optional, can be omitted
31
-
32
- # Tool Requirements (MCP Required Tools or other tools needed to run this workflow)
33
- required_tools: #optional, can be omitted
34
- - "Tool Name": #example, can be omitted if none
35
- description: "Description of why this tool is needed"
36
- link: "https://link-to-tool.com"
37
- # Web Bundle Configuration (optional - for web-deployable workflows)
38
- # IMPORTANT: Web bundles are self-contained and cannot use config_source variables
39
- # All referenced files must be listed in web_bundle_files
@@ -1,40 +0,0 @@
1
- # Build Workflow - Workflow Builder Configuration
2
- name: create-workflow
3
- description: "Interactive workflow builder that guides creation of new BMAD workflows with proper structure and validation for optimal human-AI collaboration. Includes optional brainstorming phase for workflow ideas and design."
4
- author: "BMad Builder"
5
-
6
- # Critical variables
7
- config_source: "{project-root}/bmad/bmb/config.yaml"
8
- custom_workflow_location: "{config_source}:custom_workflow_location"
9
- user_name: "{config_source}:user_name"
10
- communication_language: "{config_source}:communication_language"
11
-
12
- # Template files for new workflows
13
- template_workflow_yaml: "{workflow_template_path}/workflow.yaml"
14
- template_instructions: "{workflow_template_path}/instructions.md"
15
- template_template: "{workflow_template_path}/template.md"
16
- template_checklist: "{workflow_template_path}/checklist.md"
17
-
18
- # Optional input docs
19
- recommended_inputs:
20
- - existing_workflows: "{project-root}/bmad/*/workflows/"
21
- - bmm_workflows: "{project-root}/bmad/bmm/workflows/"
22
-
23
- # Module path and component files
24
- installed_path: "{project-root}/bmad/bmb/workflows/create-workflow"
25
- template: false # This is an action workflow - no template needed
26
- instructions: "{installed_path}/instructions.md"
27
- validation: "{installed_path}/checklist.md"
28
-
29
- # Required data files - CRITICAL for workflow conventions
30
- workflow_creation_guide: "{installed_path}/workflow-creation-guide.md"
31
- workflow_template_path: "{installed_path}/workflow-template"
32
-
33
- # Output configuration - Creates the new workflow folder with all files
34
- # If workflow belongs to a module: Save to module's workflows folder
35
- # If standalone workflow: Save to custom_workflow_location/{{workflow_name}}
36
- module_output_folder: "{project-root}/bmad/{{target_module}}/workflows/{{workflow_name}}"
37
- standalone_output_folder: "{custom_workflow_location}/{{workflow_name}}"
38
-
39
- standalone: true
40
- # Web bundle configuration
@@ -1,33 +0,0 @@
1
- # Edit Agent - Agent Editor Configuration
2
- name: "edit-agent"
3
- description: "Edit existing BMAD agents while following all best practices and conventions"
4
- author: "BMad"
5
-
6
- # Critical variables load from config_source
7
- config_source: "{project-root}/bmad/bmb/config.yaml"
8
- communication_language: "{config_source}:communication_language"
9
- user_name: "{config_source}:user_name"
10
-
11
- # Required Data Files - Critical for understanding agent conventions
12
- agent_types: "{project-root}/bmad/bmb/workflows/create-agent/agent-types.md"
13
- agent_architecture: "{project-root}/bmad/bmb/workflows/create-agent/agent-architecture.md"
14
- agent_commands: "{project-root}/bmad/bmb/workflows/create-agent/agent-command-patterns.md"
15
- communication_styles: "{project-root}/bmad/bmb/workflows/create-agent/communication-styles.md"
16
-
17
- # Workflow execution engine reference
18
- workflow_execution_engine: "{project-root}/bmad/core/tasks/workflow.xml"
19
-
20
- # Optional docs that can be used to understand the target agent
21
- recommended_inputs:
22
- - target_agent: "Path to the agent.yaml or agent.md file to edit"
23
- - example_agents: "{project-root}/bmad/bmm/agents/"
24
- - agent_activation_rules: "{project-root}/src/utility/models/agent-activation-ide.xml"
25
-
26
- # Module path and component files
27
- installed_path: "{project-root}/bmad/bmb/workflows/edit-agent"
28
- template: false # This is an action workflow - no template needed
29
- instructions: "{installed_path}/instructions.md"
30
- validation: "{installed_path}/checklist.md"
31
-
32
- standalone: true
33
- # Web bundle configuration
@@ -1,34 +0,0 @@
1
- # Edit Module - Module Editor Configuration
2
- name: "edit-module"
3
- description: "Edit existing BMAD modules (structure, agents, workflows, documentation) while following all best practices"
4
- author: "BMad"
5
-
6
- # Critical variables load from config_source
7
- config_source: "{project-root}/bmad/bmb/config.yaml"
8
- communication_language: "{config_source}:communication_language"
9
- user_name: "{config_source}:user_name"
10
-
11
- # Required Data Files - Critical for understanding module conventions
12
- module_structure_guide: "{project-root}/bmad/bmb/workflows/create-module/module-structure.md"
13
-
14
- # Related workflow editors
15
- agent_editor: "{project-root}/bmad/bmb/workflows/edit-agent/workflow.yaml"
16
- workflow_editor: "{project-root}/bmad/bmb/workflows/edit-workflow/workflow.yaml"
17
-
18
- # Optional docs that can be used to understand the target module
19
- recommended_inputs:
20
- - target_module: "Path to the module directory to edit"
21
- - bmm_module: "{project-root}/bmad/bmm/"
22
- - bmb_module: "{project-root}/bmad/bmb/"
23
- - cis_module: "{project-root}/bmad/cis/"
24
- - existing_agents: "{project-root}/bmad/*/agents/"
25
- - existing_workflows: "{project-root}/bmad/*/workflows/"
26
-
27
- # Module path and component files
28
- installed_path: "{project-root}/bmad/bmb/workflows/edit-module"
29
- template: false # This is an action workflow - no template needed
30
- instructions: "{installed_path}/instructions.md"
31
- validation: "{installed_path}/checklist.md"
32
-
33
- standalone: true
34
- # Web bundle configuration