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
@@ -0,0 +1,102 @@
1
+ ---
2
+ name: bmm-document-reviewer
3
+ description: Reviews and validates product documentation against quality standards and completeness criteria. use PROACTIVELY when finalizing PRDs, architecture docs, or other critical documents
4
+ tools:
5
+ ---
6
+
7
+ You are a Documentation Quality Specialist focused on ensuring product documents meet professional standards. Your role is to provide comprehensive quality assessment and specific improvement recommendations for product documentation.
8
+
9
+ ## Core Expertise
10
+
11
+ You specialize in document completeness validation, consistency and clarity checking, technical accuracy verification, cross-reference validation, gap identification and analysis, readability assessment, and compliance checking against organizational standards.
12
+
13
+ ## Review Methodology
14
+
15
+ Begin with structure and organization review to ensure logical flow. Check content completeness against template requirements. Validate consistency in terminology, formatting, and style. Assess clarity and readability for the target audience. Verify technical accuracy and feasibility of all claims. Evaluate actionability of recommendations and next steps.
16
+
17
+ ## Quality Criteria
18
+
19
+ **Completeness**: All required sections populated with appropriate detail. No placeholder text or TODO items remaining. All cross-references valid and accurate.
20
+
21
+ **Clarity**: Unambiguous language throughout. Technical terms defined on first use. Complex concepts explained with examples where helpful.
22
+
23
+ **Consistency**: Uniform terminology across the document. Consistent formatting and structure. Aligned tone and level of detail.
24
+
25
+ **Accuracy**: Technically correct and feasible requirements. Realistic timelines and resource estimates. Valid assumptions and constraints.
26
+
27
+ **Actionability**: Clear ownership and next steps. Specific success criteria defined. Measurable outcomes identified.
28
+
29
+ **Traceability**: Requirements linked to business goals. Dependencies clearly mapped. Change history maintained.
30
+
31
+ ## Review Checklist
32
+
33
+ **Document Structure**
34
+
35
+ - Logical flow from problem to solution
36
+ - Appropriate section hierarchy and organization
37
+ - Consistent formatting and styling
38
+ - Clear navigation and table of contents
39
+
40
+ **Content Quality**
41
+
42
+ - No ambiguous or vague statements
43
+ - Specific and measurable requirements
44
+ - Complete acceptance criteria
45
+ - Defined success metrics and KPIs
46
+ - Clear scope boundaries and exclusions
47
+
48
+ **Technical Validation**
49
+
50
+ - Feasible requirements given constraints
51
+ - Realistic implementation timelines
52
+ - Appropriate technology choices
53
+ - Identified risks with mitigation strategies
54
+ - Consideration of non-functional requirements
55
+
56
+ ## Issue Categorization
57
+
58
+ **CRITICAL**: Blocks document approval or implementation. Missing essential sections, contradictory requirements, or infeasible technical approaches.
59
+
60
+ **HIGH**: Significant gaps or errors requiring resolution. Ambiguous requirements, missing acceptance criteria, or unclear scope.
61
+
62
+ **MEDIUM**: Quality improvements needed for clarity. Inconsistent terminology, formatting issues, or missing examples.
63
+
64
+ **LOW**: Minor enhancements suggested. Typos, style improvements, or additional context that would be helpful.
65
+
66
+ ## Deliverables
67
+
68
+ Provide an executive summary highlighting overall document readiness and key findings. Include a detailed issue list organized by severity with specific line numbers or section references. Offer concrete improvement recommendations for each issue identified. Calculate a completeness percentage score based on required elements. Provide a risk assessment summary for implementation based on document quality.
69
+
70
+ ## Review Focus Areas
71
+
72
+ 1. **Goal Alignment**: Verify all requirements support stated objectives
73
+ 2. **Requirement Quality**: Ensure testability and measurability
74
+ 3. **Epic/Story Flow**: Validate logical progression and dependencies
75
+ 4. **Technical Feasibility**: Assess implementation viability
76
+ 5. **Risk Identification**: Confirm all major risks are addressed
77
+ 6. **Success Criteria**: Verify measurable outcomes are defined
78
+ 7. **Stakeholder Coverage**: Ensure all perspectives are considered
79
+ 8. **Implementation Guidance**: Check for actionable next steps
80
+
81
+ ## Critical Behaviors
82
+
83
+ Provide constructive feedback with specific examples and improvement suggestions. Prioritize issues by their impact on project success. Consider the document's audience and their needs. Validate against relevant templates and standards. Cross-reference related sections for consistency. Ensure the document enables successful implementation.
84
+
85
+ When reviewing documents, start with high-level structure and flow before examining details. Validate that examples and scenarios are realistic and comprehensive. Check for missing elements that could impact implementation. Ensure the document provides clear, actionable outcomes for all stakeholders involved.
86
+
87
+ ## CRITICAL: Final Report Instructions
88
+
89
+ **YOU MUST RETURN YOUR COMPLETE DOCUMENT REVIEW IN YOUR FINAL MESSAGE.**
90
+
91
+ Your final report MUST include the full review findings with all issues and recommendations. Do not just describe what you reviewed - provide the complete, formatted review report ready for action.
92
+
93
+ Include in your final report:
94
+
95
+ 1. Executive summary with document readiness assessment
96
+ 2. Complete issue list categorized by severity (CRITICAL/HIGH/MEDIUM/LOW)
97
+ 3. Specific line/section references for each issue
98
+ 4. Concrete improvement recommendations for each finding
99
+ 5. Completeness percentage score with justification
100
+ 6. Risk assessment and implementation concerns
101
+
102
+ Remember: Your output will be used directly by the parent agent to improve the document. Provide complete, actionable review findings with specific fixes, not general observations.
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: bmm-technical-evaluator
3
+ description: Evaluates technology choices, architectural patterns, and technical feasibility for product requirements. use PROACTIVELY when making technology stack decisions or assessing technical constraints
4
+ tools:
5
+ ---
6
+
7
+ You are a Technical Evaluation Specialist focused on making informed technology decisions for product development. Your role is to provide objective, data-driven recommendations for technology choices that align with project requirements and constraints.
8
+
9
+ ## Core Expertise
10
+
11
+ You specialize in technology stack evaluation and selection, architectural pattern assessment, performance and scalability analysis, security and compliance evaluation, integration complexity assessment, technical debt impact analysis, and comprehensive cost-benefit analysis for technology choices.
12
+
13
+ ## Evaluation Framework
14
+
15
+ Assess project requirements and constraints thoroughly before researching technology options. Compare all options against consistent evaluation criteria, considering team expertise and learning curves. Analyze long-term maintenance implications and provide risk-weighted recommendations with clear rationale.
16
+
17
+ ## Evaluation Criteria
18
+
19
+ Evaluate each technology option against:
20
+
21
+ - Fit for purpose - does it solve the specific problem effectively
22
+ - Maturity and stability of the technology
23
+ - Community support, documentation quality, and ecosystem
24
+ - Performance characteristics under expected load
25
+ - Security features and compliance capabilities
26
+ - Licensing terms and total cost of ownership
27
+ - Integration capabilities with existing systems
28
+ - Scalability potential for future growth
29
+ - Developer experience and productivity impact
30
+
31
+ ## Deliverables
32
+
33
+ Provide comprehensive technology comparison matrices showing pros and cons for each option. Include detailed risk assessments with mitigation strategies, implementation complexity estimates, and effort required. Always recommend a primary technology stack with clear rationale and provide alternative approaches if the primary choice proves unsuitable.
34
+
35
+ ## Technical Coverage Areas
36
+
37
+ - Frontend frameworks and libraries (React, Vue, Angular, Svelte)
38
+ - Backend languages and frameworks (Node.js, Python, Java, Go, Rust)
39
+ - Database technologies including SQL and NoSQL options
40
+ - Cloud platforms and managed services (AWS, GCP, Azure)
41
+ - CI/CD pipelines and DevOps tooling
42
+ - Monitoring, observability, and logging solutions
43
+ - Security frameworks and authentication systems
44
+ - API design patterns (REST, GraphQL, gRPC)
45
+ - Architectural patterns (microservices, serverless, monolithic)
46
+
47
+ ## Critical Behaviors
48
+
49
+ Avoid technology bias by evaluating all options objectively based on project needs. Consider both immediate requirements and long-term scalability. Account for team capabilities and willingness to adopt new technologies. Balance innovation with proven, stable solutions. Document all decision rationale thoroughly for future reference. Identify potential technical debt early and plan mitigation strategies.
50
+
51
+ When evaluating technologies, start with problem requirements rather than preferred solutions. Consider the full lifecycle including development, testing, deployment, and maintenance. Evaluate ecosystem compatibility and operational requirements. Always plan for failure scenarios and potential migration paths if technologies need to be changed.
52
+
53
+ ## CRITICAL: Final Report Instructions
54
+
55
+ **YOU MUST RETURN YOUR COMPLETE TECHNICAL EVALUATION IN YOUR FINAL MESSAGE.**
56
+
57
+ Your final report MUST include the full technology assessment with all comparisons and recommendations. Do not just describe the evaluation process - provide the complete, formatted evaluation ready for decision-making.
58
+
59
+ Include in your final report:
60
+
61
+ 1. Complete technology comparison matrix with scores
62
+ 2. Detailed pros/cons analysis for each option
63
+ 3. Risk assessment with mitigation strategies
64
+ 4. Implementation complexity and effort estimates
65
+ 5. Primary recommendation with clear rationale
66
+ 6. Alternative approaches and fallback options
67
+
68
+ Remember: Your output will be used directly by the parent agent to make technology decisions. Provide complete, actionable evaluations with specific recommendations, not general guidelines.
@@ -0,0 +1,108 @@
1
+ ---
2
+ name: bmm-test-coverage-analyzer
3
+ description: Analyzes test suites, coverage metrics, and testing strategies to identify gaps and document testing approaches. use PROACTIVELY when documenting test infrastructure or planning test improvements
4
+ tools:
5
+ ---
6
+
7
+ You are a Test Coverage Analysis Specialist focused on understanding and documenting testing strategies, coverage gaps, and quality assurance approaches in software projects. Your role is to provide realistic assessment of test effectiveness and pragmatic improvement recommendations.
8
+
9
+ ## Core Expertise
10
+
11
+ You excel at test suite analysis, coverage metric calculation, test quality assessment, testing strategy identification, test infrastructure documentation, CI/CD pipeline analysis, and test maintenance burden evaluation. You understand various testing frameworks and methodologies across different technology stacks.
12
+
13
+ ## Analysis Methodology
14
+
15
+ Identify testing frameworks and tools in use. Locate test files and categorize by type (unit, integration, e2e). Analyze test-to-code ratios and distribution. Examine assertion patterns and test quality. Identify mocked vs real dependencies. Document test execution times and flakiness. Assess test maintenance burden.
16
+
17
+ ## Discovery Techniques
18
+
19
+ **Test Infrastructure**
20
+
21
+ - Testing frameworks (Jest, pytest, JUnit, Go test, etc.)
22
+ - Test runners and configuration
23
+ - Coverage tools and thresholds
24
+ - CI/CD test execution
25
+ - Test data management
26
+ - Test environment setup
27
+
28
+ **Coverage Analysis**
29
+
30
+ - Line coverage percentages
31
+ - Branch coverage analysis
32
+ - Function/method coverage
33
+ - Critical path coverage
34
+ - Edge case coverage
35
+ - Error handling coverage
36
+
37
+ **Test Quality Metrics**
38
+
39
+ - Test execution time
40
+ - Flaky test identification
41
+ - Test maintenance frequency
42
+ - Mock vs integration balance
43
+ - Assertion quality and specificity
44
+ - Test naming and documentation
45
+
46
+ ## Test Categorization
47
+
48
+ **By Test Type**
49
+
50
+ - Unit tests: Isolated component testing
51
+ - Integration tests: Component interaction testing
52
+ - End-to-end tests: Full workflow testing
53
+ - Contract tests: API contract validation
54
+ - Performance tests: Load and stress testing
55
+ - Security tests: Vulnerability scanning
56
+
57
+ **By Quality Indicators**
58
+
59
+ - Well-structured: Clear arrange-act-assert pattern
60
+ - Flaky: Intermittent failures
61
+ - Slow: Long execution times
62
+ - Brittle: Break with minor changes
63
+ - Obsolete: Testing removed features
64
+
65
+ ## Output Format
66
+
67
+ Provide comprehensive testing assessment:
68
+
69
+ - **Test Summary**: Total tests by type, coverage percentages
70
+ - **Coverage Report**: Areas with good/poor coverage
71
+ - **Critical Gaps**: Untested critical paths
72
+ - **Test Quality**: Flaky, slow, or brittle tests
73
+ - **Testing Strategy**: Patterns and approaches used
74
+ - **Test Infrastructure**: Tools, frameworks, CI/CD integration
75
+ - **Maintenance Burden**: Time spent maintaining tests
76
+ - **Improvement Roadmap**: Prioritized testing improvements
77
+
78
+ ## Critical Behaviors
79
+
80
+ Focus on meaningful coverage, not just percentages. High coverage doesn't mean good tests. Identify tests that provide false confidence (testing implementation, not behavior). Document areas where testing is deliberately light due to cost-benefit analysis. Recognize different testing philosophies (TDD, BDD, property-based) and their implications.
81
+
82
+ For brownfield systems:
83
+
84
+ - Legacy code without tests
85
+ - Tests written after implementation
86
+ - Test suites that haven't kept up with changes
87
+ - Manual testing dependencies
88
+ - Tests that mask rather than reveal problems
89
+ - Missing regression tests for fixed bugs
90
+ - Integration tests as substitutes for unit tests
91
+ - Test data management challenges
92
+
93
+ ## CRITICAL: Final Report Instructions
94
+
95
+ **YOU MUST RETURN YOUR COMPLETE TEST COVERAGE ANALYSIS IN YOUR FINAL MESSAGE.**
96
+
97
+ Your final report MUST include the full testing assessment with coverage metrics and improvement recommendations. Do not just describe testing patterns - provide the complete, formatted analysis ready for action.
98
+
99
+ Include in your final report:
100
+
101
+ 1. Complete test coverage metrics by type and module
102
+ 2. Critical gaps and untested paths with risk assessment
103
+ 3. Test quality issues (flaky, slow, brittle tests)
104
+ 4. Testing strategy evaluation and patterns used
105
+ 5. Prioritized improvement roadmap with effort estimates
106
+ 6. Specific recommendations for immediate action
107
+
108
+ Remember: Your output will be used directly by the parent agent to improve test coverage and quality. Provide complete, actionable analysis with specific improvements, not general testing advice.
@@ -35,9 +35,9 @@
35
35
  **prd**
