bmad-method-test-architecture-enterprise 0.1.1-beta.0

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 (320) hide show
  1. package/.github/CODE_OF_CONDUCT.md +128 -0
  2. package/.github/FUNDING.yaml +15 -0
  3. package/.github/ISSUE_TEMPLATE/config.yaml +11 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.md +70 -0
  5. package/.github/ISSUE_TEMPLATE/issue.md +61 -0
  6. package/.github/workflows/docs.yaml +66 -0
  7. package/.github/workflows/manual-release.yaml +195 -0
  8. package/.github/workflows/quality.yaml +114 -0
  9. package/.husky/pre-commit +20 -0
  10. package/.markdownlint-cli2.yaml +36 -0
  11. package/.nvmrc +1 -0
  12. package/.prettierignore +9 -0
  13. package/.vscode/settings.json +47 -0
  14. package/CHANGELOG.md +217 -0
  15. package/CONTRIBUTING.md +268 -0
  16. package/LICENSE +26 -0
  17. package/README.md +300 -0
  18. package/SECURITY.md +85 -0
  19. package/TEA-MODULE-MIGRATION-PLAN.md +3788 -0
  20. package/docs/404.md +20 -0
  21. package/docs/MIGRATION.md +447 -0
  22. package/docs/explanation/engagement-models.md +767 -0
  23. package/docs/explanation/fixture-architecture.md +484 -0
  24. package/docs/explanation/knowledge-base-system.md +599 -0
  25. package/docs/explanation/network-first-patterns.md +884 -0
  26. package/docs/explanation/risk-based-testing.md +628 -0
  27. package/docs/explanation/step-file-architecture.md +609 -0
  28. package/docs/explanation/subprocess-architecture.md +578 -0
  29. package/docs/explanation/subprocess-implementation-status.md +327 -0
  30. package/docs/explanation/tea-overview.md +425 -0
  31. package/docs/explanation/test-quality-standards.md +965 -0
  32. package/docs/explanation/testing-as-engineering.md +111 -0
  33. package/docs/glossary/index.md +160 -0
  34. package/docs/how-to/brownfield/use-tea-for-enterprise.md +571 -0
  35. package/docs/how-to/brownfield/use-tea-with-existing-tests.md +631 -0
  36. package/docs/how-to/customization/enable-tea-mcp-enhancements.md +455 -0
  37. package/docs/how-to/customization/integrate-playwright-utils.md +846 -0
  38. package/docs/how-to/workflows/run-atdd.md +460 -0
  39. package/docs/how-to/workflows/run-automate.md +690 -0
  40. package/docs/how-to/workflows/run-nfr-assess.md +731 -0
  41. package/docs/how-to/workflows/run-test-design.md +144 -0
  42. package/docs/how-to/workflows/run-test-review.md +638 -0
  43. package/docs/how-to/workflows/run-trace.md +951 -0
  44. package/docs/how-to/workflows/setup-ci.md +761 -0
  45. package/docs/how-to/workflows/setup-test-framework.md +99 -0
  46. package/docs/index.md +122 -0
  47. package/docs/reference/commands.md +300 -0
  48. package/docs/reference/configuration.md +729 -0
  49. package/docs/reference/knowledge-base.md +365 -0
  50. package/docs/reference/troubleshooting.md +717 -0
  51. package/docs/tutorials/tea-lite-quickstart.md +465 -0
  52. package/eslint.config.mjs +152 -0
  53. package/package.json +117 -0
  54. package/prettier.config.mjs +32 -0
  55. package/release_notes.md +28 -0
  56. package/src/_module-installer/installer.js +92 -0
  57. package/src/agents/tea.agent.yaml +63 -0
  58. package/src/module-help.csv +9 -0
  59. package/src/module.yaml +91 -0
  60. package/src/testarch/knowledge/adr-quality-readiness-checklist.md +377 -0
  61. package/src/testarch/knowledge/api-request.md +442 -0
  62. package/src/testarch/knowledge/api-testing-patterns.md +851 -0
  63. package/src/testarch/knowledge/auth-session.md +548 -0
  64. package/src/testarch/knowledge/burn-in.md +273 -0
  65. package/src/testarch/knowledge/ci-burn-in.md +675 -0
  66. package/src/testarch/knowledge/component-tdd.md +486 -0
  67. package/src/testarch/knowledge/contract-testing.md +957 -0
  68. package/src/testarch/knowledge/data-factories.md +500 -0
  69. package/src/testarch/knowledge/email-auth.md +721 -0
  70. package/src/testarch/knowledge/error-handling.md +725 -0
  71. package/src/testarch/knowledge/feature-flags.md +750 -0
  72. package/src/testarch/knowledge/file-utils.md +456 -0
  73. package/src/testarch/knowledge/fixture-architecture.md +401 -0
  74. package/src/testarch/knowledge/fixtures-composition.md +382 -0
  75. package/src/testarch/knowledge/intercept-network-call.md +426 -0
  76. package/src/testarch/knowledge/log.md +426 -0
  77. package/src/testarch/knowledge/network-error-monitor.md +401 -0
  78. package/src/testarch/knowledge/network-first.md +486 -0
  79. package/src/testarch/knowledge/network-recorder.md +527 -0
  80. package/src/testarch/knowledge/nfr-criteria.md +670 -0
  81. package/src/testarch/knowledge/overview.md +286 -0
  82. package/src/testarch/knowledge/playwright-config.md +730 -0
  83. package/src/testarch/knowledge/probability-impact.md +601 -0
  84. package/src/testarch/knowledge/recurse.md +421 -0
  85. package/src/testarch/knowledge/risk-governance.md +615 -0
  86. package/src/testarch/knowledge/selective-testing.md +732 -0
  87. package/src/testarch/knowledge/selector-resilience.md +527 -0
  88. package/src/testarch/knowledge/test-healing-patterns.md +644 -0
  89. package/src/testarch/knowledge/test-levels-framework.md +473 -0
  90. package/src/testarch/knowledge/test-priorities-matrix.md +373 -0
  91. package/src/testarch/knowledge/test-quality.md +664 -0
  92. package/src/testarch/knowledge/timing-debugging.md +372 -0
  93. package/src/testarch/knowledge/visual-debugging.md +524 -0
  94. package/src/testarch/tea-index.csv +35 -0
  95. package/src/workflows/testarch/README.md +74 -0
  96. package/src/workflows/testarch/atdd/atdd-checklist-template.md +363 -0
  97. package/src/workflows/testarch/atdd/checklist.md +374 -0
  98. package/src/workflows/testarch/atdd/instructions.md +38 -0
  99. package/src/workflows/testarch/atdd/steps-c/step-01-preflight-and-context.md +110 -0
  100. package/src/workflows/testarch/atdd/steps-c/step-02-generation-mode.md +79 -0
  101. package/src/workflows/testarch/atdd/steps-c/step-03-test-strategy.md +76 -0
  102. package/src/workflows/testarch/atdd/steps-c/step-04-generate-tests.md +228 -0
  103. package/src/workflows/testarch/atdd/steps-c/step-04a-subprocess-api-failing.md +215 -0
  104. package/src/workflows/testarch/atdd/steps-c/step-04b-subprocess-e2e-failing.md +212 -0
  105. package/src/workflows/testarch/atdd/steps-c/step-04c-aggregate.md +329 -0
  106. package/src/workflows/testarch/atdd/steps-c/step-05-validate-and-complete.md +68 -0
  107. package/src/workflows/testarch/atdd/steps-e/step-01-assess.md +65 -0
  108. package/src/workflows/testarch/atdd/steps-e/step-02-apply-edit.md +60 -0
  109. package/src/workflows/testarch/atdd/steps-v/step-01-validate.md +67 -0
  110. package/src/workflows/testarch/atdd/validation-report-20260127-095021.md +73 -0
  111. package/src/workflows/testarch/atdd/validation-report-20260127-102401.md +116 -0
  112. package/src/workflows/testarch/atdd/workflow-plan.md +21 -0
  113. package/src/workflows/testarch/atdd/workflow.md +39 -0
  114. package/src/workflows/testarch/atdd/workflow.yaml +47 -0
  115. package/src/workflows/testarch/automate/checklist.md +582 -0
  116. package/src/workflows/testarch/automate/instructions.md +43 -0
  117. package/src/workflows/testarch/automate/steps-c/step-01-preflight-and-context.md +127 -0
  118. package/src/workflows/testarch/automate/steps-c/step-02-identify-targets.md +95 -0
  119. package/src/workflows/testarch/automate/steps-c/step-03-generate-tests.md +199 -0
  120. package/src/workflows/testarch/automate/steps-c/step-03a-subprocess-api.md +183 -0
  121. package/src/workflows/testarch/automate/steps-c/step-03b-subprocess-e2e.md +181 -0
  122. package/src/workflows/testarch/automate/steps-c/step-03c-aggregate.md +300 -0
  123. package/src/workflows/testarch/automate/steps-c/step-04-validate-and-summarize.md +69 -0
  124. package/src/workflows/testarch/automate/steps-e/step-01-assess.md +65 -0
  125. package/src/workflows/testarch/automate/steps-e/step-02-apply-edit.md +60 -0
  126. package/src/workflows/testarch/automate/steps-v/step-01-validate.md +67 -0
  127. package/src/workflows/testarch/automate/validation-report-20260127-095021.md +72 -0
  128. package/src/workflows/testarch/automate/validation-report-20260127-102401.md +114 -0
  129. package/src/workflows/testarch/automate/workflow-plan.md +20 -0
  130. package/src/workflows/testarch/automate/workflow.md +39 -0
  131. package/src/workflows/testarch/automate/workflow.yaml +54 -0
  132. package/src/workflows/testarch/ci/checklist.md +247 -0
  133. package/src/workflows/testarch/ci/github-actions-template.yaml +198 -0
  134. package/src/workflows/testarch/ci/gitlab-ci-template.yaml +149 -0
  135. package/src/workflows/testarch/ci/instructions.md +38 -0
  136. package/src/workflows/testarch/ci/steps-c/step-01-preflight.md +92 -0
  137. package/src/workflows/testarch/ci/steps-c/step-02-generate-pipeline.md +82 -0
  138. package/src/workflows/testarch/ci/steps-c/step-03-configure-quality-gates.md +75 -0
  139. package/src/workflows/testarch/ci/steps-c/step-04-validate-and-summary.md +67 -0
  140. package/src/workflows/testarch/ci/steps-e/step-01-assess.md +65 -0
  141. package/src/workflows/testarch/ci/steps-e/step-02-apply-edit.md +60 -0
  142. package/src/workflows/testarch/ci/steps-v/step-01-validate.md +67 -0
  143. package/src/workflows/testarch/ci/validation-report-20260127-095021.md +72 -0
  144. package/src/workflows/testarch/ci/validation-report-20260127-102401.md +114 -0
  145. package/src/workflows/testarch/ci/workflow-plan.md +20 -0
  146. package/src/workflows/testarch/ci/workflow.md +39 -0
  147. package/src/workflows/testarch/ci/workflow.yaml +47 -0
  148. package/src/workflows/testarch/framework/checklist.md +320 -0
  149. package/src/workflows/testarch/framework/instructions.md +38 -0
  150. package/src/workflows/testarch/framework/steps-c/step-01-preflight.md +75 -0
  151. package/src/workflows/testarch/framework/steps-c/step-02-select-framework.md +73 -0
  152. package/src/workflows/testarch/framework/steps-c/step-03-scaffold-framework.md +120 -0
  153. package/src/workflows/testarch/framework/steps-c/step-04-docs-and-scripts.md +70 -0
  154. package/src/workflows/testarch/framework/steps-c/step-05-validate-and-summary.md +68 -0
  155. package/src/workflows/testarch/framework/steps-e/step-01-assess.md +65 -0
  156. package/src/workflows/testarch/framework/steps-e/step-02-apply-edit.md +60 -0
  157. package/src/workflows/testarch/framework/steps-v/step-01-validate.md +67 -0
  158. package/src/workflows/testarch/framework/validation-report-20260127-095021.md +73 -0
  159. package/src/workflows/testarch/framework/validation-report-20260127-102401.md +116 -0
  160. package/src/workflows/testarch/framework/workflow-plan.md +22 -0
  161. package/src/workflows/testarch/framework/workflow.md +39 -0
  162. package/src/workflows/testarch/framework/workflow.yaml +49 -0
  163. package/src/workflows/testarch/nfr-assess/checklist.md +407 -0
  164. package/src/workflows/testarch/nfr-assess/instructions.md +36 -0
  165. package/src/workflows/testarch/nfr-assess/nfr-report-template.md +462 -0
  166. package/src/workflows/testarch/nfr-assess/steps-c/step-01-load-context.md +85 -0
  167. package/src/workflows/testarch/nfr-assess/steps-c/step-02-define-thresholds.md +82 -0
  168. package/src/workflows/testarch/nfr-assess/steps-c/step-03-gather-evidence.md +64 -0
  169. package/src/workflows/testarch/nfr-assess/steps-c/step-04-evaluate-and-score.md +140 -0
  170. package/src/workflows/testarch/nfr-assess/steps-c/step-04a-subprocess-security.md +138 -0
  171. package/src/workflows/testarch/nfr-assess/steps-c/step-04b-subprocess-performance.md +84 -0
  172. package/src/workflows/testarch/nfr-assess/steps-c/step-04c-subprocess-reliability.md +85 -0
  173. package/src/workflows/testarch/nfr-assess/steps-c/step-04d-subprocess-scalability.md +88 -0
  174. package/src/workflows/testarch/nfr-assess/steps-c/step-04e-aggregate-nfr.md +219 -0
  175. package/src/workflows/testarch/nfr-assess/steps-c/step-05-generate-report.md +71 -0
  176. package/src/workflows/testarch/nfr-assess/steps-e/step-01-assess.md +65 -0
  177. package/src/workflows/testarch/nfr-assess/steps-e/step-02-apply-edit.md +60 -0
  178. package/src/workflows/testarch/nfr-assess/steps-v/step-01-validate.md +67 -0
  179. package/src/workflows/testarch/nfr-assess/validation-report-20260127-095021.md +73 -0
  180. package/src/workflows/testarch/nfr-assess/validation-report-20260127-102401.md +116 -0
  181. package/src/workflows/testarch/nfr-assess/workflow-plan.md +19 -0
  182. package/src/workflows/testarch/nfr-assess/workflow.md +39 -0
  183. package/src/workflows/testarch/nfr-assess/workflow.yaml +49 -0
  184. package/src/workflows/testarch/test-design/checklist.md +410 -0
  185. package/src/workflows/testarch/test-design/instructions.md +52 -0
  186. package/src/workflows/testarch/test-design/steps-c/step-01-detect-mode.md +109 -0
  187. package/src/workflows/testarch/test-design/steps-c/step-02-load-context.md +127 -0
  188. package/src/workflows/testarch/test-design/steps-c/step-03-risk-and-testability.md +85 -0
  189. package/src/workflows/testarch/test-design/steps-c/step-04-coverage-plan.md +98 -0
  190. package/src/workflows/testarch/test-design/steps-c/step-05-generate-output.md +97 -0
  191. package/src/workflows/testarch/test-design/steps-e/step-01-assess.md +65 -0
  192. package/src/workflows/testarch/test-design/steps-e/step-02-apply-edit.md +60 -0
  193. package/src/workflows/testarch/test-design/steps-v/step-01-validate.md +67 -0
  194. package/src/workflows/testarch/test-design/test-design-architecture-template.md +222 -0
  195. package/src/workflows/testarch/test-design/test-design-qa-template.md +296 -0
  196. package/src/workflows/testarch/test-design/test-design-template.md +294 -0
  197. package/src/workflows/testarch/test-design/validation-report-20260127-095021.md +73 -0
  198. package/src/workflows/testarch/test-design/validation-report-20260127-102401.md +116 -0
  199. package/src/workflows/testarch/test-design/workflow-plan.md +22 -0
  200. package/src/workflows/testarch/test-design/workflow.md +39 -0
  201. package/src/workflows/testarch/test-design/workflow.yaml +71 -0
  202. package/src/workflows/testarch/test-review/checklist.md +472 -0
  203. package/src/workflows/testarch/test-review/instructions.md +36 -0
  204. package/src/workflows/testarch/test-review/steps-c/step-01-load-context.md +101 -0
  205. package/src/workflows/testarch/test-review/steps-c/step-02-discover-tests.md +69 -0
  206. package/src/workflows/testarch/test-review/steps-c/step-03-quality-evaluation.md +184 -0
  207. package/src/workflows/testarch/test-review/steps-c/step-03a-subprocess-determinism.md +214 -0
  208. package/src/workflows/testarch/test-review/steps-c/step-03b-subprocess-isolation.md +125 -0
  209. package/src/workflows/testarch/test-review/steps-c/step-03c-subprocess-maintainability.md +102 -0
  210. package/src/workflows/testarch/test-review/steps-c/step-03d-subprocess-coverage.md +111 -0
  211. package/src/workflows/testarch/test-review/steps-c/step-03e-subprocess-performance.md +117 -0
  212. package/src/workflows/testarch/test-review/steps-c/step-03f-aggregate-scores.md +246 -0
  213. package/src/workflows/testarch/test-review/steps-c/step-04-generate-report.md +72 -0
  214. package/src/workflows/testarch/test-review/steps-e/step-01-assess.md +65 -0
  215. package/src/workflows/testarch/test-review/steps-e/step-02-apply-edit.md +60 -0
  216. package/src/workflows/testarch/test-review/steps-v/step-01-validate.md +67 -0
  217. package/src/workflows/testarch/test-review/test-review-template.md +390 -0
  218. package/src/workflows/testarch/test-review/validation-report-20260127-095021.md +72 -0
  219. package/src/workflows/testarch/test-review/validation-report-20260127-102401.md +114 -0
  220. package/src/workflows/testarch/test-review/workflow-plan.md +18 -0
  221. package/src/workflows/testarch/test-review/workflow.md +39 -0
  222. package/src/workflows/testarch/test-review/workflow.yaml +48 -0
  223. package/src/workflows/testarch/trace/checklist.md +642 -0
  224. package/src/workflows/testarch/trace/instructions.md +36 -0
  225. package/src/workflows/testarch/trace/steps-c/step-01-load-context.md +80 -0
  226. package/src/workflows/testarch/trace/steps-c/step-02-discover-tests.md +69 -0
  227. package/src/workflows/testarch/trace/steps-c/step-03-map-criteria.md +65 -0
  228. package/src/workflows/testarch/trace/steps-c/step-04-analyze-gaps.md +244 -0
  229. package/src/workflows/testarch/trace/steps-c/step-05-gate-decision.md +232 -0
  230. package/src/workflows/testarch/trace/steps-e/step-01-assess.md +65 -0
  231. package/src/workflows/testarch/trace/steps-e/step-02-apply-edit.md +60 -0
  232. package/src/workflows/testarch/trace/steps-v/step-01-validate.md +67 -0
  233. package/src/workflows/testarch/trace/trace-template.md +675 -0
  234. package/src/workflows/testarch/trace/validation-report-20260127-095021.md +73 -0
  235. package/src/workflows/testarch/trace/validation-report-20260127-102401.md +116 -0
  236. package/src/workflows/testarch/trace/workflow-plan.md +21 -0
  237. package/src/workflows/testarch/trace/workflow.md +39 -0
  238. package/src/workflows/testarch/trace/workflow.yaml +57 -0
  239. package/test/README.md +23 -0
  240. package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
  241. package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
  242. package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
  243. package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
  244. package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
  245. package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
  246. package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
  247. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
  248. package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
  249. package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
  250. package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
  251. package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
  252. package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
  253. package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
  254. package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
  255. package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
  256. package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
  257. package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
  258. package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
  259. package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
  260. package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
  261. package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
  262. package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
  263. package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
  264. package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
  265. package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
  266. package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
  267. package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
  268. package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
  269. package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
  270. package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
  271. package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
  272. package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
  273. package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
  274. package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
  275. package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
  276. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
  277. package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
  278. package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
  279. package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
  280. package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
  281. package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
  282. package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
  283. package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
  284. package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
  285. package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
  286. package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
  287. package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
  288. package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
  289. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
  290. package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
  291. package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
  292. package/test/schema/agent.js +491 -0
  293. package/test/test-agent-schema.js +387 -0
  294. package/test/test-installation-components.js +183 -0
  295. package/test/test-knowledge-base.js +199 -0
  296. package/test/unit-test-schema.js +133 -0
  297. package/test/validate-agent-schema.js +110 -0
  298. package/tools/build-docs.js +575 -0
  299. package/tools/fix-doc-links.js +288 -0
  300. package/tools/schema/agent.js +491 -0
  301. package/tools/validate-agent-schema.js +111 -0
  302. package/tools/validate-doc-links.js +371 -0
  303. package/tools/verify-paths.js +100 -0
  304. package/website/README.md +137 -0
  305. package/website/astro.config.mjs +158 -0
  306. package/website/package-lock.json +6856 -0
  307. package/website/package.json +23 -0
  308. package/website/public/favicon.ico +0 -0
  309. package/website/public/img/tea-logo.svg +7 -0
  310. package/website/public/robots.txt +37 -0
  311. package/website/src/components/Banner.astro +59 -0
  312. package/website/src/components/Header.astro +121 -0
  313. package/website/src/components/MobileMenuFooter.astro +53 -0
  314. package/website/src/content/config.ts +6 -0
  315. package/website/src/lib/site-url.js +25 -0
  316. package/website/src/pages/404.astro +11 -0
  317. package/website/src/rehype-base-paths.js +89 -0
  318. package/website/src/rehype-markdown-links.js +117 -0
  319. package/website/src/styles/custom.css +499 -0
  320. package/website/tsconfig.json +9 -0
