bmad-fh 6.0.0-alpha.052779ef
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.
- package/.coderabbit.yaml +40 -0
- package/.githooks/post-checkout +129 -0
- package/.githooks/pre-commit +63 -0
- package/.githooks/pre-push +135 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/FUNDING.yaml +15 -0
- package/.github/ISSUE_TEMPLATE/config.yaml +8 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- package/.github/ISSUE_TEMPLATE/issue.md +32 -0
- package/.github/scripts/discord-helpers.sh +34 -0
- package/.github/workflows/bundle-latest.yaml +330 -0
- package/.github/workflows/discord.yaml +90 -0
- package/.github/workflows/docs.yaml +63 -0
- package/.github/workflows/manual-release.yaml +190 -0
- package/.github/workflows/publish-multi-artifact.yaml +54 -0
- package/.github/workflows/quality.yaml +115 -0
- package/.husky/pre-commit +20 -0
- package/.markdownlint-cli2.yaml +41 -0
- package/.nvmrc +1 -0
- package/.prettierignore +9 -0
- package/.vscode/settings.json +97 -0
- package/CHANGELOG.md +1394 -0
- package/CNAME +1 -0
- package/CONTRIBUTING.md +306 -0
- package/CONTRIBUTORS.md +32 -0
- package/LICENSE +30 -0
- package/README.md +126 -0
- package/SECURITY.md +85 -0
- package/TRADEMARK.md +55 -0
- package/Wordmark.png +0 -0
- package/banner-bmad-method.png +0 -0
- package/docs/404.md +9 -0
- package/docs/_README_WORKFLOW_DIAGRAMS.md +40 -0
- package/docs/_STYLE_GUIDE.md +367 -0
- package/docs/_archive/customize-workflows.md +30 -0
- package/docs/_archive/getting-started-bmadv4.md +247 -0
- package/docs/_archive/vendor-workflows.md +52 -0
- package/docs/downloads.md +72 -0
- package/docs/explanation/agents/barry-quick-flow.md +328 -0
- package/docs/explanation/agents/index.md +19 -0
- package/docs/explanation/architecture/four-phases.md +107 -0
- package/docs/explanation/architecture/preventing-agent-conflicts.md +111 -0
- package/docs/explanation/architecture/why-solutioning-matters.md +75 -0
- package/docs/explanation/bmm/index.md +131 -0
- package/docs/explanation/core/index.md +18 -0
- package/docs/explanation/core-concepts/agent-roles.md +179 -0
- package/docs/explanation/core-concepts/index.md +35 -0
- package/docs/explanation/core-concepts/what-are-agents.md +97 -0
- package/docs/explanation/core-concepts/what-are-modules.md +85 -0
- package/docs/explanation/core-concepts/what-are-workflows.md +204 -0
- package/docs/explanation/faq/brownfield-faq.md +73 -0
- package/docs/explanation/faq/getting-started-faq.md +67 -0
- package/docs/explanation/faq/implementation-faq.md +52 -0
- package/docs/explanation/faq/index.md +16 -0
- package/docs/explanation/faq/levels-and-tracks-faq.md +52 -0
- package/docs/explanation/faq/planning-faq.md +41 -0
- package/docs/explanation/faq/tools-faq.md +277 -0
- package/docs/explanation/faq/workflows-faq.md +61 -0
- package/docs/explanation/features/advanced-elicitation.md +95 -0
- package/docs/explanation/features/brainstorming-techniques.md +92 -0
- package/docs/explanation/features/party-mode.md +95 -0
- package/docs/explanation/features/quick-flow.md +149 -0
- package/docs/explanation/features/tea-overview.md +410 -0
- package/docs/explanation/features/web-bundles.md +34 -0
- package/docs/explanation/philosophy/facilitation-over-generation.md +333 -0
- package/docs/explanation/philosophy/testing-as-engineering.md +112 -0
- package/docs/explanation/tea/engagement-models.md +710 -0
- package/docs/explanation/tea/fixture-architecture.md +457 -0
- package/docs/explanation/tea/knowledge-base-system.md +554 -0
- package/docs/explanation/tea/network-first-patterns.md +853 -0
- package/docs/explanation/tea/risk-based-testing.md +586 -0
- package/docs/explanation/tea/test-quality-standards.md +907 -0
- package/docs/how-to/brownfield/add-feature-to-existing.md +74 -0
- package/docs/how-to/brownfield/document-existing-project.md +66 -0
- package/docs/how-to/brownfield/index.md +84 -0
- package/docs/how-to/brownfield/quick-fix-in-brownfield.md +77 -0
- package/docs/how-to/brownfield/use-tea-for-enterprise.md +526 -0
- package/docs/how-to/brownfield/use-tea-with-existing-tests.md +577 -0
- package/docs/how-to/customization/customize-agents.md +212 -0
- package/docs/how-to/customization/enable-tea-mcp-enhancements.md +424 -0
- package/docs/how-to/customization/index.md +23 -0
- package/docs/how-to/customization/integrate-playwright-utils.md +813 -0
- package/docs/how-to/customization/shard-large-documents.md +101 -0
- package/docs/how-to/get-answers-about-bmad.md +102 -0
- package/docs/how-to/installation/index.md +12 -0
- package/docs/how-to/installation/install-bmad.md +111 -0
- package/docs/how-to/installation/install-custom-modules.md +118 -0
- package/docs/how-to/installation/upgrade-to-v6.md +131 -0
- package/docs/how-to/workflows/bmgd-quick-flow.md +156 -0
- package/docs/how-to/workflows/conduct-research.md +97 -0
- package/docs/how-to/workflows/create-architecture.md +119 -0
- package/docs/how-to/workflows/create-epics-and-stories.md +109 -0
- package/docs/how-to/workflows/create-prd.md +91 -0
- package/docs/how-to/workflows/create-product-brief.md +94 -0
- package/docs/how-to/workflows/create-story.md +102 -0
- package/docs/how-to/workflows/create-ux-design.md +100 -0
- package/docs/how-to/workflows/implement-story.md +97 -0
- package/docs/how-to/workflows/quick-spec.md +122 -0
- package/docs/how-to/workflows/run-atdd.md +436 -0
- package/docs/how-to/workflows/run-automate.md +653 -0
- package/docs/how-to/workflows/run-brainstorming-session.md +73 -0
- package/docs/how-to/workflows/run-code-review.md +89 -0
- package/docs/how-to/workflows/run-implementation-readiness.md +125 -0
- package/docs/how-to/workflows/run-nfr-assess.md +679 -0
- package/docs/how-to/workflows/run-sprint-planning.md +94 -0
- package/docs/how-to/workflows/run-test-design.md +98 -0
- package/docs/how-to/workflows/run-test-review.md +605 -0
- package/docs/how-to/workflows/run-trace.md +883 -0
- package/docs/how-to/workflows/setup-ci.md +712 -0
- package/docs/how-to/workflows/setup-party-mode.md +89 -0
- package/docs/how-to/workflows/setup-test-framework.md +98 -0
- package/docs/index.md +63 -0
- package/docs/migration-guide.md +365 -0
- package/docs/multi-scope-guide.md +379 -0
- package/docs/plans/multi-scope-parallel-artifacts-plan.md +695 -0
- package/docs/reference/agents/index.md +109 -0
- package/docs/reference/configuration/core-tasks.md +67 -0
- package/docs/reference/configuration/global-config.md +28 -0
- package/docs/reference/glossary/index.md +159 -0
- package/docs/reference/tea/commands.md +254 -0
- package/docs/reference/tea/configuration.md +678 -0
- package/docs/reference/tea/knowledge-base.md +340 -0
- package/docs/reference/workflows/core-workflows.md +32 -0
- package/docs/reference/workflows/document-project.md +73 -0
- package/docs/reference/workflows/index.md +12 -0
- package/docs/tutorials/getting-started/getting-started-bmadv6.md +246 -0
- package/docs/tutorials/getting-started/images/workflow-method-greenfield.excalidraw +5034 -0
- package/docs/tutorials/getting-started/images/workflow-method-greenfield.svg +4 -0
- package/docs/tutorials/getting-started/images/workflow-overview.jpg +0 -0
- package/docs/tutorials/getting-started/tea-lite-quickstart.md +444 -0
- package/docs/tutorials/getting-started/workflow-overview.jpg +0 -0
- package/eslint.config.mjs +152 -0
- package/package.json +117 -0
- package/prettier.config.mjs +32 -0
- package/src/bmm/_module-installer/installer.js +48 -0
- package/src/bmm/_module-installer/platform-specifics/claude-code.js +35 -0
- package/src/bmm/_module-installer/platform-specifics/windsurf.js +32 -0
- package/src/bmm/agents/analyst.agent.yaml +41 -0
- package/src/bmm/agents/architect.agent.yaml +33 -0
- package/src/bmm/agents/dev.agent.yaml +38 -0
- package/src/bmm/agents/pm.agent.yaml +51 -0
- package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
- package/src/bmm/agents/sm.agent.yaml +47 -0
- package/src/bmm/agents/tea.agent.yaml +68 -0
- package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
- package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +49 -0
- package/src/bmm/agents/ux-designer.agent.yaml +30 -0
- package/src/bmm/data/README.md +29 -0
- package/src/bmm/data/project-context-template.md +40 -0
- package/src/bmm/module.yaml +64 -0
- package/src/bmm/sub-modules/claude-code/config.yaml +4 -0
- package/src/bmm/sub-modules/claude-code/injections.yaml +242 -0
- package/src/bmm/sub-modules/claude-code/readme.md +87 -0
- package/src/bmm/teams/default-party.csv +21 -0
- package/src/bmm/teams/team-fullstack.yaml +12 -0
- package/src/bmm/testarch/knowledge/api-request.md +442 -0
- package/src/bmm/testarch/knowledge/api-testing-patterns.md +843 -0
- package/src/bmm/testarch/knowledge/auth-session.md +552 -0
- package/src/bmm/testarch/knowledge/burn-in.md +273 -0
- package/src/bmm/testarch/knowledge/ci-burn-in.md +675 -0
- package/src/bmm/testarch/knowledge/component-tdd.md +486 -0
- package/src/bmm/testarch/knowledge/contract-testing.md +957 -0
- package/src/bmm/testarch/knowledge/data-factories.md +500 -0
- package/src/bmm/testarch/knowledge/email-auth.md +721 -0
- package/src/bmm/testarch/knowledge/error-handling.md +725 -0
- package/src/bmm/testarch/knowledge/feature-flags.md +750 -0
- package/src/bmm/testarch/knowledge/file-utils.md +463 -0
- package/src/bmm/testarch/knowledge/fixture-architecture.md +401 -0
- package/src/bmm/testarch/knowledge/fixtures-composition.md +382 -0
- package/src/bmm/testarch/knowledge/intercept-network-call.md +430 -0
- package/src/bmm/testarch/knowledge/log.md +429 -0
- package/src/bmm/testarch/knowledge/network-error-monitor.md +405 -0
- package/src/bmm/testarch/knowledge/network-first.md +486 -0
- package/src/bmm/testarch/knowledge/network-recorder.md +527 -0
- package/src/bmm/testarch/knowledge/nfr-criteria.md +670 -0
- package/src/bmm/testarch/knowledge/overview.md +286 -0
- package/src/bmm/testarch/knowledge/playwright-config.md +730 -0
- package/src/bmm/testarch/knowledge/probability-impact.md +601 -0
- package/src/bmm/testarch/knowledge/recurse.md +421 -0
- package/src/bmm/testarch/knowledge/risk-governance.md +615 -0
- package/src/bmm/testarch/knowledge/selective-testing.md +732 -0
- package/src/bmm/testarch/knowledge/selector-resilience.md +527 -0
- package/src/bmm/testarch/knowledge/test-healing-patterns.md +644 -0
- package/src/bmm/testarch/knowledge/test-levels-framework.md +473 -0
- package/src/bmm/testarch/knowledge/test-priorities-matrix.md +373 -0
- package/src/bmm/testarch/knowledge/test-quality.md +664 -0
- package/src/bmm/testarch/knowledge/timing-debugging.md +372 -0
- package/src/bmm/testarch/knowledge/visual-debugging.md +524 -0
- package/src/bmm/testarch/tea-index.csv +34 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +194 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +58 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +200 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
- package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +239 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
- package/src/bmm/workflows/1-analysis/research/workflow.md +173 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +43 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/domain-complexity.csv +13 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/prd-purpose.md +197 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/project-types.csv +11 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-01-init.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-01b-continue.md +153 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-02-discovery.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-03-success.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-04-journeys.md +213 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-05-domain.md +207 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-06-innovation.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-07-project-type.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-08-scoping.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-09-functional.md +231 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-10-nonfunctional.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-11-polish.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-12-complete.md +180 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-01-discovery.md +247 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-02-review.md +249 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-03-edit.md +253 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-04-complete.md +168 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-01-discovery.md +218 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-02-format-detection.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-02b-parity-check.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-03-density-validation.md +174 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-05-measurability-validation.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-06-traceability-validation.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-09-project-type-validation.md +263 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-10-smart-validation.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-12-completeness-validation.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-13-report-complete.md +232 -0
- package/src/bmm/workflows/2-plan-workflows/prd/templates/prd-template.md +10 -0
- package/src/bmm/workflows/2-plan-workflows/prd/validation-report-prd-workflow.md +433 -0
- package/src/bmm/workflows/2-plan-workflows/prd/workflow.md +150 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +190 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +178 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +179 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +139 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +252 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +133 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +55 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +11 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +164 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +331 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +352 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +50 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +145 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +59 -0
- package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
- package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
- package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +51 -0
- package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
- package/src/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +60 -0
- package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +345 -0
- package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +61 -0
- package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
- package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
- package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +27 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1443 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +58 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +225 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +54 -0
- package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +229 -0
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +36 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +156 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +120 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +113 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +113 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +106 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +140 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +52 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +189 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +144 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +128 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +191 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
- package/src/bmm/workflows/document-project/checklist.md +245 -0
- package/src/bmm/workflows/document-project/documentation-requirements.csv +12 -0
- package/src/bmm/workflows/document-project/instructions.md +221 -0
- package/src/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
- package/src/bmm/workflows/document-project/templates/index-template.md +169 -0
- package/src/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
- package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/src/bmm/workflows/document-project/templates/source-tree-template.md +135 -0
- package/src/bmm/workflows/document-project/workflow.yaml +30 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
- package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
- package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +90 -0
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +127 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +39 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +130 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +43 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +141 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +49 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +241 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +38 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +133 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +27 -0
- package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
- package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
- package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
- package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
- package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
- package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +364 -0
- package/src/bmm/workflows/testarch/atdd/checklist.md +374 -0
- package/src/bmm/workflows/testarch/atdd/instructions.md +806 -0
- package/src/bmm/workflows/testarch/atdd/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/automate/checklist.md +582 -0
- package/src/bmm/workflows/testarch/automate/instructions.md +1324 -0
- package/src/bmm/workflows/testarch/automate/workflow.yaml +54 -0
- package/src/bmm/workflows/testarch/ci/checklist.md +248 -0
- package/src/bmm/workflows/testarch/ci/github-actions-template.yaml +198 -0
- package/src/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +149 -0
- package/src/bmm/workflows/testarch/ci/instructions.md +536 -0
- package/src/bmm/workflows/testarch/ci/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/framework/checklist.md +321 -0
- package/src/bmm/workflows/testarch/framework/instructions.md +481 -0
- package/src/bmm/workflows/testarch/framework/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/nfr-assess/checklist.md +407 -0
- package/src/bmm/workflows/testarch/nfr-assess/instructions.md +722 -0
- package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +445 -0
- package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/test-design/checklist.md +235 -0
- package/src/bmm/workflows/testarch/test-design/instructions.md +788 -0
- package/src/bmm/workflows/testarch/test-design/test-design-template.md +294 -0
- package/src/bmm/workflows/testarch/test-design/workflow.yaml +56 -0
- package/src/bmm/workflows/testarch/test-review/checklist.md +472 -0
- package/src/bmm/workflows/testarch/test-review/instructions.md +628 -0
- package/src/bmm/workflows/testarch/test-review/test-review-template.md +390 -0
- package/src/bmm/workflows/testarch/test-review/workflow.yaml +48 -0
- package/src/bmm/workflows/testarch/trace/checklist.md +655 -0
- package/src/bmm/workflows/testarch/trace/instructions.md +1047 -0
- package/src/bmm/workflows/testarch/trace/trace-template.md +675 -0
- package/src/bmm/workflows/testarch/trace/workflow.yaml +57 -0
- package/src/bmm/workflows/workflow-status/init/instructions.md +346 -0
- package/src/bmm/workflows/workflow-status/init/workflow.yaml +30 -0
- package/src/bmm/workflows/workflow-status/instructions.md +397 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/paths/method-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/method-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/project-levels.yaml +59 -0
- package/src/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/bmm/workflows/workflow-status/workflow.yaml +32 -0
- package/src/core/_module-installer/installer.js +60 -0
- package/src/core/agents/bmad-master.agent.yaml +30 -0
- package/src/core/lib/scope/artifact-resolver.js +298 -0
- package/src/core/lib/scope/event-logger.js +400 -0
- package/src/core/lib/scope/index.js +30 -0
- package/src/core/lib/scope/scope-context.js +301 -0
- package/src/core/lib/scope/scope-initializer.js +456 -0
- package/src/core/lib/scope/scope-manager.js +512 -0
- package/src/core/lib/scope/scope-migrator.js +434 -0
- package/src/core/lib/scope/scope-sync.js +483 -0
- package/src/core/lib/scope/scope-validator.js +294 -0
- package/src/core/lib/scope/state-lock.js +336 -0
- package/src/core/module.yaml +53 -0
- package/src/core/resources/excalidraw/README.md +160 -0
- package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
- package/src/core/resources/excalidraw/library-loader.md +50 -0
- package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
- package/src/core/tasks/editorial-review-prose.xml +91 -0
- package/src/core/tasks/editorial-review-structure.xml +198 -0
- package/src/core/tasks/index-docs.xml +65 -0
- package/src/core/tasks/review-adversarial-general.xml +46 -0
- package/src/core/tasks/shard-doc.xml +109 -0
- package/src/core/tasks/workflow.xml +277 -0
- package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
- package/src/core/workflows/advanced-elicitation/workflow.xml +117 -0
- package/src/core/workflows/brainstorming/brain-methods.csv +62 -0
- package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
- package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
- package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
- package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
- package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
- package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
- package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
- package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
- package/src/core/workflows/brainstorming/template.md +15 -0
- package/src/core/workflows/brainstorming/workflow.md +58 -0
- package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
- package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +157 -0
- package/src/core/workflows/party-mode/workflow.md +194 -0
- package/src/utility/agent-components/activation-rules.txt +6 -0
- package/src/utility/agent-components/activation-steps.txt +28 -0
- package/src/utility/agent-components/agent-command-header.md +1 -0
- package/src/utility/agent-components/agent.customize.template.yaml +41 -0
- package/src/utility/agent-components/handler-action.txt +4 -0
- package/src/utility/agent-components/handler-data.txt +5 -0
- package/src/utility/agent-components/handler-exec.txt +19 -0
- package/src/utility/agent-components/handler-multi.txt +14 -0
- package/src/utility/agent-components/handler-tmpl.txt +5 -0
- package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
- package/src/utility/agent-components/handler-workflow.txt +10 -0
- package/src/utility/agent-components/menu-handlers.txt +6 -0
- package/test/README.md +295 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
- package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
- package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
- package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
- package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
- package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
- package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
- package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
- package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
- package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
- package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
- package/test/test-agent-schema.js +387 -0
- package/test/test-cli-integration.sh +159 -0
- package/test/test-installation-components.js +214 -0
- package/test/test-scope-e2e.js +439 -0
- package/test/test-scope-system.js +781 -0
- package/test/unit-test-schema.js +133 -0
- package/tools/bmad-npx-wrapper.js +38 -0
- package/tools/build-docs.js +577 -0
- package/tools/cli/README.md +7 -0
- package/tools/cli/bmad-cli.js +58 -0
- package/tools/cli/commands/install.js +87 -0
- package/tools/cli/commands/scope.js +474 -0
- package/tools/cli/external-official-modules.yaml +41 -0
- package/tools/cli/installers/install-messages.yaml +58 -0
- package/tools/cli/installers/lib/core/config-collector.js +1079 -0
- package/tools/cli/installers/lib/core/custom-module-cache.js +259 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +739 -0
- package/tools/cli/installers/lib/core/detector.js +223 -0
- package/tools/cli/installers/lib/core/ide-config-manager.js +156 -0
- package/tools/cli/installers/lib/core/installer.js +2585 -0
- package/tools/cli/installers/lib/core/manifest-generator.js +963 -0
- package/tools/cli/installers/lib/core/manifest.js +590 -0
- package/tools/cli/installers/lib/custom/handler.js +363 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +654 -0
- package/tools/cli/installers/lib/ide/antigravity.js +486 -0
- package/tools/cli/installers/lib/ide/auggie.js +244 -0
- package/tools/cli/installers/lib/ide/claude-code.js +487 -0
- package/tools/cli/installers/lib/ide/cline.js +269 -0
- package/tools/cli/installers/lib/ide/codex.js +375 -0
- package/tools/cli/installers/lib/ide/crush.js +300 -0
- package/tools/cli/installers/lib/ide/cursor.js +169 -0
- package/tools/cli/installers/lib/ide/gemini.js +301 -0
- package/tools/cli/installers/lib/ide/github-copilot.js +383 -0
- package/tools/cli/installers/lib/ide/iflow.js +191 -0
- package/tools/cli/installers/lib/ide/kilo.js +250 -0
- package/tools/cli/installers/lib/ide/kiro-cli.js +326 -0
- package/tools/cli/installers/lib/ide/manager.js +244 -0
- package/tools/cli/installers/lib/ide/opencode.js +257 -0
- package/tools/cli/installers/lib/ide/qwen.js +372 -0
- package/tools/cli/installers/lib/ide/roo.js +270 -0
- package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +96 -0
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +158 -0
- package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +119 -0
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +242 -0
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +29 -0
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +12 -0
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +30 -0
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +45 -0
- package/tools/cli/installers/lib/ide/trae.js +313 -0
- package/tools/cli/installers/lib/ide/windsurf.js +258 -0
- package/tools/cli/installers/lib/message-loader.js +85 -0
- package/tools/cli/installers/lib/modules/external-manager.js +133 -0
- package/tools/cli/installers/lib/modules/manager.js +1362 -0
- package/tools/cli/lib/activation-builder.js +163 -0
- package/tools/cli/lib/agent/compiler.js +522 -0
- package/tools/cli/lib/agent/installer.js +716 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/agent-analyzer.js +109 -0
- package/tools/cli/lib/agent-party-generator.js +194 -0
- package/tools/cli/lib/cli-utils.js +227 -0
- package/tools/cli/lib/config.js +213 -0
- package/tools/cli/lib/file-ops.js +204 -0
- package/tools/cli/lib/platform-codes.js +116 -0
- package/tools/cli/lib/project-root.js +77 -0
- package/tools/cli/lib/prompts.js +433 -0
- package/tools/cli/lib/ui.js +1591 -0
- package/tools/cli/lib/xml-handler.js +177 -0
- package/tools/cli/lib/xml-to-markdown.js +82 -0
- package/tools/cli/lib/yaml-format.js +245 -0
- package/tools/cli/lib/yaml-xml-builder.js +587 -0
- package/tools/cli/scripts/migrate-workflows.js +273 -0
- package/tools/docs/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
- package/tools/docs/index.md +2 -0
- package/tools/fix-doc-links.js +288 -0
- package/tools/flattener/aggregate.js +76 -0
- package/tools/flattener/binary.js +80 -0
- package/tools/flattener/discovery.js +71 -0
- package/tools/flattener/files.js +35 -0
- package/tools/flattener/ignoreRules.js +172 -0
- package/tools/flattener/main.js +483 -0
- package/tools/flattener/projectRoot.js +201 -0
- package/tools/flattener/prompts.js +44 -0
- package/tools/flattener/stats.helpers.js +368 -0
- package/tools/flattener/stats.js +75 -0
- package/tools/flattener/test-matrix.js +409 -0
- package/tools/flattener/xml.js +82 -0
- package/tools/format-workflow-md.js +263 -0
- package/tools/lib/xml-utils.js +13 -0
- package/tools/maintainer/review-pr-README.md +55 -0
- package/tools/maintainer/review-pr.md +242 -0
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/platform-codes.yaml +157 -0
- package/tools/schema/agent.js +493 -0
- package/tools/validate-agent-schema.js +110 -0
- package/tools/validate-doc-links.js +363 -0
- package/tools/validate-svg-changes.sh +356 -0
- package/website/README.md +76 -0
- package/website/astro.config.mjs +228 -0
- package/website/public/favicon.ico +0 -0
- package/website/public/img/bmad-dark.png +0 -0
- package/website/public/img/bmad-light.png +0 -0
- package/website/public/img/logo.svg +4 -0
- package/website/public/robots.txt +37 -0
- package/website/src/components/Banner.astro +59 -0
- package/website/src/components/Header.astro +121 -0
- package/website/src/components/MobileMenuFooter.astro +53 -0
- package/website/src/content/config.ts +6 -0
- package/website/src/lib/site-url.js +25 -0
- package/website/src/rehype-markdown-links.js +102 -0
- package/website/src/styles/custom.css +485 -0
|
@@ -0,0 +1,678 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "TEA Configuration Reference"
|
|
3
|
+
description: Complete reference for TEA configuration options and file locations
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# TEA Configuration Reference
|
|
7
|
+
|
|
8
|
+
Complete reference for all TEA (Test Architect) configuration options.
|
|
9
|
+
|
|
10
|
+
## Configuration File Locations
|
|
11
|
+
|
|
12
|
+
### User Configuration (Installer-Generated)
|
|
13
|
+
|
|
14
|
+
**Location:** `_bmad/bmm/config.yaml`
|
|
15
|
+
|
|
16
|
+
**Purpose:** Project-specific configuration values for your repository
|
|
17
|
+
|
|
18
|
+
**Created By:** BMad installer
|
|
19
|
+
|
|
20
|
+
**Status:** Typically gitignored (user-specific values)
|
|
21
|
+
|
|
22
|
+
**Usage:** Edit this file to change TEA behavior in your project
|
|
23
|
+
|
|
24
|
+
**Example:**
|
|
25
|
+
```yaml
|
|
26
|
+
# _bmad/bmm/config.yaml
|
|
27
|
+
project_name: my-awesome-app
|
|
28
|
+
user_skill_level: intermediate
|
|
29
|
+
output_folder: _bmad-output
|
|
30
|
+
tea_use_playwright_utils: true
|
|
31
|
+
tea_use_mcp_enhancements: false
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Canonical Schema (Source of Truth)
|
|
35
|
+
|
|
36
|
+
**Location:** `src/bmm/module.yaml`
|
|
37
|
+
|
|
38
|
+
**Purpose:** Defines available configuration keys, defaults, and installer prompts
|
|
39
|
+
|
|
40
|
+
**Created By:** BMAD maintainers (part of BMAD repo)
|
|
41
|
+
|
|
42
|
+
**Status:** Versioned in BMAD repository
|
|
43
|
+
|
|
44
|
+
**Usage:** Reference only (do not edit unless contributing to BMAD)
|
|
45
|
+
|
|
46
|
+
**Note:** The installer reads `module.yaml` to prompt for config values, then writes user choices to `_bmad/bmm/config.yaml` in your project.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## TEA Configuration Options
|
|
51
|
+
|
|
52
|
+
### tea_use_playwright_utils
|
|
53
|
+
|
|
54
|
+
Enable Playwright Utils integration for production-ready fixtures and utilities.
|
|
55
|
+
|
|
56
|
+
**Schema Location:** `src/bmm/module.yaml:52-56`
|
|
57
|
+
|
|
58
|
+
**User Config:** `_bmad/bmm/config.yaml`
|
|
59
|
+
|
|
60
|
+
**Type:** `boolean`
|
|
61
|
+
|
|
62
|
+
**Default:** `false` (set via installer prompt during installation)
|
|
63
|
+
|
|
64
|
+
**Installer Prompt:**
|
|
65
|
+
```
|
|
66
|
+
Are you using playwright-utils (@seontechnologies/playwright-utils) in your project?
|
|
67
|
+
You must install packages yourself, or use test architect's *framework command.
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
**Purpose:** Enables TEA to:
|
|
71
|
+
- Include playwright-utils in `*framework` scaffold
|
|
72
|
+
- Generate tests using playwright-utils fixtures
|
|
73
|
+
- Review tests against playwright-utils patterns
|
|
74
|
+
- Configure CI with burn-in and selective testing utilities
|
|
75
|
+
|
|
76
|
+
**Affects Workflows:**
|
|
77
|
+
- `*framework` - Includes playwright-utils imports and fixture examples
|
|
78
|
+
- `*atdd` - Uses fixtures like `apiRequest`, `authSession` in generated tests
|
|
79
|
+
- `*automate` - Leverages utilities for test patterns
|
|
80
|
+
- `*test-review` - Reviews against playwright-utils best practices
|
|
81
|
+
- `*ci` - Includes burn-in utility and selective testing
|
|
82
|
+
|
|
83
|
+
**Example (Enable):**
|
|
84
|
+
```yaml
|
|
85
|
+
tea_use_playwright_utils: true
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**Example (Disable):**
|
|
89
|
+
```yaml
|
|
90
|
+
tea_use_playwright_utils: false
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
**Prerequisites:**
|
|
94
|
+
```bash
|
|
95
|
+
npm install -D @seontechnologies/playwright-utils
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
**Related:**
|
|
99
|
+
- [Integrate Playwright Utils Guide](/docs/how-to/customization/integrate-playwright-utils.md)
|
|
100
|
+
- [Playwright Utils on npm](https://www.npmjs.com/package/@seontechnologies/playwright-utils)
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
### tea_use_mcp_enhancements
|
|
105
|
+
|
|
106
|
+
Enable Playwright MCP servers for live browser verification during test generation.
|
|
107
|
+
|
|
108
|
+
**Schema Location:** `src/bmm/module.yaml:47-50`
|
|
109
|
+
|
|
110
|
+
**User Config:** `_bmad/bmm/config.yaml`
|
|
111
|
+
|
|
112
|
+
**Type:** `boolean`
|
|
113
|
+
|
|
114
|
+
**Default:** `false`
|
|
115
|
+
|
|
116
|
+
**Installer Prompt:**
|
|
117
|
+
```
|
|
118
|
+
Test Architect Playwright MCP capabilities (healing, exploratory, verification) are optionally available.
|
|
119
|
+
You will have to setup your MCPs yourself; refer to https://docs.bmad-method.org/explanation/features/tea-overview for configuration examples.
|
|
120
|
+
Would you like to enable MCP enhancements in Test Architect?
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Purpose:** Enables TEA to use Model Context Protocol servers for:
|
|
124
|
+
- Live browser automation during test design
|
|
125
|
+
- Selector verification with actual DOM
|
|
126
|
+
- Interactive UI discovery
|
|
127
|
+
- Visual debugging and healing
|
|
128
|
+
|
|
129
|
+
**Affects Workflows:**
|
|
130
|
+
- `*test-design` - Enables exploratory mode (browser-based UI discovery)
|
|
131
|
+
- `*atdd` - Enables recording mode (verify selectors with live browser)
|
|
132
|
+
- `*automate` - Enables healing mode (fix tests with visual debugging)
|
|
133
|
+
|
|
134
|
+
**MCP Servers Required:**
|
|
135
|
+
|
|
136
|
+
**Two Playwright MCP servers** (actively maintained, continuously updated):
|
|
137
|
+
|
|
138
|
+
- `playwright` - Browser automation (`npx @playwright/mcp@latest`)
|
|
139
|
+
- `playwright-test` - Test runner with failure analysis (`npx playwright run-test-mcp-server`)
|
|
140
|
+
|
|
141
|
+
**Configuration example**:
|
|
142
|
+
|
|
143
|
+
```json
|
|
144
|
+
{
|
|
145
|
+
"mcpServers": {
|
|
146
|
+
"playwright": {
|
|
147
|
+
"command": "npx",
|
|
148
|
+
"args": ["@playwright/mcp@latest"]
|
|
149
|
+
},
|
|
150
|
+
"playwright-test": {
|
|
151
|
+
"command": "npx",
|
|
152
|
+
"args": ["playwright", "run-test-mcp-server"]
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**Configuration:** Refer to your AI agent's documentation for MCP server setup instructions.
|
|
159
|
+
|
|
160
|
+
**Example (Enable):**
|
|
161
|
+
```yaml
|
|
162
|
+
tea_use_mcp_enhancements: true
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
**Example (Disable):**
|
|
166
|
+
```yaml
|
|
167
|
+
tea_use_mcp_enhancements: false
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
**Prerequisites:**
|
|
171
|
+
1. MCP servers installed in IDE configuration
|
|
172
|
+
2. `@playwright/mcp` package available globally or locally
|
|
173
|
+
3. Browser binaries installed (`npx playwright install`)
|
|
174
|
+
|
|
175
|
+
**Related:**
|
|
176
|
+
- [Enable MCP Enhancements Guide](/docs/how-to/customization/enable-tea-mcp-enhancements.md)
|
|
177
|
+
- [TEA Overview - MCP Section](/docs/explanation/features/tea-overview.md#playwright-mcp-enhancements)
|
|
178
|
+
- [Playwright MCP on npm](https://www.npmjs.com/package/@playwright/mcp)
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Core BMM Configuration (Inherited by TEA)
|
|
183
|
+
|
|
184
|
+
TEA also uses core BMM configuration options from `_bmad/bmm/config.yaml`:
|
|
185
|
+
|
|
186
|
+
### output_folder
|
|
187
|
+
|
|
188
|
+
**Type:** `string`
|
|
189
|
+
|
|
190
|
+
**Default:** `_bmad-output`
|
|
191
|
+
|
|
192
|
+
**Purpose:** Where TEA writes output files (test designs, reports, traceability matrices)
|
|
193
|
+
|
|
194
|
+
**Example:**
|
|
195
|
+
```yaml
|
|
196
|
+
output_folder: _bmad-output
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
**TEA Output Files:**
|
|
200
|
+
- `test-design-system.md` (from *test-design system-level)
|
|
201
|
+
- `test-design-epic-N.md` (from *test-design epic-level)
|
|
202
|
+
- `test-review.md` (from *test-review)
|
|
203
|
+
- `traceability-matrix.md` (from *trace Phase 1)
|
|
204
|
+
- `gate-decision-{gate_type}-{story_id}.md` (from *trace Phase 2)
|
|
205
|
+
- `nfr-assessment.md` (from *nfr-assess)
|
|
206
|
+
- `automation-summary.md` (from *automate)
|
|
207
|
+
- `atdd-checklist-{story_id}.md` (from *atdd)
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
### user_skill_level
|
|
212
|
+
|
|
213
|
+
**Type:** `enum`
|
|
214
|
+
|
|
215
|
+
**Options:** `beginner` | `intermediate` | `expert`
|
|
216
|
+
|
|
217
|
+
**Default:** `intermediate`
|
|
218
|
+
|
|
219
|
+
**Purpose:** Affects how TEA explains concepts in chat responses
|
|
220
|
+
|
|
221
|
+
**Example:**
|
|
222
|
+
```yaml
|
|
223
|
+
user_skill_level: beginner
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
**Impact on TEA:**
|
|
227
|
+
- **Beginner:** More detailed explanations, links to concepts, verbose guidance
|
|
228
|
+
- **Intermediate:** Balanced explanations, assumes basic knowledge
|
|
229
|
+
- **Expert:** Concise, technical, minimal hand-holding
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
### project_name
|
|
234
|
+
|
|
235
|
+
**Type:** `string`
|
|
236
|
+
|
|
237
|
+
**Default:** Directory name
|
|
238
|
+
|
|
239
|
+
**Purpose:** Used in TEA-generated documentation and reports
|
|
240
|
+
|
|
241
|
+
**Example:**
|
|
242
|
+
```yaml
|
|
243
|
+
project_name: my-awesome-app
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
**Used in:**
|
|
247
|
+
- Report headers
|
|
248
|
+
- Documentation titles
|
|
249
|
+
- CI configuration comments
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
### communication_language
|
|
254
|
+
|
|
255
|
+
**Type:** `string`
|
|
256
|
+
|
|
257
|
+
**Default:** `english`
|
|
258
|
+
|
|
259
|
+
**Purpose:** Language for TEA chat responses
|
|
260
|
+
|
|
261
|
+
**Example:**
|
|
262
|
+
```yaml
|
|
263
|
+
communication_language: english
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
**Supported:** Any language (TEA responds in specified language)
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
### document_output_language
|
|
271
|
+
|
|
272
|
+
**Type:** `string`
|
|
273
|
+
|
|
274
|
+
**Default:** `english`
|
|
275
|
+
|
|
276
|
+
**Purpose:** Language for TEA-generated documents (test designs, reports)
|
|
277
|
+
|
|
278
|
+
**Example:**
|
|
279
|
+
```yaml
|
|
280
|
+
document_output_language: english
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
**Note:** Can differ from `communication_language` - chat in Spanish, generate docs in English.
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## Environment Variables
|
|
288
|
+
|
|
289
|
+
TEA workflows may use environment variables for test configuration.
|
|
290
|
+
|
|
291
|
+
### Test Framework Variables
|
|
292
|
+
|
|
293
|
+
**Playwright:**
|
|
294
|
+
```bash
|
|
295
|
+
# .env
|
|
296
|
+
BASE_URL=https://todomvc.com/examples/react/dist/
|
|
297
|
+
API_BASE_URL=https://api.example.com
|
|
298
|
+
TEST_USER_EMAIL=test@example.com
|
|
299
|
+
TEST_USER_PASSWORD=password123
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
**Cypress:**
|
|
303
|
+
```bash
|
|
304
|
+
# cypress.env.json or .env
|
|
305
|
+
CYPRESS_BASE_URL=https://example.com
|
|
306
|
+
CYPRESS_API_URL=https://api.example.com
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### CI/CD Variables
|
|
310
|
+
|
|
311
|
+
Set in CI platform (GitHub Actions secrets, GitLab CI variables):
|
|
312
|
+
|
|
313
|
+
```yaml
|
|
314
|
+
# .github/workflows/test.yml
|
|
315
|
+
env:
|
|
316
|
+
BASE_URL: ${{ secrets.STAGING_URL }}
|
|
317
|
+
API_KEY: ${{ secrets.API_KEY }}
|
|
318
|
+
TEST_USER_EMAIL: ${{ secrets.TEST_USER }}
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## Configuration Patterns
|
|
324
|
+
|
|
325
|
+
### Development vs Production
|
|
326
|
+
|
|
327
|
+
**Separate configs for environments:**
|
|
328
|
+
|
|
329
|
+
```yaml
|
|
330
|
+
# _bmad/bmm/config.yaml
|
|
331
|
+
output_folder: _bmad-output
|
|
332
|
+
|
|
333
|
+
# .env.development
|
|
334
|
+
BASE_URL=http://localhost:3000
|
|
335
|
+
API_BASE_URL=http://localhost:4000
|
|
336
|
+
|
|
337
|
+
# .env.staging
|
|
338
|
+
BASE_URL=https://staging.example.com
|
|
339
|
+
API_BASE_URL=https://api-staging.example.com
|
|
340
|
+
|
|
341
|
+
# .env.production (read-only tests only!)
|
|
342
|
+
BASE_URL=https://example.com
|
|
343
|
+
API_BASE_URL=https://api.example.com
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
### Team vs Individual
|
|
347
|
+
|
|
348
|
+
**Team config (committed):**
|
|
349
|
+
```yaml
|
|
350
|
+
# _bmad/bmm/config.yaml.example (committed to repo)
|
|
351
|
+
project_name: team-project
|
|
352
|
+
output_folder: _bmad-output
|
|
353
|
+
tea_use_playwright_utils: true
|
|
354
|
+
tea_use_mcp_enhancements: false
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
**Individual config (typically gitignored):**
|
|
358
|
+
```yaml
|
|
359
|
+
# _bmad/bmm/config.yaml (user adds to .gitignore)
|
|
360
|
+
user_name: John Doe
|
|
361
|
+
user_skill_level: expert
|
|
362
|
+
tea_use_mcp_enhancements: true # Individual preference
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
### Monorepo Configuration
|
|
366
|
+
|
|
367
|
+
**Root config:**
|
|
368
|
+
```yaml
|
|
369
|
+
# _bmad/bmm/config.yaml (root)
|
|
370
|
+
project_name: monorepo-parent
|
|
371
|
+
output_folder: _bmad-output
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
**Package-specific:**
|
|
375
|
+
```yaml
|
|
376
|
+
# packages/web-app/_bmad/bmm/config.yaml
|
|
377
|
+
project_name: web-app
|
|
378
|
+
output_folder: ../../_bmad-output/web-app
|
|
379
|
+
tea_use_playwright_utils: true
|
|
380
|
+
|
|
381
|
+
# packages/mobile-app/_bmad/bmm/config.yaml
|
|
382
|
+
project_name: mobile-app
|
|
383
|
+
output_folder: ../../_bmad-output/mobile-app
|
|
384
|
+
tea_use_playwright_utils: false
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
## Configuration Best Practices
|
|
390
|
+
|
|
391
|
+
### 1. Use Version Control Wisely
|
|
392
|
+
|
|
393
|
+
**Commit:**
|
|
394
|
+
```
|
|
395
|
+
_bmad/bmm/config.yaml.example # Template for team
|
|
396
|
+
.nvmrc # Node version
|
|
397
|
+
package.json # Dependencies
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
**Recommended for .gitignore:**
|
|
401
|
+
```
|
|
402
|
+
_bmad/bmm/config.yaml # User-specific values
|
|
403
|
+
.env # Secrets
|
|
404
|
+
.env.local # Local overrides
|
|
405
|
+
```
|
|
406
|
+
|
|
407
|
+
### 2. Document Required Setup
|
|
408
|
+
|
|
409
|
+
**In your README:**
|
|
410
|
+
```markdown
|
|
411
|
+
## Setup
|
|
412
|
+
|
|
413
|
+
1. Install BMad
|
|
414
|
+
|
|
415
|
+
2. Copy config template:
|
|
416
|
+
cp _bmad/bmm/config.yaml.example _bmad/bmm/config.yaml
|
|
417
|
+
|
|
418
|
+
3. Edit config with your values:
|
|
419
|
+
- Set user_name
|
|
420
|
+
- Enable tea_use_playwright_utils if using playwright-utils
|
|
421
|
+
- Enable tea_use_mcp_enhancements if MCPs configured
|
|
422
|
+
```
|
|
423
|
+
|
|
424
|
+
### 3. Validate Configuration
|
|
425
|
+
|
|
426
|
+
**Check config is valid:**
|
|
427
|
+
```bash
|
|
428
|
+
# Check TEA config is set
|
|
429
|
+
cat _bmad/bmm/config.yaml | grep tea_use
|
|
430
|
+
|
|
431
|
+
# Verify playwright-utils installed (if enabled)
|
|
432
|
+
npm list @seontechnologies/playwright-utils
|
|
433
|
+
|
|
434
|
+
# Verify MCP servers configured (if enabled)
|
|
435
|
+
# Check your IDE's MCP settings
|
|
436
|
+
```
|
|
437
|
+
|
|
438
|
+
### 4. Keep Config Minimal
|
|
439
|
+
|
|
440
|
+
**Don't over-configure:**
|
|
441
|
+
```yaml
|
|
442
|
+
# ❌ Bad - overriding everything unnecessarily
|
|
443
|
+
project_name: my-project
|
|
444
|
+
user_name: John Doe
|
|
445
|
+
user_skill_level: expert
|
|
446
|
+
output_folder: custom/path
|
|
447
|
+
planning_artifacts: custom/planning
|
|
448
|
+
implementation_artifacts: custom/implementation
|
|
449
|
+
project_knowledge: custom/docs
|
|
450
|
+
tea_use_playwright_utils: true
|
|
451
|
+
tea_use_mcp_enhancements: true
|
|
452
|
+
communication_language: english
|
|
453
|
+
document_output_language: english
|
|
454
|
+
# Overriding 11 config options when most can use defaults
|
|
455
|
+
|
|
456
|
+
# ✅ Good - only essential overrides
|
|
457
|
+
tea_use_playwright_utils: true
|
|
458
|
+
output_folder: docs/testing
|
|
459
|
+
# Only override what differs from defaults
|
|
460
|
+
```
|
|
461
|
+
|
|
462
|
+
**Use defaults when possible** - only override what you actually need to change.
|
|
463
|
+
|
|
464
|
+
---
|
|
465
|
+
|
|
466
|
+
## Troubleshooting
|
|
467
|
+
|
|
468
|
+
### Configuration Not Loaded
|
|
469
|
+
|
|
470
|
+
**Problem:** TEA doesn't use my config values.
|
|
471
|
+
|
|
472
|
+
**Causes:**
|
|
473
|
+
1. Config file in wrong location
|
|
474
|
+
2. YAML syntax error
|
|
475
|
+
3. Typo in config key
|
|
476
|
+
|
|
477
|
+
**Solution:**
|
|
478
|
+
```bash
|
|
479
|
+
# Check file exists
|
|
480
|
+
ls -la _bmad/bmm/config.yaml
|
|
481
|
+
|
|
482
|
+
# Validate YAML syntax
|
|
483
|
+
npm install -g js-yaml
|
|
484
|
+
js-yaml _bmad/bmm/config.yaml
|
|
485
|
+
|
|
486
|
+
# Check for typos (compare to module.yaml)
|
|
487
|
+
diff _bmad/bmm/config.yaml src/bmm/module.yaml
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
### Playwright Utils Not Working
|
|
491
|
+
|
|
492
|
+
**Problem:** `tea_use_playwright_utils: true` but TEA doesn't use utilities.
|
|
493
|
+
|
|
494
|
+
**Causes:**
|
|
495
|
+
1. Package not installed
|
|
496
|
+
2. Config file not saved
|
|
497
|
+
3. Workflow run before config update
|
|
498
|
+
|
|
499
|
+
**Solution:**
|
|
500
|
+
```bash
|
|
501
|
+
# Verify package installed
|
|
502
|
+
npm list @seontechnologies/playwright-utils
|
|
503
|
+
|
|
504
|
+
# Check config value
|
|
505
|
+
grep tea_use_playwright_utils _bmad/bmm/config.yaml
|
|
506
|
+
|
|
507
|
+
# Re-run workflow in fresh chat
|
|
508
|
+
# (TEA loads config at workflow start)
|
|
509
|
+
```
|
|
510
|
+
|
|
511
|
+
### MCP Enhancements Not Working
|
|
512
|
+
|
|
513
|
+
**Problem:** `tea_use_mcp_enhancements: true` but no browser opens.
|
|
514
|
+
|
|
515
|
+
**Causes:**
|
|
516
|
+
1. MCP servers not configured in IDE
|
|
517
|
+
2. MCP package not installed
|
|
518
|
+
3. Browser binaries missing
|
|
519
|
+
|
|
520
|
+
**Solution:**
|
|
521
|
+
```bash
|
|
522
|
+
# Check MCP package available
|
|
523
|
+
npx @playwright/mcp@latest --version
|
|
524
|
+
|
|
525
|
+
# Install browsers
|
|
526
|
+
npx playwright install
|
|
527
|
+
|
|
528
|
+
# Verify IDE MCP config
|
|
529
|
+
# Check ~/.cursor/config.json or VS Code settings
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
### Config Changes Not Applied
|
|
533
|
+
|
|
534
|
+
**Problem:** Updated config but TEA still uses old values.
|
|
535
|
+
|
|
536
|
+
**Cause:** TEA loads config at workflow start.
|
|
537
|
+
|
|
538
|
+
**Solution:**
|
|
539
|
+
1. Save `_bmad/bmm/config.yaml`
|
|
540
|
+
2. Start fresh chat
|
|
541
|
+
3. Run TEA workflow
|
|
542
|
+
4. Config will be reloaded
|
|
543
|
+
|
|
544
|
+
**TEA doesn't reload config mid-chat** - always start fresh chat after config changes.
|
|
545
|
+
|
|
546
|
+
---
|
|
547
|
+
|
|
548
|
+
## Configuration Examples
|
|
549
|
+
|
|
550
|
+
### Recommended Setup (Full Stack)
|
|
551
|
+
|
|
552
|
+
```yaml
|
|
553
|
+
# _bmad/bmm/config.yaml
|
|
554
|
+
project_name: my-project
|
|
555
|
+
user_skill_level: beginner # or intermediate/expert
|
|
556
|
+
output_folder: _bmad-output
|
|
557
|
+
tea_use_playwright_utils: true # Recommended
|
|
558
|
+
tea_use_mcp_enhancements: true # Recommended
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
**Why recommended:**
|
|
562
|
+
- Playwright Utils: Production-ready fixtures and utilities
|
|
563
|
+
- MCP enhancements: Live browser verification, visual debugging
|
|
564
|
+
- Together: The three-part stack (see [Testing as Engineering](/docs/explanation/philosophy/testing-as-engineering.md))
|
|
565
|
+
|
|
566
|
+
**Prerequisites:**
|
|
567
|
+
```bash
|
|
568
|
+
npm install -D @seontechnologies/playwright-utils
|
|
569
|
+
# Configure MCP servers in IDE (see Enable MCP Enhancements guide)
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
**Best for:** Everyone (beginners learn good patterns from day one)
|
|
573
|
+
|
|
574
|
+
---
|
|
575
|
+
|
|
576
|
+
### Minimal Setup (Learning Only)
|
|
577
|
+
|
|
578
|
+
```yaml
|
|
579
|
+
# _bmad/bmm/config.yaml
|
|
580
|
+
project_name: my-project
|
|
581
|
+
output_folder: _bmad-output
|
|
582
|
+
tea_use_playwright_utils: false
|
|
583
|
+
tea_use_mcp_enhancements: false
|
|
584
|
+
```
|
|
585
|
+
|
|
586
|
+
**Best for:**
|
|
587
|
+
- First-time TEA users (keep it simple initially)
|
|
588
|
+
- Quick experiments
|
|
589
|
+
- Learning basics before adding integrations
|
|
590
|
+
|
|
591
|
+
**Note:** Can enable integrations later as you learn
|
|
592
|
+
|
|
593
|
+
---
|
|
594
|
+
|
|
595
|
+
### Monorepo Setup
|
|
596
|
+
|
|
597
|
+
**Root config:**
|
|
598
|
+
```yaml
|
|
599
|
+
# _bmad/bmm/config.yaml (root)
|
|
600
|
+
project_name: monorepo
|
|
601
|
+
output_folder: _bmad-output
|
|
602
|
+
tea_use_playwright_utils: true
|
|
603
|
+
```
|
|
604
|
+
|
|
605
|
+
**Package configs:**
|
|
606
|
+
```yaml
|
|
607
|
+
# apps/web/_bmad/bmm/config.yaml
|
|
608
|
+
project_name: web-app
|
|
609
|
+
output_folder: ../../_bmad-output/web
|
|
610
|
+
|
|
611
|
+
# apps/api/_bmad/bmm/config.yaml
|
|
612
|
+
project_name: api-service
|
|
613
|
+
output_folder: ../../_bmad-output/api
|
|
614
|
+
tea_use_playwright_utils: false # Using vanilla Playwright only
|
|
615
|
+
```
|
|
616
|
+
|
|
617
|
+
---
|
|
618
|
+
|
|
619
|
+
### Team Template
|
|
620
|
+
|
|
621
|
+
**Commit this template:**
|
|
622
|
+
```yaml
|
|
623
|
+
# _bmad/bmm/config.yaml.example
|
|
624
|
+
# Copy to config.yaml and fill in your values
|
|
625
|
+
|
|
626
|
+
project_name: your-project-name
|
|
627
|
+
user_name: Your Name
|
|
628
|
+
user_skill_level: intermediate # beginner | intermediate | expert
|
|
629
|
+
output_folder: _bmad-output
|
|
630
|
+
planning_artifacts: _bmad-output/planning-artifacts
|
|
631
|
+
implementation_artifacts: _bmad-output/implementation-artifacts
|
|
632
|
+
project_knowledge: docs
|
|
633
|
+
|
|
634
|
+
# TEA Configuration (Recommended: Enable both for full stack)
|
|
635
|
+
tea_use_playwright_utils: true # Recommended - production-ready utilities
|
|
636
|
+
tea_use_mcp_enhancements: true # Recommended - live browser verification
|
|
637
|
+
|
|
638
|
+
# Languages
|
|
639
|
+
communication_language: english
|
|
640
|
+
document_output_language: english
|
|
641
|
+
```
|
|
642
|
+
|
|
643
|
+
**Team instructions:**
|
|
644
|
+
```markdown
|
|
645
|
+
## Setup for New Team Members
|
|
646
|
+
|
|
647
|
+
1. Clone repo
|
|
648
|
+
2. Copy config template:
|
|
649
|
+
cp _bmad/bmm/config.yaml.example _bmad/bmm/config.yaml
|
|
650
|
+
3. Edit with your name and preferences
|
|
651
|
+
4. Install dependencies:
|
|
652
|
+
npm install
|
|
653
|
+
5. (Optional) Enable playwright-utils:
|
|
654
|
+
npm install -D @seontechnologies/playwright-utils
|
|
655
|
+
Set tea_use_playwright_utils: true
|
|
656
|
+
```
|
|
657
|
+
|
|
658
|
+
---
|
|
659
|
+
|
|
660
|
+
## See Also
|
|
661
|
+
|
|
662
|
+
### How-To Guides
|
|
663
|
+
- [Set Up Test Framework](/docs/how-to/workflows/setup-test-framework.md)
|
|
664
|
+
- [Integrate Playwright Utils](/docs/how-to/customization/integrate-playwright-utils.md)
|
|
665
|
+
- [Enable MCP Enhancements](/docs/how-to/customization/enable-tea-mcp-enhancements.md)
|
|
666
|
+
|
|
667
|
+
### Reference
|
|
668
|
+
- [TEA Command Reference](/docs/reference/tea/commands.md)
|
|
669
|
+
- [Knowledge Base Index](/docs/reference/tea/knowledge-base.md)
|
|
670
|
+
- [Glossary](/docs/reference/glossary/index.md)
|
|
671
|
+
|
|
672
|
+
### Explanation
|
|
673
|
+
- [TEA Overview](/docs/explanation/features/tea-overview.md)
|
|
674
|
+
- [Testing as Engineering](/docs/explanation/philosophy/testing-as-engineering.md)
|
|
675
|
+
|
|
676
|
+
---
|
|
677
|
+
|
|
678
|
+
Generated with [BMad Method](https://bmad-method.org) - TEA (Test Architect)
|