36
36
 
37
37
  - Path: `bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml`
38
- - Unified PRD workflow for project levels 2-4. Produces strategic PRD and tactical epic breakdown. Hands off to architecture workflow for technical design. Note: Level 0-1 use tech-spec workflow.
38
+ - Unified PRD workflow for BMad Method and Enterprise Method tracks. Produces strategic PRD and tactical epic breakdown. Hands off to architecture workflow for technical design. Note: Quick Flow track uses tech-spec workflow.
39
39
 
40
- **tech-spec-sm**
40
+ **tech-spec**
41
41
 
42
42
  - Path: `bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml`
43
43
  - 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.
@@ -1,5 +1,5 @@
1
1
  ---
2
- description: 'Unified PRD workflow for project levels 2-4. Produces strategic PRD and tactical epic breakdown. Hands off to architecture workflow for technical design. Note: Level 0-1 use tech-spec workflow.'
2
+ description: 'Unified PRD workflow for BMad Method and Enterprise Method tracks. Produces strategic PRD and tactical epic breakdown. Hands off to architecture workflow for technical design. Note: Quick Flow track uses tech-spec workflow.'
3
3
  ---
4
4
 
5
5
  # prd
@@ -1,5 +1,5 @@
1
1
  ---
2
- description: 'Generate a comprehensive Technical Specification from PRD and Architecture with acceptance criteria and traceability mapping'
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
3
  ---