@@ -0,0 +1,729 @@
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/tea/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
+
26
+ ```yaml
27
+ # _bmad/tea/config.yaml
28
+ project_name: my-awesome-app
29
+ user_skill_level: intermediate
30
+ output_folder: _bmad-output
31
+ tea_use_playwright_utils: true
32
+ tea_use_mcp_enhancements: false
33
+ ```
34
+
35
+ ### Canonical Schema (Source of Truth)
36
+
37
+ **Location:** `src/bmm/module.yaml`
38
+
39
+ **Purpose:** Defines available configuration keys, defaults, and installer prompts
40
+
41
+ **Created By:** BMAD maintainers (part of BMAD repo)
42
+
43
+ **Status:** Versioned in BMAD repository
44
+
45
+ **Usage:** Reference only (do not edit unless contributing to BMAD)
46
+
47
+ **Note:** The installer reads `module.yaml` to prompt for config values, then writes user choices to `_bmad/tea/config.yaml` in your project.
48
+
49
+ ---
50
+
51
+ ## TEA Configuration Options
52
+
53
+ ### tea_use_playwright_utils
54
+
55
+ Enable Playwright Utils integration for production-ready fixtures and utilities.
56
+
57
+ **Schema Location:** `src/bmm/module.yaml:52-56`
58
+
59
+ **User Config:** `_bmad/tea/config.yaml`
60
+
61
+ **Type:** `boolean`
62
+
63
+ **Default:** `false` (set via installer prompt during installation)
64
+
65
+ **Installer Prompt:**
66
+
67
+ ```
68
+ Are you using playwright-utils (@seontechnologies/playwright-utils) in your project?
69
+ You must install packages yourself, or use test architect's `framework` command.
70
+ ```
71
+
72
+ **Purpose:** Enables TEA to:
73
+
74
+ - Include playwright-utils in `framework` scaffold
75
+ - Generate tests using playwright-utils fixtures
76
+ - Review tests against playwright-utils patterns
77
+ - Configure CI with burn-in and selective testing utilities
78
+
79
+ **Affects Workflows:**
80
+
81
+ - `framework` - Includes playwright-utils imports and fixture examples
82
+ - `atdd` - Uses fixtures like `apiRequest`, `authSession` in generated tests
83
+ - `automate` - Leverages utilities for test patterns
84
+ - `test-review` - Reviews against playwright-utils best practices
85
+ - `ci` - Includes burn-in utility and selective testing
86
+
87
+ **Example (Enable):**
88
+
89
+ ```yaml
90
+ tea_use_playwright_utils: true
91
+ ```
92
+
93
+ **Example (Disable):**
94
+
95
+ ```yaml
96
+ tea_use_playwright_utils: false
97
+ ```
98
+
99
+ **Prerequisites:**
100
+
101
+ ```bash
102
+ npm install -D @seontechnologies/playwright-utils
103
+ ```
104
+
105
+ **Related:**
106
+
107
+ - [Integrate Playwright Utils Guide](/docs/how-to/customization/integrate-playwright-utils.md)
108
+ - [Playwright Utils on npm](https://www.npmjs.com/package/@seontechnologies/playwright-utils)
109
+
110
+ ---
111
+
112
+ ### tea_use_mcp_enhancements
113
+
114
+ Enable Playwright MCP servers for live browser verification during test generation.
115
+
116
+ **Schema Location:** `src/bmm/module.yaml:47-50`
117
+
118
+ **User Config:** `_bmad/tea/config.yaml`
119
+
120
+ **Type:** `boolean`
121
+
122
+ **Default:** `false`
123
+
124
+ **Installer Prompt:**
125
+
126
+ ```
127
+ Test Architect Playwright MCP capabilities (healing, exploratory, verification) are optionally available.
128
+ You will have to setup your MCPs yourself; refer to https://docs.bmad-method.org/explanation/features/tea-overview for configuration examples.
129
+ Would you like to enable MCP enhancements in Test Architect?
130
+ ```
131
+
132
+ **Purpose:** Enables TEA to use Model Context Protocol servers for:
133
+
134
+ - Live browser automation during test design
135
+ - Selector verification with actual DOM
136
+ - Interactive UI discovery
137
+ - Visual debugging and healing
138
+
139
+ **Affects Workflows:**
140
+
141
+ - `test-design` - Enables exploratory mode (browser-based UI discovery)
142
+ - `atdd` - Enables recording mode (verify selectors with live browser)
143
+ - `automate` - Enables healing mode (fix tests with visual debugging)
144
+
145
+ **MCP Servers Required:**
146
+
147
+ **Two Playwright MCP servers** (actively maintained, continuously updated):
148
+
149
+ - `playwright` - Browser automation (`npx @playwright/mcp@latest`)
150
+ - `playwright-test` - Test runner with failure analysis (`npx playwright run-test-mcp-server`)
151
+
152
+ **Configuration example**:
153
+
154
+ ```json
155
+ {
156
+ "mcpServers": {
157
+ "playwright": {
158
+ "command": "npx",
159
+ "args": ["@playwright/mcp@latest"]
160
+ },
161
+ "playwright-test": {
162
+ "command": "npx",
163
+ "args": ["playwright", "run-test-mcp-server"]
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+ **Configuration:** Refer to your AI agent's documentation for MCP server setup instructions.
170
+
171
+ **Example (Enable):**
172
+
173
+ ```yaml
174
+ tea_use_mcp_enhancements: true
175
+ ```
176
+
177
+ **Example (Disable):**
178
+
179
+ ```yaml
180
+ tea_use_mcp_enhancements: false
181
+ ```
182
+
183
+ **Prerequisites:**
184
+
185
+ 1. MCP servers installed in IDE configuration
186
+ 2. `@playwright/mcp` package available globally or locally
187
+ 3. Browser binaries installed (`npx playwright install`)
188
+
189
+ **Related:**
190
+
191
+ - [Enable MCP Enhancements Guide](/docs/how-to/customization/enable-tea-mcp-enhancements.md)
192
+ - [TEA Overview - MCP Section](/docs/explanation/tea-overview.md#playwright-mcp-enhancements)
193
+ - [Playwright MCP on npm](https://www.npmjs.com/package/@playwright/mcp)
194
+
195
+ ---
196
+
197
+ ## Core BMM Configuration (Inherited by TEA)
198
+
199
+ TEA also uses core BMM configuration options from `_bmad/tea/config.yaml`:
200
+
201
+ ### output_folder
202
+
203
+ **Type:** `string`
204
+
205
+ **Default:** `_bmad-output`
206
+
207
+ **Purpose:** Where TEA writes output files (test designs, reports, traceability matrices)
208
+
209
+ **Example:**
210
+
211
+ ```yaml
212
+ output_folder: _bmad-output
213
+ ```
214
+
215
+ **TEA Output Files:**
216
+
217
+ - `test-design-architecture.md` + `test-design-qa.md` (from `test-design` system-level - TWO documents)
218
+ - `test-design-epic-N.md` (from `test-design` epic-level)
219
+ - `test-review.md` (from `test-review`)
220
+ - `traceability-matrix.md` (from `trace` Phase 1)
221
+ - `gate-decision-{gate_type}-{story_id}.md` (from `trace` Phase 2)
222
+ - `nfr-assessment.md` (from `nfr-assess`)
223
+ - `automation-summary.md` (from `automate`)
224
+ - `atdd-checklist-{story_id}.md` (from `atdd`)
225
+
226
+ ---
227
+
228
+ ### user_skill_level
229
+
230
+ **Type:** `enum`
231
+
232
+ **Options:** `beginner` | `intermediate` | `expert`
233
+
234
+ **Default:** `intermediate`
235
+
236
+ **Purpose:** Affects how TEA explains concepts in chat responses
237
+
238
+ **Example:**
239
+
240
+ ```yaml
241
+ user_skill_level: beginner
242
+ ```
243
+
244
+ **Impact on TEA:**
245
+
246
+ - **Beginner:** More detailed explanations, links to concepts, verbose guidance
247
+ - **Intermediate:** Balanced explanations, assumes basic knowledge
248
+ - **Expert:** Concise, technical, minimal hand-holding
249
+
250
+ ---
251
+
252
+ ### project_name
253
+
254
+ **Type:** `string`
255
+
256
+ **Default:** Directory name
257
+
258
+ **Purpose:** Used in TEA-generated documentation and reports
259
+
260
+ **Example:**
261
+
262
+ ```yaml
263
+ project_name: my-awesome-app
264
+ ```
265
+
266
+ **Used in:**
267
+
268
+ - Report headers
269
+ - Documentation titles
270
+ - CI configuration comments
271
+
272
+ ---
273
+
274
+ ### communication_language
275
+
276
+ **Type:** `string`
277
+
278
+ **Default:** `english`
279
+
280
+ **Purpose:** Language for TEA chat responses
281
+
282
+ **Example:**
283
+
284
+ ```yaml
285
+ communication_language: english
286
+ ```
287
+
288
+ **Supported:** Any language (TEA responds in specified language)
289
+
290
+ ---
291
+
292
+ ### document_output_language
293
+
294
+ **Type:** `string`
295
+
296
+ **Default:** `english`
297
+
298
+ **Purpose:** Language for TEA-generated documents (test designs, reports)
299
+
300
+ **Example:**
301
+
302
+ ```yaml
303
+ document_output_language: english
304
+ ```
305
+
306
+ **Note:** Can differ from `communication_language` - chat in Spanish, generate docs in English.
307
+
308
+ ---
309
+
310
+ ## Environment Variables
311
+
312
+ TEA workflows may use environment variables for test configuration.
313
+
314
+ ### Test Framework Variables
315
+
316
+ **Playwright:**
317
+
318
+ ```bash
319
+ # .env
320
+ BASE_URL=https://todomvc.com/examples/react/dist/
321
+ API_BASE_URL=https://api.example.com
322
+ TEST_USER_EMAIL=test@example.com
323
+ TEST_USER_PASSWORD=password123
324
+ ```
325
+
326
+ **Cypress:**
327
+
328
+ ```bash
329
+ # cypress.env.json or .env
330
+ CYPRESS_BASE_URL=https://example.com
331
+ CYPRESS_API_URL=https://api.example.com
332
+ ```
333
+
334
+ ### CI/CD Variables
335
+
336
+ Set in CI platform (GitHub Actions secrets, GitLab CI variables):
337
+
338
+ ```yaml
339
+ # .github/workflows/test.yml
340
+ env:
341
+ BASE_URL: ${{ secrets.STAGING_URL }}
342
+ API_KEY: ${{ secrets.API_KEY }}
343
+ TEST_USER_EMAIL: ${{ secrets.TEST_USER }}
344
+ ```
345
+
346
+ ---
347
+
348
+ ## Configuration Patterns
349
+
350
+ ### Development vs Production
351
+
352
+ **Separate configs for environments:**
353
+
354
+ ```yaml
355
+ # _bmad/tea/config.yaml
356
+ output_folder: _bmad-output
357
+
358
+ # .env.development
359
+ BASE_URL=http://localhost:3000
360
+ API_BASE_URL=http://localhost:4000
361
+
362
+ # .env.staging
363
+ BASE_URL=https://staging.example.com
364
+ API_BASE_URL=https://api-staging.example.com
365
+
366
+ # .env.production (read-only tests only!)
367
+ BASE_URL=https://example.com
368
+ API_BASE_URL=https://api.example.com
369
+ ```
370
+
371
+ ### Team vs Individual
372
+
373
+ **Team config (committed):**
374
+
375
+ ```yaml
376
+ # _bmad/tea/config.yaml.example (committed to repo)
377
+ project_name: team-project
378
+ output_folder: _bmad-output
379
+ tea_use_playwright_utils: true
380
+ tea_use_mcp_enhancements: false
381
+ ```
382
+
383
+ **Individual config (typically gitignored):**
384
+
385
+ ```yaml
386
+ # _bmad/tea/config.yaml (user adds to .gitignore)
387
+ user_name: John Doe
388
+ user_skill_level: expert
389
+ tea_use_mcp_enhancements: true # Individual preference
390
+ ```
391
+
392
+ ### Monorepo Configuration
393
+
394
+ **Root config:**
395
+
396
+ ```yaml
397
+ # _bmad/tea/config.yaml (root)
398
+ project_name: monorepo-parent
399
+ output_folder: _bmad-output
400
+ ```
401
+
402
+ **Package-specific:**
403
+
404
+ ```yaml
405
+ # packages/web-app/_bmad/tea/config.yaml
406
+ project_name: web-app
407
+ output_folder: ../../_bmad-output/web-app
408
+ tea_use_playwright_utils: true
409
+
410
+ # packages/mobile-app/_bmad/tea/config.yaml
411
+ project_name: mobile-app
412
+ output_folder: ../../_bmad-output/mobile-app
413
+ tea_use_playwright_utils: false
414
+ ```
415
+
416
+ ---
417
+
418
+ ## Configuration Best Practices
419
+
420
+ ### 1. Use Version Control Wisely
421
+
422
+ **Commit:**
423
+
424
+ ```
425
+ _bmad/tea/config.yaml.example # Template for team
426
+ .nvmrc # Node version
427
+ package.json # Dependencies
428
+ ```
429
+
430
+ **Recommended for .gitignore:**
431
+
432
+ ```
433
+ _bmad/tea/config.yaml # User-specific values
434
+ .env # Secrets
435
+ .env.local # Local overrides
436
+ ```
437
+
438
+ ### 2. Document Required Setup
439
+
440
+ **In your README:**
441
+
442
+ ```markdown
443
+ ## Setup
444
+
445
+ 1. Install BMad
446
+
447
+ 2. Copy config template:
448
+ cp \_bmad/tea/config.yaml.example \_bmad/tea/config.yaml
449
+
450
+ 3. Edit config with your values:
451
+ - Set user_name
452
+ - Enable tea_use_playwright_utils if using playwright-utils
453
+ - Enable tea_use_mcp_enhancements if MCPs configured
454
+ ```
455
+
456
+ ### 3. Validate Configuration
457
+
458
+ **Check config is valid:**
459
+
460
+ ```bash
461
+ # Check TEA config is set
462
+ cat _bmad/tea/config.yaml | grep tea_use
463
+
464
+ # Verify playwright-utils installed (if enabled)
465
+ npm list @seontechnologies/playwright-utils
466
+
467
+ # Verify MCP servers configured (if enabled)
468
+ # Check your IDE's MCP settings
469
+ ```
470
+
471
+ ### 4. Keep Config Minimal
472
+
473
+ **Don't over-configure:**
474
+
475
+ ```yaml
476
+ # ❌ Bad - overriding everything unnecessarily
477
+ project_name: my-project
478
+ user_name: John Doe
479
+ user_skill_level: expert
480
+ output_folder: custom/path
481
+ planning_artifacts: custom/planning
482
+ implementation_artifacts: custom/implementation
483
+ project_knowledge: custom/docs
484
+ tea_use_playwright_utils: true
485
+ tea_use_mcp_enhancements: true
486
+ communication_language: english
487
+ document_output_language: english
488
+ # Overriding 11 config options when most can use defaults
489
+
490
+ # ✅ Good - only essential overrides
491
+ tea_use_playwright_utils: true
492
+ output_folder: docs/testing
493
+ # Only override what differs from defaults
494
+ ```
495
+
496
+ **Use defaults when possible** - only override what you actually need to change.
497
+
498
+ ---
499
+
500
+ ## Troubleshooting
501
+
502
+ ### Configuration Not Loaded
503
+
504
+ **Problem:** TEA doesn't use my config values.
505
+
506
+ **Causes:**
507
+
508
+ 1. Config file in wrong location
509
+ 2. YAML syntax error
510
+ 3. Typo in config key
511
+
512
+ **Solution:**
513
+
514
+ ```bash
515
+ # Check file exists
516
+ ls -la _bmad/tea/config.yaml
517
+
518
+ # Validate YAML syntax
519
+ npm install -g js-yaml
520
+ js-yaml _bmad/tea/config.yaml
521
+
522
+ # Check for typos (compare to module.yaml)
523
+ diff _bmad/tea/config.yaml src/bmm/module.yaml
524
+ ```
525
+
526
+ ### Playwright Utils Not Working
527
+
528
+ **Problem:** `tea_use_playwright_utils: true` but TEA doesn't use utilities.
529
+
530
+ **Causes:**
531
+
532
+ 1. Package not installed
533
+ 2. Config file not saved
534
+ 3. Workflow run before config update
535
+
536
+ **Solution:**
537
+
538
+ ```bash
539
+ # Verify package installed
540
+ npm list @seontechnologies/playwright-utils
541
+
542
+ # Check config value
543
+ grep tea_use_playwright_utils _bmad/tea/config.yaml
544
+
545
+ # Re-run workflow in fresh chat
546
+ # (TEA loads config at workflow start)
547
+ ```
548
+
549
+ ### MCP Enhancements Not Working
550
+
551
+ **Problem:** `tea_use_mcp_enhancements: true` but no browser opens.
552
+
553
+ **Causes:**
554
+
555
+ 1. MCP servers not configured in IDE
556
+ 2. MCP package not installed
557
+ 3. Browser binaries missing
558
+
559
+ **Solution:**
560
+
561
+ ```bash
562
+ # Check MCP package available
563
+ npx @playwright/mcp@latest --version
564
+
565
+ # Install browsers
566
+ npx playwright install
567
+
568
+ # Verify IDE MCP config
569
+ # Check ~/.cursor/config.json or VS Code settings
570
+ ```
571
+
572
+ ### Config Changes Not Applied
573
+
574
+ **Problem:** Updated config but TEA still uses old values.
575
+
576
+ **Cause:** TEA loads config at workflow start.
577
+
578
+ **Solution:**
579
+
580
+ 1. Save `_bmad/tea/config.yaml`
581
+ 2. Start fresh chat
582
+ 3. Run TEA workflow
583
+ 4. Config will be reloaded
584
+
585
+ **TEA doesn't reload config mid-chat** - always start fresh chat after config changes.
586
+
587
+ ---
588
+
589
+ ## Configuration Examples
590
+
591
+ ### Recommended Setup (Full Stack)
592
+
593
+ ```yaml
594
+ # _bmad/tea/config.yaml
595
+ project_name: my-project
596
+ user_skill_level: beginner # or intermediate/expert
597
+ output_folder: _bmad-output
598
+ tea_use_playwright_utils: true # Recommended
599
+ tea_use_mcp_enhancements: true # Recommended
600
+ ```
601
+
602
+ **Why recommended:**
603
+
604
+ - Playwright Utils: Production-ready fixtures and utilities
605
+ - MCP enhancements: Live browser verification, visual debugging
606
+ - Together: The three-part stack (see [Testing as Engineering](/docs/explanation/testing-as-engineering.md))
607
+
608
+ **Prerequisites:**
609
+
610
+ ```bash
611
+ npm install -D @seontechnologies/playwright-utils
612
+ # Configure MCP servers in IDE (see Enable MCP Enhancements guide)
613
+ ```
614
+
615
+ **Best for:** Everyone (beginners learn good patterns from day one)
616
+
617
+ ---
618
+
619
+ ### Minimal Setup (Learning Only)
620
+
621
+ ```yaml
622
+ # _bmad/tea/config.yaml
623
+ project_name: my-project
624
+ output_folder: _bmad-output
625
+ tea_use_playwright_utils: false
626
+ tea_use_mcp_enhancements: false
627
+ ```
628
+
629
+ **Best for:**
630
+
631
+ - First-time TEA users (keep it simple initially)
632
+ - Quick experiments
633
+ - Learning basics before adding integrations
634
+
635
+ **Note:** Can enable integrations later as you learn
636
+
637
+ ---
638
+
639
+ ### Monorepo Setup
640
+
641
+ **Root config:**
642
+
643
+ ```yaml
644
+ # _bmad/tea/config.yaml (root)
645
+ project_name: monorepo
646
+ output_folder: _bmad-output
647
+ tea_use_playwright_utils: true
648
+ ```
649
+
650
+ **Package configs:**
651
+
652
+ ```yaml
653
+ # apps/web/_bmad/tea/config.yaml
654
+ project_name: web-app
655
+ output_folder: ../../_bmad-output/web
656
+
657
+ # apps/api/_bmad/tea/config.yaml
658
+ project_name: api-service
659
+ output_folder: ../../_bmad-output/api
660
+ tea_use_playwright_utils: false # Using vanilla Playwright only
661
+ ```
662
+
663
+ ---
664
+
665
+ ### Team Template
666
+
667
+ **Commit this template:**
668
+
669
+ ```yaml
670
+ # _bmad/tea/config.yaml.example
671
+ # Copy to config.yaml and fill in your values
672
+
673
+ project_name: your-project-name
674
+ user_name: Your Name
675
+ user_skill_level: intermediate # beginner | intermediate | expert
676
+ output_folder: _bmad-output
677
+ planning_artifacts: _bmad-output/planning-artifacts
678
+ implementation_artifacts: _bmad-output/implementation-artifacts
679
+ project_knowledge: docs
680
+
681
+ # TEA Configuration (Recommended: Enable both for full stack)
682
+ tea_use_playwright_utils: true # Recommended - production-ready utilities
683
+ tea_use_mcp_enhancements: true # Recommended - live browser verification
684
+
685
+ # Languages
686
+ communication_language: english
687
+ document_output_language: english
688
+ ```
689
+
690
+ **Team instructions:**
691
+
692
+ ```markdown
693
+ ## Setup for New Team Members
694
+
695
+ 1. Clone repo
696
+ 2. Copy config template:
697
+ cp \_bmad/tea/config.yaml.example \_bmad/tea/config.yaml
698
+ 3. Edit with your name and preferences
699
+ 4. Install dependencies:
700
+ npm install
701
+ 5. (Optional) Enable playwright-utils:
702
+ npm install -D @seontechnologies/playwright-utils
703
+ Set tea_use_playwright_utils: true
704
+ ```
705
+
706
+ ---
707
+
708
+ ## See Also
709
+
710
+ ### How-To Guides
711
+
712
+ - [Set Up Test Framework](/docs/how-to/workflows/setup-test-framework.md)
713
+ - [Integrate Playwright Utils](/docs/how-to/customization/integrate-playwright-utils.md)
714
+ - [Enable MCP Enhancements](/docs/how-to/customization/enable-tea-mcp-enhancements.md)
715
+
716
+ ### Reference
717
+
718
+ - [TEA Command Reference](/docs/reference/commands.md)
719
+ - [Knowledge Base Index](/docs/reference/knowledge-base.md)
720
+ - [Glossary](/docs/glossary/index.md)
721
+
722
+ ### Explanation
723
+
724
+ - [TEA Overview](/docs/explanation/tea-overview.md)
725
+ - [Testing as Engineering](/docs/explanation/testing-as-engineering.md)
726
+
727
+ ---
728
+
729
+ Generated with [BMad Method](https://bmad-method.org) - TEA (Test Architect)