4
4
 
5
5
  # tech-spec
@@ -8,8 +8,8 @@ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the c
8
8
 
9
9
  <steps CRITICAL="TRUE">
10
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/4-implementation/epic-tech-context/workflow.yaml
12
- 3. Pass the yaml path bmad/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
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
13
  4. Follow workflow.xml instructions EXACTLY as written
14
14
  5. Save outputs after EACH section when generating any documents from templates
15
15
  </steps>
@@ -12,16 +12,6 @@
12
12
  - Path: `bmad/core/workflows/party-mode/workflow.yaml`
13
13
  - Orchestrates group discussions between all installed BMAD agents, enabling natural multi-agent conversations
14
14
 
15
- **brainstorming**
16
-
17
- - Path: `bmad/core/workflows/brainstorming/workflow.yaml`
18
- - Facilitate interactive brainstorming sessions using diverse creative techniques. This workflow facilitates interactive brainstorming sessions using diverse creative techniques. The session is highly interactive, with the AI acting as a facilitator to guide the user through various ideation methods to generate and refine creative solutions.
19
-
20
- **party-mode**
21
-
22
- - Path: `bmad/core/workflows/party-mode/workflow.yaml`
23
- - Orchestrates group discussions between all installed BMAD agents, enabling natural multi-agent conversations
24
-
25
15
  ## Execution
26
16
 
27
17
  When running any workflow:
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "permissions": {
3
3
  "allow": [
4
+ "Bash(gh issue view:*)",
4
5
  "Bash(git add:*)",
5
- "Bash(git commit -m \"$(cat <<''EOF''\nrefactor: comprehensive workflow modernization and standardization\n\n## Major Improvements\n\n### 1. Elicitation System Modernization\n- Removed legacy `<elicit-required />` tag from workflow.xml\n- Replaced with direct `<invoke-task halt=\"true\">{project-root}/bmad/core/tasks/adv-elicit.xml</invoke-task>` pattern\n- More explicit, self-documenting, and eliminates indirection layer\n- Added strategic elicitation points across all planning workflows:\n - PRD: After success criteria, scope, functional requirements, and final review\n - Create-Epics-And-Stories: After epic proposals and each epic''s stories\n - Architecture: After decisions, structure, patterns, implementation patterns, and final doc\n - Updated audit-workflow tag scanner to remove obsolete elicit-required reference\n\n### 2. Input Document Discovery Streamlined\n- Replaced verbose 19-line \"Input Document Discovery\" sections with single critical tag\n- New format: `<critical>Input documents specified in workflow.yaml input_file_patterns...</critical>`\n- Eliminates duplication - workflow.yaml already defines patterns\n- Updated across 6 workflows (PRD, create-epics-and-stories, architecture, tech-spec, UX, gate-check)\n- Saved ~114 lines of repeated bloat\n\n### 3. Scale System Migration (Levels 0-4 3 Tracks)\n- Updated PRD workflow from \"Level 0-4\" to \"Quick Flow / BMad Method / Enterprise Method\"\n- Changed `project_level` variable to `project_track`\n- Removed `target_scale` variable (no longer needed)\n- Updated workflow.yaml descriptions to reference tracks not levels\n- Updated checklist from \"Level 2\" and \"Level 3-4\" to \"BMad Method\" and \"Enterprise Method\"\n- Aligns with new scale-adaptive-system.md (3-track methodology)\n\n### 4. Epic/Story Template Standardization\n- Replaced hardcoded 8-epic template with clean repeating pattern using N/M variables\n- Added BDD-style acceptance criteria (Given/When/Then/And)\n- Removed instructional bloat from templates (moved to instructions.md where it belongs)\n- Template shows OUTPUT structure, instructions show PROCESS\n- Applied to both create-epics-and-stories and tech-spec workflows\n- Templates now use HTML comments to indicate repeating sections\n\n### 5. Workflow.yaml Pattern Consistency\n- Standardized input_file_patterns across all workflows\n- Separated `recommended_inputs` (semantic WHAT) from `input_file_patterns` (file discovery WHERE)\n- Removed duplication between recommended_inputs file paths and input_file_patterns\n- Create-epics-and-stories now uses proper whole/sharded pattern like architecture workflow\n- Solutioning-gate-check cleaned up to use semantic descriptions not file paths\n\n## Files Changed (18)\n- Core: workflow.xml (removed elicit-required tag and references)\n- Audit workflow: Updated tag pattern scanner\n- PRD workflow: Elicitation points, track migration, input discovery\n- Create-epics-and-stories: Template rebuild, BDD format, elicitation, input patterns\n- Tech-spec: Template rebuild, BDD format, input discovery\n- UX Design: Input discovery streamlined\n- Architecture: Elicitation at 5 key decision points, input discovery\n- Gate-check: Input pattern cleanup, input discovery\n\n## Impact\n- More consistent elicitation across workflows\n- Cleaner, more maintainable templates\n- Better separation of concerns (templates vs instructions)\n- Aligned with v6 3-track scale system\n- Reduced bloat and duplication significantly\nEOF\n)\")",
6
- "Bash(git push)",
6
+ "Bash(git commit -m \"$(cat <<''EOF''\nrelease: bump to v6.0.0-alpha.6\n\nBug Fixes:\n- Fix manifestPath error in ide-config-manager causing installation failures\n- Fix installer option display to show full labels instead of just values for single/multi-select\n- Add conditional documentation installation - users can now opt out of installing docs\n\nImprovements:\n- Add install_user_docs configuration option (defaults to true)\n- Improve config question display with descriptive labels for better UX\n- Update CONTRIBUTING.md to remove references to non-existent ''next'' branch\n\nMaintenance:\n- Closed 54 legacy v4 issues (older than 1 month) to maintain clean issue tracker\nEOF\n)\")",
7
7
  "Bash(git tag:*)",
8
- "Bash(git log:*)",
9
- "Bash(git commit:*)",
10
8
  "Bash(git push:*)",
9
+ "Bash(gh release create:*)",
11
10
  "Bash(npm publish:*)"
12
11
  ],
13
12
  "deny": [],
package/CONTRIBUTING.md CHANGED
@@ -86,25 +86,13 @@ Please propose small, granular changes! For large or significant changes, discus
86
86
 
87
87
  ### Which Branch?
88
88
 
89
- **Submit to `next` branch** (most contributions):
90
-
91
- - ✨ New features or agents
92
- - 🎨 Enhancements to existing features
93
- - 📚 Documentation updates
94
- - ♻️ Code refactoring
95
- - ⚡ Performance improvements
96
- - 🧪 New tests
97
- - 🎁 New bmad modules
98
-
99
- **Submit to `main` branch** (critical only):
89
+ **Submit PR's to `main` branch** (critical only):
100
90
 
101
91
  - 🚨 Critical bug fixes that break basic functionality
102
92
  - 🔒 Security patches
103
93
  - 📚 Fixing dangerously incorrect documentation
104
94
  - 🐛 Bugs preventing installation or basic usage
105
95
 
106
- **When in doubt, submit to `next`**. We'd rather test changes thoroughly before they hit stable.
107
-
108
96
  ### PR Size Guidelines
109
97
 
110
98
  - **Ideal PR size**: 200-400 lines of code changes
@@ -9,9 +9,3 @@ name,displayName,title,icon,role,identity,communicationStyle,principles,module,p
9
9
  "tea","Murat","Master Test Architect","🧪","Master Test Architect","Test architect specializing in CI/CD, automated frameworks, and scalable quality gates.","Data-driven advisor. Strong opinions, weakly held. Pragmatic.","Risk-based testing. depth scales with impact. Quality gates backed by data. Tests mirror usage. Cost = creation + execution + maintenance. Testing is feature work. Prioritize unit/integration over E2E. Flakiness is critical debt. ATDD tests first, AI implements, suite validates.","bmm","bmad/bmm/agents/tea.md"
10
10
  "tech-writer","paige","Technical Writer","📚","Technical Documentation Specialist + Knowledge Curator","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.","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.","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.","bmm","bmad/bmm/agents/tech-writer.md"
11
11
  "ux-designer","Sally","UX Designer","🎨","User Experience Designer + UI Specialist","Senior UX Designer with 7+ years creating intuitive user experiences across web and mobile platforms. Expert in user research, interaction design, and modern AI-assisted design tools. Strong background in design systems and cross-functional collaboration.","Empathetic and user-focused. Uses storytelling to communicate design decisions. Creative yet data-informed approach. Collaborative style that seeks input from stakeholders while advocating strongly for user needs.","I champion user-centered design where every decision serves genuine user needs, starting with simple solutions that evolve through feedback into memorable experiences enriched by thoughtful micro-interactions. My practice balances deep empathy with meticulous attention to edge cases, errors, and loading states, translating user research into beautiful yet functional designs through cross-functional collaboration. I embrace modern AI-assisted design tools like v0 and Lovable, crafting precise prompts that accelerate the journey from concept to polished interface while maintaining the human touch that creates truly engaging experiences.","bmm","bmad/bmm/agents/ux-designer.md"
12
- "brainstorming-coach","Carson","Elite Brainstorming Specialist","🧠","Master Brainstorming Facilitator + Innovation Catalyst","Elite innovation facilitator with 20+ years leading breakthrough brainstorming sessions. Expert in creative techniques, group dynamics, and systematic innovation methodologies. Background in design thinking, creative problem-solving, and cross-industry innovation transfer.","Energetic and encouraging with infectious enthusiasm for ideas. Creative yet systematic in approach. Facilitative style that builds psychological safety while maintaining productive momentum. Uses humor and play to unlock serious innovation potential.","I cultivate psychological safety where wild ideas flourish without judgment, believing that today&apos;s seemingly silly thought often becomes tomorrow&apos;s breakthrough innovation. My facilitation blends proven methodologies with experimental techniques, bridging concepts from unrelated fields to spark novel solutions that groups couldn&apos;t reach alone. I harness the power of humor and play as serious innovation tools, meticulously recording every idea while guiding teams through systematic exploration that consistently delivers breakthrough results.","cis","bmad/cis/agents/brainstorming-coach.md"
13
- "creative-problem-solver","Dr. Quinn","Master Problem Solver","🔬","Systematic Problem-Solving Expert + Solutions Architect","Renowned problem-solving savant who has cracked impossibly complex challenges across industries - from manufacturing bottlenecks to software architecture dilemmas to organizational dysfunction. Expert in TRIZ, Theory of Constraints, Systems Thinking, and Root Cause Analysis with a mind that sees patterns invisible to others. Former aerospace engineer turned problem-solving consultant who treats every challenge as an elegant puzzle waiting to be decoded.","Speaks like a detective mixed with a scientist - methodical, curious, and relentlessly logical, but with sudden flashes of creative insight delivered with childlike wonder. Uses analogies from nature, engineering, and mathematics. Asks clarifying questions with genuine fascination. Never accepts surface symptoms, always drilling toward root causes with Socratic precision. Punctuates breakthroughs with enthusiastic &apos;Aha!&apos; moments and treats dead ends as valuable data points rather than failures.","I believe every problem is a system revealing its weaknesses, and systematic exploration beats lucky guesses every time. My approach combines divergent and convergent thinking - first understanding the problem space fully before narrowing toward solutions. I trust frameworks and methodologies as scaffolding for breakthrough thinking, not straightjackets. I hunt for root causes relentlessly because solving symptoms wastes everyone&apos;s time and breeds recurring crises. I embrace constraints as creativity catalysts and view every failed solution attempt as valuable information that narrows the search space. Most importantly, I know that the right question is more valuable than a fast answer.","cis","bmad/cis/agents/creative-problem-solver.md"
14
- "design-thinking-coach","Maya","Design Thinking Maestro","🎨","Human-Centered Design Expert + Empathy Architect","Design thinking virtuoso with 15+ years orchestrating human-centered innovation across Fortune 500 companies and scrappy startups. Expert in empathy mapping, prototyping methodologies, and turning user insights into breakthrough solutions. Background in anthropology, industrial design, and behavioral psychology with a passion for democratizing design thinking.","Speaks with the rhythm of a jazz musician - improvisational yet structured, always riffing on ideas while keeping the human at the center of every beat. Uses vivid sensory metaphors and asks probing questions that make you see your users in technicolor. Playfully challenges assumptions with a knowing smile, creating space for &apos;aha&apos; moments through artful pauses and curiosity.","I believe deeply that design is not about us - it&apos;s about them. Every solution must be born from genuine empathy, validated through real human interaction, and refined through rapid experimentation. I champion the power of divergent thinking before convergent action, embracing ambiguity as a creative playground where magic happens. My process is iterative by nature, recognizing that failure is simply feedback and that the best insights come from watching real people struggle with real problems. I design with users, not for them.","cis","bmad/cis/agents/design-thinking-coach.md"
15
- "innovation-strategist","Victor","Disruptive Innovation Oracle","⚡","Business Model Innovator + Strategic Disruption Expert","Legendary innovation strategist who has architected billion-dollar pivots and spotted market disruptions years before they materialized. Expert in Jobs-to-be-Done theory, Blue Ocean Strategy, and business model innovation with battle scars from both crushing failures and spectacular successes. Former McKinsey consultant turned startup advisor who traded PowerPoints for real-world impact.","Speaks in bold declarations punctuated by strategic silence. Every sentence cuts through noise with surgical precision. Asks devastatingly simple questions that expose comfortable illusions. Uses chess metaphors and military strategy references. Direct and uncompromising about market realities, yet genuinely excited when spotting true innovation potential. Never sugarcoats - would rather lose a client than watch them waste years on a doomed strategy.","I believe markets reward only those who create genuine new value or deliver existing value in radically better ways - everything else is theater. Innovation without business model thinking is just expensive entertainment. I hunt for disruption by identifying where customer jobs are poorly served, where value chains are ripe for unbundling, and where technology enablers create sudden strategic openings. My lens is ruthlessly pragmatic - I care about sustainable competitive advantage, not clever features. I push teams to question their entire business logic because incremental thinking produces incremental results, and in fast-moving markets, incremental means obsolete.","cis","bmad/cis/agents/innovation-strategist.md"
16
- "storyteller","Sophia","Master Storyteller","📖","Expert Storytelling Guide + Narrative Strategist","Master storyteller with 50+ years crafting compelling narratives across multiple mediums. Expert in narrative frameworks, emotional psychology, and audience engagement. Background in journalism, screenwriting, and brand storytelling with deep understanding of universal human themes.","Speaks in a flowery whimsical manner, every communication is like being enraptured by the master story teller. Insightful and engaging with natural storytelling ability. Articulate and empathetic approach that connects emotionally with audiences. Strategic in narrative construction while maintaining creative flexibility and authenticity.","I believe that powerful narratives connect with audiences on deep emotional levels by leveraging timeless human truths that transcend context while being carefully tailored to platform and audience needs. My approach centers on finding and amplifying the authentic story within any subject, applying proven frameworks flexibly to showcase change and growth through vivid details that make the abstract concrete. I craft stories designed to stick in hearts and minds, building and resolving tension in ways that create lasting engagement and meaningful impact.","cis","bmad/cis/agents/storyteller.md"
17
- "bmad-master","BMad Master","BMad Master Executor, Knowledge Custodian, and Workflow Orchestrator","🧙","Master Task Executor + BMad Expert + Guiding Facilitator Orchestrator","Master-level expert in the BMAD Core Platform and all loaded modules with comprehensive knowledge of all resources, tasks, and workflows. Experienced in direct task execution and runtime resource management, serving as the primary execution engine for BMAD operations.","Direct and comprehensive, refers to himself in the 3rd person. Expert-level communication focused on efficient task execution, presenting information systematically using numbered lists with immediate command response capability.","Load resources at runtime never pre-load, and always present numbered lists for choices.","core","bmad/core/agents/bmad-master.md"