ma-agents 2.19.2 → 2.20.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.
- package/.cline/clinerules.md +14 -0
- package/.cline/skills/.ma-agents.json +199 -0
- package/.cline/skills/MANIFEST.yaml +204 -0
- package/.cline/skills/ai-audit-trail/SKILL.md +23 -0
- package/.cline/skills/cmake-best-practices/SKILL.md +64 -0
- package/.cline/skills/cmake-best-practices/examples/cmake.md +59 -0
- package/.cline/skills/code-documentation/SKILL.md +57 -0
- package/.cline/skills/code-documentation/examples/cpp.md +29 -0
- package/.cline/skills/code-documentation/examples/csharp.md +28 -0
- package/.cline/skills/code-documentation/examples/javascript_typescript.md +28 -0
- package/.cline/skills/code-documentation/examples/python.md +57 -0
- package/.cline/skills/code-review/SKILL.md +59 -0
- package/.cline/skills/commit-message/SKILL.md +79 -0
- package/.cline/skills/cpp-concurrency-safety/SKILL.md +60 -0
- package/.cline/skills/cpp-concurrency-safety/examples/concurrency.md +73 -0
- package/.cline/skills/cpp-const-correctness/SKILL.md +63 -0
- package/.cline/skills/cpp-const-correctness/examples/const_correctness.md +54 -0
- package/.cline/skills/cpp-memory-handling/SKILL.md +42 -0
- package/.cline/skills/cpp-memory-handling/examples/modern-cpp.md +49 -0
- package/.cline/skills/cpp-memory-handling/examples/smart-pointers.md +46 -0
- package/.cline/skills/cpp-modern-composition/SKILL.md +64 -0
- package/.cline/skills/cpp-modern-composition/examples/composition.md +51 -0
- package/.cline/skills/cpp-robust-interfaces/SKILL.md +55 -0
- package/.cline/skills/cpp-robust-interfaces/examples/interfaces.md +56 -0
- package/.cline/skills/create-hardened-docker-skill/SKILL.md +637 -0
- package/.cline/skills/create-hardened-docker-skill/scripts/create-all.sh +489 -0
- package/.cline/skills/docker-hardening-verification/SKILL.md +28 -0
- package/.cline/skills/docker-hardening-verification/scripts/verify-hardening.sh +39 -0
- package/.cline/skills/docker-image-signing/SKILL.md +28 -0
- package/.cline/skills/docker-image-signing/scripts/sign-image.sh +33 -0
- package/.cline/skills/document-revision-history/SKILL.md +104 -0
- package/.cline/skills/git-workflow-skill/SKILL.md +194 -0
- package/.cline/skills/git-workflow-skill/hooks/commit-msg +61 -0
- package/.cline/skills/git-workflow-skill/hooks/pre-commit +38 -0
- package/.cline/skills/git-workflow-skill/hooks/prepare-commit-msg +56 -0
- package/.cline/skills/git-workflow-skill/scripts/finish-feature.sh +192 -0
- package/.cline/skills/git-workflow-skill/scripts/install-hooks.sh +55 -0
- package/.cline/skills/git-workflow-skill/scripts/start-feature.sh +110 -0
- package/.cline/skills/git-workflow-skill/scripts/validate-workflow.sh +229 -0
- package/.cline/skills/js-ts-dependency-mgmt/SKILL.md +49 -0
- package/.cline/skills/js-ts-dependency-mgmt/examples/dependency_mgmt.md +60 -0
- package/.cline/skills/js-ts-security-skill/SKILL.md +64 -0
- package/.cline/skills/js-ts-security-skill/scripts/verify-security.sh +136 -0
- package/.cline/skills/logging-best-practices/SKILL.md +50 -0
- package/.cline/skills/logging-best-practices/docs/logging-standards.md +29 -0
- package/.cline/skills/logging-best-practices/examples/cpp.md +36 -0
- package/.cline/skills/logging-best-practices/examples/csharp.md +49 -0
- package/.cline/skills/logging-best-practices/examples/javascript.md +77 -0
- package/.cline/skills/logging-best-practices/examples/python.md +57 -0
- package/.cline/skills/opentelemetry-best-practices/SKILL.md +34 -0
- package/.cline/skills/opentelemetry-best-practices/docs/otel-standards.md +37 -0
- package/.cline/skills/opentelemetry-best-practices/examples/go.md +32 -0
- package/.cline/skills/opentelemetry-best-practices/examples/javascript.md +58 -0
- package/.cline/skills/opentelemetry-best-practices/examples/python.md +37 -0
- package/.cline/skills/python-dependency-mgmt/SKILL.md +42 -0
- package/.cline/skills/python-dependency-mgmt/examples/dependency_mgmt.md +67 -0
- package/.cline/skills/python-security-skill/SKILL.md +56 -0
- package/.cline/skills/python-security-skill/examples/security.md +56 -0
- package/.cline/skills/self-signed-cert/SKILL.md +42 -0
- package/.cline/skills/self-signed-cert/scripts/generate-cert.ps1 +45 -0
- package/.cline/skills/self-signed-cert/scripts/generate-cert.sh +43 -0
- package/.cline/skills/skill-creator/SKILL.md +196 -0
- package/.cline/skills/skill-creator/docs/output-patterns.md +82 -0
- package/.cline/skills/skill-creator/docs/workflows.md +28 -0
- package/.cline/skills/skill-creator/scripts/init_skill.py +208 -0
- package/.cline/skills/skill-creator/scripts/package_skill.py +99 -0
- package/.cline/skills/skill-creator/scripts/quick_validate.py +113 -0
- package/.cline/skills/test-accompanied-development/SKILL.md +50 -0
- package/.cline/skills/test-generator/SKILL.md +73 -0
- package/.cline/skills/vercel-react-best-practices/SKILL.md +109 -0
- package/.cline/skills/verify-hardened-docker-skill/SKILL.md +442 -0
- package/.cline/skills/verify-hardened-docker-skill/scripts/verify-docker-hardening.sh +439 -0
- package/.clinerules +14 -0
- package/.cursor/cursor.md +14 -0
- package/.cursor/skills/.ma-agents.json +199 -0
- package/.cursor/skills/MANIFEST.yaml +204 -0
- package/.cursor/skills/ai-audit-trail/SKILL.md +23 -0
- package/.cursor/skills/cmake-best-practices/SKILL.md +64 -0
- package/.cursor/skills/cmake-best-practices/examples/cmake.md +59 -0
- package/.cursor/skills/code-documentation/SKILL.md +57 -0
- package/.cursor/skills/code-documentation/examples/cpp.md +29 -0
- package/.cursor/skills/code-documentation/examples/csharp.md +28 -0
- package/.cursor/skills/code-documentation/examples/javascript_typescript.md +28 -0
- package/.cursor/skills/code-documentation/examples/python.md +57 -0
- package/.cursor/skills/code-review/SKILL.md +43 -0
- package/.cursor/skills/commit-message/SKILL.md +79 -0
- package/.cursor/skills/cpp-concurrency-safety/SKILL.md +60 -0
- package/.cursor/skills/cpp-concurrency-safety/examples/concurrency.md +73 -0
- package/.cursor/skills/cpp-const-correctness/SKILL.md +63 -0
- package/.cursor/skills/cpp-const-correctness/examples/const_correctness.md +54 -0
- package/.cursor/skills/cpp-memory-handling/SKILL.md +42 -0
- package/.cursor/skills/cpp-memory-handling/examples/modern-cpp.md +49 -0
- package/.cursor/skills/cpp-memory-handling/examples/smart-pointers.md +46 -0
- package/.cursor/skills/cpp-modern-composition/SKILL.md +64 -0
- package/.cursor/skills/cpp-modern-composition/examples/composition.md +51 -0
- package/.cursor/skills/cpp-robust-interfaces/SKILL.md +55 -0
- package/.cursor/skills/cpp-robust-interfaces/examples/interfaces.md +56 -0
- package/.cursor/skills/create-hardened-docker-skill/SKILL.md +637 -0
- package/.cursor/skills/create-hardened-docker-skill/scripts/create-all.sh +489 -0
- package/.cursor/skills/docker-hardening-verification/SKILL.md +28 -0
- package/.cursor/skills/docker-hardening-verification/scripts/verify-hardening.sh +39 -0
- package/.cursor/skills/docker-image-signing/SKILL.md +28 -0
- package/.cursor/skills/docker-image-signing/scripts/sign-image.sh +33 -0
- package/.cursor/skills/document-revision-history/SKILL.md +104 -0
- package/.cursor/skills/git-workflow-skill/SKILL.md +194 -0
- package/.cursor/skills/git-workflow-skill/hooks/commit-msg +61 -0
- package/.cursor/skills/git-workflow-skill/hooks/pre-commit +38 -0
- package/.cursor/skills/git-workflow-skill/hooks/prepare-commit-msg +56 -0
- package/.cursor/skills/git-workflow-skill/scripts/finish-feature.sh +192 -0
- package/.cursor/skills/git-workflow-skill/scripts/install-hooks.sh +55 -0
- package/.cursor/skills/git-workflow-skill/scripts/start-feature.sh +110 -0
- package/.cursor/skills/git-workflow-skill/scripts/validate-workflow.sh +229 -0
- package/.cursor/skills/js-ts-dependency-mgmt/SKILL.md +49 -0
- package/.cursor/skills/js-ts-dependency-mgmt/examples/dependency_mgmt.md +60 -0
- package/.cursor/skills/js-ts-security-skill/SKILL.md +64 -0
- package/.cursor/skills/js-ts-security-skill/scripts/verify-security.sh +136 -0
- package/.cursor/skills/logging-best-practices/SKILL.md +50 -0
- package/.cursor/skills/logging-best-practices/examples/cpp.md +36 -0
- package/.cursor/skills/logging-best-practices/examples/csharp.md +49 -0
- package/.cursor/skills/logging-best-practices/examples/javascript.md +77 -0
- package/.cursor/skills/logging-best-practices/examples/python.md +57 -0
- package/.cursor/skills/logging-best-practices/references/logging-standards.md +29 -0
- package/.cursor/skills/opentelemetry-best-practices/SKILL.md +34 -0
- package/.cursor/skills/opentelemetry-best-practices/examples/go.md +32 -0
- package/.cursor/skills/opentelemetry-best-practices/examples/javascript.md +58 -0
- package/.cursor/skills/opentelemetry-best-practices/examples/python.md +37 -0
- package/.cursor/skills/opentelemetry-best-practices/references/otel-standards.md +37 -0
- package/.cursor/skills/python-dependency-mgmt/SKILL.md +42 -0
- package/.cursor/skills/python-dependency-mgmt/examples/dependency_mgmt.md +67 -0
- package/.cursor/skills/python-security-skill/SKILL.md +56 -0
- package/.cursor/skills/python-security-skill/examples/security.md +56 -0
- package/.cursor/skills/self-signed-cert/SKILL.md +42 -0
- package/.cursor/skills/self-signed-cert/scripts/generate-cert.ps1 +45 -0
- package/.cursor/skills/self-signed-cert/scripts/generate-cert.sh +43 -0
- package/.cursor/skills/skill-creator/SKILL.md +196 -0
- package/.cursor/skills/skill-creator/references/output-patterns.md +82 -0
- package/.cursor/skills/skill-creator/references/workflows.md +28 -0
- package/.cursor/skills/skill-creator/scripts/init_skill.py +208 -0
- package/.cursor/skills/skill-creator/scripts/package_skill.py +99 -0
- package/.cursor/skills/skill-creator/scripts/quick_validate.py +113 -0
- package/.cursor/skills/test-accompanied-development/SKILL.md +50 -0
- package/.cursor/skills/test-generator/SKILL.md +65 -0
- package/.cursor/skills/vercel-react-best-practices/SKILL.md +109 -0
- package/.cursor/skills/verify-hardened-docker-skill/SKILL.md +442 -0
- package/.cursor/skills/verify-hardened-docker-skill/scripts/verify-docker-hardening.sh +439 -0
- package/.gemini/gemini.md +14 -0
- package/.gemini/skills/.ma-agents.json +199 -0
- package/.gemini/skills/MANIFEST.yaml +204 -0
- package/.gemini/skills/ai-audit-trail/SKILL.md +23 -0
- package/.gemini/skills/cmake-best-practices/SKILL.md +64 -0
- package/.gemini/skills/cmake-best-practices/examples/cmake.md +59 -0
- package/.gemini/skills/code-documentation/SKILL.md +57 -0
- package/.gemini/skills/code-documentation/examples/cpp.md +29 -0
- package/.gemini/skills/code-documentation/examples/csharp.md +28 -0
- package/.gemini/skills/code-documentation/examples/javascript_typescript.md +28 -0
- package/.gemini/skills/code-documentation/examples/python.md +57 -0
- package/.gemini/skills/code-review/SKILL.md +43 -0
- package/.gemini/skills/commit-message/SKILL.md +79 -0
- package/.gemini/skills/cpp-concurrency-safety/SKILL.md +60 -0
- package/.gemini/skills/cpp-concurrency-safety/examples/concurrency.md +73 -0
- package/.gemini/skills/cpp-const-correctness/SKILL.md +63 -0
- package/.gemini/skills/cpp-const-correctness/examples/const_correctness.md +54 -0
- package/.gemini/skills/cpp-memory-handling/SKILL.md +42 -0
- package/.gemini/skills/cpp-memory-handling/examples/modern-cpp.md +49 -0
- package/.gemini/skills/cpp-memory-handling/examples/smart-pointers.md +46 -0
- package/.gemini/skills/cpp-modern-composition/SKILL.md +64 -0
- package/.gemini/skills/cpp-modern-composition/examples/composition.md +51 -0
- package/.gemini/skills/cpp-robust-interfaces/SKILL.md +55 -0
- package/.gemini/skills/cpp-robust-interfaces/examples/interfaces.md +56 -0
- package/.gemini/skills/create-hardened-docker-skill/SKILL.md +637 -0
- package/.gemini/skills/create-hardened-docker-skill/scripts/create-all.sh +489 -0
- package/.gemini/skills/docker-hardening-verification/SKILL.md +28 -0
- package/.gemini/skills/docker-hardening-verification/scripts/verify-hardening.sh +39 -0
- package/.gemini/skills/docker-image-signing/SKILL.md +28 -0
- package/.gemini/skills/docker-image-signing/scripts/sign-image.sh +33 -0
- package/.gemini/skills/document-revision-history/SKILL.md +104 -0
- package/.gemini/skills/git-workflow-skill/SKILL.md +194 -0
- package/.gemini/skills/git-workflow-skill/hooks/commit-msg +61 -0
- package/.gemini/skills/git-workflow-skill/hooks/pre-commit +38 -0
- package/.gemini/skills/git-workflow-skill/hooks/prepare-commit-msg +56 -0
- package/.gemini/skills/git-workflow-skill/scripts/finish-feature.sh +192 -0
- package/.gemini/skills/git-workflow-skill/scripts/install-hooks.sh +55 -0
- package/.gemini/skills/git-workflow-skill/scripts/start-feature.sh +110 -0
- package/.gemini/skills/git-workflow-skill/scripts/validate-workflow.sh +229 -0
- package/.gemini/skills/js-ts-dependency-mgmt/SKILL.md +49 -0
- package/.gemini/skills/js-ts-dependency-mgmt/examples/dependency_mgmt.md +60 -0
- package/.gemini/skills/js-ts-security-skill/SKILL.md +64 -0
- package/.gemini/skills/js-ts-security-skill/scripts/verify-security.sh +136 -0
- package/.gemini/skills/logging-best-practices/SKILL.md +50 -0
- package/.gemini/skills/logging-best-practices/examples/cpp.md +36 -0
- package/.gemini/skills/logging-best-practices/examples/csharp.md +49 -0
- package/.gemini/skills/logging-best-practices/examples/javascript.md +77 -0
- package/.gemini/skills/logging-best-practices/examples/python.md +57 -0
- package/.gemini/skills/logging-best-practices/references/logging-standards.md +29 -0
- package/.gemini/skills/opentelemetry-best-practices/SKILL.md +34 -0
- package/.gemini/skills/opentelemetry-best-practices/examples/go.md +32 -0
- package/.gemini/skills/opentelemetry-best-practices/examples/javascript.md +58 -0
- package/.gemini/skills/opentelemetry-best-practices/examples/python.md +37 -0
- package/.gemini/skills/opentelemetry-best-practices/references/otel-standards.md +37 -0
- package/.gemini/skills/python-dependency-mgmt/SKILL.md +42 -0
- package/.gemini/skills/python-dependency-mgmt/examples/dependency_mgmt.md +67 -0
- package/.gemini/skills/python-security-skill/SKILL.md +56 -0
- package/.gemini/skills/python-security-skill/examples/security.md +56 -0
- package/.gemini/skills/self-signed-cert/SKILL.md +42 -0
- package/.gemini/skills/self-signed-cert/scripts/generate-cert.ps1 +45 -0
- package/.gemini/skills/self-signed-cert/scripts/generate-cert.sh +43 -0
- package/.gemini/skills/skill-creator/SKILL.md +196 -0
- package/.gemini/skills/skill-creator/references/output-patterns.md +82 -0
- package/.gemini/skills/skill-creator/references/workflows.md +28 -0
- package/.gemini/skills/skill-creator/scripts/init_skill.py +208 -0
- package/.gemini/skills/skill-creator/scripts/package_skill.py +99 -0
- package/.gemini/skills/skill-creator/scripts/quick_validate.py +113 -0
- package/.gemini/skills/test-accompanied-development/SKILL.md +50 -0
- package/.gemini/skills/test-generator/SKILL.md +65 -0
- package/.gemini/skills/vercel-react-best-practices/SKILL.md +109 -0
- package/.gemini/skills/verify-hardened-docker-skill/SKILL.md +442 -0
- package/.gemini/skills/verify-hardened-docker-skill/scripts/verify-docker-hardening.sh +439 -0
- package/.github/copilot/copilot.md +14 -0
- package/.github/copilot/skills/.ma-agents.json +199 -0
- package/.github/copilot/skills/MANIFEST.yaml +204 -0
- package/.github/copilot/skills/ai-audit-trail/SKILL.md +23 -0
- package/.github/copilot/skills/cmake-best-practices/SKILL.md +64 -0
- package/.github/copilot/skills/cmake-best-practices/examples/cmake.md +59 -0
- package/.github/copilot/skills/code-documentation/SKILL.md +57 -0
- package/.github/copilot/skills/code-documentation/examples/cpp.md +29 -0
- package/.github/copilot/skills/code-documentation/examples/csharp.md +28 -0
- package/.github/copilot/skills/code-documentation/examples/javascript_typescript.md +28 -0
- package/.github/copilot/skills/code-documentation/examples/python.md +57 -0
- package/.github/copilot/skills/code-review/SKILL.md +43 -0
- package/.github/copilot/skills/commit-message/SKILL.md +79 -0
- package/.github/copilot/skills/cpp-concurrency-safety/SKILL.md +60 -0
- package/.github/copilot/skills/cpp-concurrency-safety/examples/concurrency.md +73 -0
- package/.github/copilot/skills/cpp-const-correctness/SKILL.md +63 -0
- package/.github/copilot/skills/cpp-const-correctness/examples/const_correctness.md +54 -0
- package/.github/copilot/skills/cpp-memory-handling/SKILL.md +42 -0
- package/.github/copilot/skills/cpp-memory-handling/examples/modern-cpp.md +49 -0
- package/.github/copilot/skills/cpp-memory-handling/examples/smart-pointers.md +46 -0
- package/.github/copilot/skills/cpp-modern-composition/SKILL.md +64 -0
- package/.github/copilot/skills/cpp-modern-composition/examples/composition.md +51 -0
- package/.github/copilot/skills/cpp-robust-interfaces/SKILL.md +55 -0
- package/.github/copilot/skills/cpp-robust-interfaces/examples/interfaces.md +56 -0
- package/.github/copilot/skills/create-hardened-docker-skill/SKILL.md +637 -0
- package/.github/copilot/skills/create-hardened-docker-skill/scripts/create-all.sh +489 -0
- package/.github/copilot/skills/docker-hardening-verification/SKILL.md +28 -0
- package/.github/copilot/skills/docker-hardening-verification/scripts/verify-hardening.sh +39 -0
- package/.github/copilot/skills/docker-image-signing/SKILL.md +28 -0
- package/.github/copilot/skills/docker-image-signing/scripts/sign-image.sh +33 -0
- package/.github/copilot/skills/document-revision-history/SKILL.md +104 -0
- package/.github/copilot/skills/git-workflow-skill/SKILL.md +194 -0
- package/.github/copilot/skills/git-workflow-skill/hooks/commit-msg +61 -0
- package/.github/copilot/skills/git-workflow-skill/hooks/pre-commit +38 -0
- package/.github/copilot/skills/git-workflow-skill/hooks/prepare-commit-msg +56 -0
- package/.github/copilot/skills/git-workflow-skill/scripts/finish-feature.sh +192 -0
- package/.github/copilot/skills/git-workflow-skill/scripts/install-hooks.sh +55 -0
- package/.github/copilot/skills/git-workflow-skill/scripts/start-feature.sh +110 -0
- package/.github/copilot/skills/git-workflow-skill/scripts/validate-workflow.sh +229 -0
- package/.github/copilot/skills/js-ts-dependency-mgmt/SKILL.md +49 -0
- package/.github/copilot/skills/js-ts-dependency-mgmt/examples/dependency_mgmt.md +60 -0
- package/.github/copilot/skills/js-ts-security-skill/SKILL.md +64 -0
- package/.github/copilot/skills/js-ts-security-skill/scripts/verify-security.sh +136 -0
- package/.github/copilot/skills/logging-best-practices/SKILL.md +50 -0
- package/.github/copilot/skills/logging-best-practices/examples/cpp.md +36 -0
- package/.github/copilot/skills/logging-best-practices/examples/csharp.md +49 -0
- package/.github/copilot/skills/logging-best-practices/examples/javascript.md +77 -0
- package/.github/copilot/skills/logging-best-practices/examples/python.md +57 -0
- package/.github/copilot/skills/logging-best-practices/references/logging-standards.md +29 -0
- package/.github/copilot/skills/opentelemetry-best-practices/SKILL.md +34 -0
- package/.github/copilot/skills/opentelemetry-best-practices/examples/go.md +32 -0
- package/.github/copilot/skills/opentelemetry-best-practices/examples/javascript.md +58 -0
- package/.github/copilot/skills/opentelemetry-best-practices/examples/python.md +37 -0
- package/.github/copilot/skills/opentelemetry-best-practices/references/otel-standards.md +37 -0
- package/.github/copilot/skills/python-dependency-mgmt/SKILL.md +42 -0
- package/.github/copilot/skills/python-dependency-mgmt/examples/dependency_mgmt.md +67 -0
- package/.github/copilot/skills/python-security-skill/SKILL.md +56 -0
- package/.github/copilot/skills/python-security-skill/examples/security.md +56 -0
- package/.github/copilot/skills/self-signed-cert/SKILL.md +42 -0
- package/.github/copilot/skills/self-signed-cert/scripts/generate-cert.ps1 +45 -0
- package/.github/copilot/skills/self-signed-cert/scripts/generate-cert.sh +43 -0
- package/.github/copilot/skills/skill-creator/SKILL.md +196 -0
- package/.github/copilot/skills/skill-creator/references/output-patterns.md +82 -0
- package/.github/copilot/skills/skill-creator/references/workflows.md +28 -0
- package/.github/copilot/skills/skill-creator/scripts/init_skill.py +208 -0
- package/.github/copilot/skills/skill-creator/scripts/package_skill.py +99 -0
- package/.github/copilot/skills/skill-creator/scripts/quick_validate.py +113 -0
- package/.github/copilot/skills/test-accompanied-development/SKILL.md +50 -0
- package/.github/copilot/skills/test-generator/SKILL.md +65 -0
- package/.github/copilot/skills/vercel-react-best-practices/SKILL.md +109 -0
- package/.github/copilot/skills/verify-hardened-docker-skill/SKILL.md +442 -0
- package/.github/copilot/skills/verify-hardened-docker-skill/scripts/verify-docker-hardening.sh +439 -0
- package/.kilocode/kilocode.md +14 -0
- package/.kilocode/skills/.ma-agents.json +199 -0
- package/.kilocode/skills/MANIFEST.yaml +204 -0
- package/.kilocode/skills/ai-audit-trail/SKILL.md +23 -0
- package/.kilocode/skills/cmake-best-practices/SKILL.md +64 -0
- package/.kilocode/skills/cmake-best-practices/examples/cmake.md +59 -0
- package/.kilocode/skills/code-documentation/SKILL.md +57 -0
- package/.kilocode/skills/code-documentation/examples/cpp.md +29 -0
- package/.kilocode/skills/code-documentation/examples/csharp.md +28 -0
- package/.kilocode/skills/code-documentation/examples/javascript_typescript.md +28 -0
- package/.kilocode/skills/code-documentation/examples/python.md +57 -0
- package/.kilocode/skills/code-review/SKILL.md +43 -0
- package/.kilocode/skills/commit-message/SKILL.md +79 -0
- package/.kilocode/skills/cpp-concurrency-safety/SKILL.md +60 -0
- package/.kilocode/skills/cpp-concurrency-safety/examples/concurrency.md +73 -0
- package/.kilocode/skills/cpp-const-correctness/SKILL.md +63 -0
- package/.kilocode/skills/cpp-const-correctness/examples/const_correctness.md +54 -0
- package/.kilocode/skills/cpp-memory-handling/SKILL.md +42 -0
- package/.kilocode/skills/cpp-memory-handling/examples/modern-cpp.md +49 -0
- package/.kilocode/skills/cpp-memory-handling/examples/smart-pointers.md +46 -0
- package/.kilocode/skills/cpp-modern-composition/SKILL.md +64 -0
- package/.kilocode/skills/cpp-modern-composition/examples/composition.md +51 -0
- package/.kilocode/skills/cpp-robust-interfaces/SKILL.md +55 -0
- package/.kilocode/skills/cpp-robust-interfaces/examples/interfaces.md +56 -0
- package/.kilocode/skills/create-hardened-docker-skill/SKILL.md +637 -0
- package/.kilocode/skills/create-hardened-docker-skill/scripts/create-all.sh +489 -0
- package/.kilocode/skills/docker-hardening-verification/SKILL.md +28 -0
- package/.kilocode/skills/docker-hardening-verification/scripts/verify-hardening.sh +39 -0
- package/.kilocode/skills/docker-image-signing/SKILL.md +28 -0
- package/.kilocode/skills/docker-image-signing/scripts/sign-image.sh +33 -0
- package/.kilocode/skills/document-revision-history/SKILL.md +104 -0
- package/.kilocode/skills/git-workflow-skill/SKILL.md +194 -0
- package/.kilocode/skills/git-workflow-skill/hooks/commit-msg +61 -0
- package/.kilocode/skills/git-workflow-skill/hooks/pre-commit +38 -0
- package/.kilocode/skills/git-workflow-skill/hooks/prepare-commit-msg +56 -0
- package/.kilocode/skills/git-workflow-skill/scripts/finish-feature.sh +192 -0
- package/.kilocode/skills/git-workflow-skill/scripts/install-hooks.sh +55 -0
- package/.kilocode/skills/git-workflow-skill/scripts/start-feature.sh +110 -0
- package/.kilocode/skills/git-workflow-skill/scripts/validate-workflow.sh +229 -0
- package/.kilocode/skills/js-ts-dependency-mgmt/SKILL.md +49 -0
- package/.kilocode/skills/js-ts-dependency-mgmt/examples/dependency_mgmt.md +60 -0
- package/.kilocode/skills/js-ts-security-skill/SKILL.md +64 -0
- package/.kilocode/skills/js-ts-security-skill/scripts/verify-security.sh +136 -0
- package/.kilocode/skills/logging-best-practices/SKILL.md +50 -0
- package/.kilocode/skills/logging-best-practices/examples/cpp.md +36 -0
- package/.kilocode/skills/logging-best-practices/examples/csharp.md +49 -0
- package/.kilocode/skills/logging-best-practices/examples/javascript.md +77 -0
- package/.kilocode/skills/logging-best-practices/examples/python.md +57 -0
- package/.kilocode/skills/logging-best-practices/references/logging-standards.md +29 -0
- package/.kilocode/skills/opentelemetry-best-practices/SKILL.md +34 -0
- package/.kilocode/skills/opentelemetry-best-practices/examples/go.md +32 -0
- package/.kilocode/skills/opentelemetry-best-practices/examples/javascript.md +58 -0
- package/.kilocode/skills/opentelemetry-best-practices/examples/python.md +37 -0
- package/.kilocode/skills/opentelemetry-best-practices/references/otel-standards.md +37 -0
- package/.kilocode/skills/python-dependency-mgmt/SKILL.md +42 -0
- package/.kilocode/skills/python-dependency-mgmt/examples/dependency_mgmt.md +67 -0
- package/.kilocode/skills/python-security-skill/SKILL.md +56 -0
- package/.kilocode/skills/python-security-skill/examples/security.md +56 -0
- package/.kilocode/skills/self-signed-cert/SKILL.md +42 -0
- package/.kilocode/skills/self-signed-cert/scripts/generate-cert.ps1 +45 -0
- package/.kilocode/skills/self-signed-cert/scripts/generate-cert.sh +43 -0
- package/.kilocode/skills/skill-creator/SKILL.md +196 -0
- package/.kilocode/skills/skill-creator/references/output-patterns.md +82 -0
- package/.kilocode/skills/skill-creator/references/workflows.md +28 -0
- package/.kilocode/skills/skill-creator/scripts/init_skill.py +208 -0
- package/.kilocode/skills/skill-creator/scripts/package_skill.py +99 -0
- package/.kilocode/skills/skill-creator/scripts/quick_validate.py +113 -0
- package/.kilocode/skills/test-accompanied-development/SKILL.md +50 -0
- package/.kilocode/skills/test-generator/SKILL.md +65 -0
- package/.kilocode/skills/vercel-react-best-practices/SKILL.md +109 -0
- package/.kilocode/skills/verify-hardened-docker-skill/SKILL.md +442 -0
- package/.kilocode/skills/verify-hardened-docker-skill/scripts/verify-docker-hardening.sh +439 -0
- package/agents.code-workspace +11 -0
- package/bin/cli.js +250 -151
- package/docs/architecture.md +284 -0
- package/docs/development-guide.md +122 -0
- package/docs/index.md +48 -0
- package/docs/project-overview.md +56 -0
- package/docs/project-scan-report.json +50 -0
- package/docs/source-tree-analysis.md +84 -0
- package/docs/validation/bundled-installation-validation.md +52 -0
- package/lib/bmad-cache/bmb/.markdownlint-cli2.yaml +35 -0
- package/lib/bmad-cache/bmb/.nvmrc +1 -0
- package/lib/bmad-cache/bmb/.prettierignore +9 -0
- package/lib/bmad-cache/bmb/CNAME +1 -0
- package/lib/bmad-cache/bmb/LICENSE +30 -0
- package/lib/bmad-cache/bmb/README.md +63 -0
- package/lib/bmad-cache/bmb/eslint.config.mjs +141 -0
- package/lib/bmad-cache/bmb/package-lock.json +15283 -0
- package/lib/bmad-cache/bmb/package.json +96 -0
- package/lib/bmad-cache/bmb/prettier.config.mjs +32 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/bmad-manifest.json +62 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/recall_metrics.py +229 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/seed_tracker.py +156 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/symbol_stats.py +162 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/tests/test_recall_metrics.py +115 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/tests/test_seed_tracker.py +140 -0
- package/lib/bmad-cache/bmb/samples/bmad-agent-dream-weaver/scripts/tests/test_symbol_stats.py +113 -0
- package/lib/bmad-cache/bmb/samples/bmad-excalidraw/bmad-manifest.json +18 -0
- package/lib/bmad-cache/bmb/samples/bmad-excalidraw/scripts/generate_excalidraw.py +605 -0
- package/lib/bmad-cache/bmb/samples/bmad-excalidraw/scripts/tests/test_generate_excalidraw.py +360 -0
- package/lib/bmad-cache/bmb/samples/bmad-excalidraw/scripts/tests/test_validate_excalidraw.py +246 -0
- package/lib/bmad-cache/bmb/samples/bmad-excalidraw/scripts/validate_excalidraw.py +264 -0
- package/lib/bmad-cache/bmb/src/module-help.csv +7 -0
- package/lib/bmad-cache/bmb/src/module.yaml +20 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/bmad-manifest.json +24 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/bmad-manifest-schema.json +103 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/generate-html-report.py +1002 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/manifest.py +420 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/prepass-execution-deps.py +368 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/prepass-prompt-metrics.py +476 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/prepass-structure-capabilities.py +636 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/scan-path-standards.py +253 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-agent-builder/scripts/scan-scripts.py +745 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/bmad-manifest.json +23 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/bmad-manifest-schema.json +103 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/generate-html-report.py +1002 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/manifest.py +420 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/prepass-execution-deps.py +313 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/prepass-prompt-metrics.py +285 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/prepass-workflow-integrity.py +485 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/scan-path-standards.py +213 -0
- package/lib/bmad-cache/bmb/src/skills/bmad-workflow-builder/scripts/scan-scripts.py +745 -0
- package/lib/bmad-cache/bmb/tools/build-docs.mjs +448 -0
- package/lib/bmad-cache/bmb/tools/validate-file-refs.mjs +657 -0
- package/lib/bmad-cache/bmb/website/astro.config.mjs +134 -0
- package/lib/bmad-cache/bmb/website/public/favicon.ico +0 -0
- package/lib/bmad-cache/bmb/website/public/img/bmad-dark.png +0 -0
- package/lib/bmad-cache/bmb/website/public/img/bmad-light.png +0 -0
- package/lib/bmad-cache/bmb/website/src/components/Banner.astro +56 -0
- package/lib/bmad-cache/bmb/website/src/components/Header.astro +94 -0
- package/lib/bmad-cache/bmb/website/src/components/MobileMenuFooter.astro +33 -0
- package/lib/bmad-cache/bmb/website/src/content/config.ts +6 -0
- package/lib/bmad-cache/bmb/website/src/content/docs +1 -0
- package/lib/bmad-cache/bmb/website/src/lib/site-url.mjs +25 -0
- package/lib/bmad-cache/bmb/website/src/rehype-base-paths.js +88 -0
- package/lib/bmad-cache/bmb/website/src/rehype-markdown-links.js +117 -0
- package/lib/bmad-cache/bmb/website/src/styles/custom.css +484 -0
- package/lib/bmad-cache/cache-manifest.json +30 -0
- package/lib/bmad-cache/cis/.markdownlint-cli2.yaml +35 -0
- package/lib/bmad-cache/cis/.nvmrc +1 -0
- package/lib/bmad-cache/cis/.prettierignore +9 -0
- package/lib/bmad-cache/cis/CNAME +1 -0
- package/lib/bmad-cache/cis/LICENSE +26 -0
- package/lib/bmad-cache/cis/README.md +105 -0
- package/lib/bmad-cache/cis/eslint.config.mjs +141 -0
- package/lib/bmad-cache/cis/package.json +92 -0
- package/lib/bmad-cache/cis/prettier.config.mjs +32 -0
- package/lib/bmad-cache/cis/src/agents/brainstorming-coach.agent.yaml +21 -0
- package/lib/bmad-cache/cis/src/agents/creative-problem-solver.agent.yaml +21 -0
- package/lib/bmad-cache/cis/src/agents/design-thinking-coach.agent.yaml +21 -0
- package/lib/bmad-cache/cis/src/agents/innovation-strategist.agent.yaml +21 -0
- package/lib/bmad-cache/cis/src/agents/presentation-master.agent.yaml +53 -0
- package/lib/bmad-cache/cis/src/agents/storyteller/storyteller.agent.yaml +25 -0
- package/lib/bmad-cache/cis/src/module-help.csv +6 -0
- package/lib/bmad-cache/cis/src/module.yaml +27 -0
- package/lib/bmad-cache/cis/src/teams/creative-squad.yaml +7 -0
- package/lib/bmad-cache/cis/src/teams/default-party.csv +12 -0
- package/lib/bmad-cache/cis/src/workflows/README.md +175 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-design-thinking/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-design-thinking/design-methods.csv +31 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-innovation-strategy/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-innovation-strategy/innovation-frameworks.csv +31 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-problem-solving/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-problem-solving/solving-methods.csv +31 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-storytelling/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/cis/src/workflows/bmad-cis-storytelling/story-types.csv +26 -0
- package/lib/bmad-cache/cis/tools/build-docs.mjs +448 -0
- package/lib/bmad-cache/cis/website/astro.config.mjs +134 -0
- package/lib/bmad-cache/cis/website/public/favicon.ico +0 -0
- package/lib/bmad-cache/cis/website/public/img/bmad-dark.png +0 -0
- package/lib/bmad-cache/cis/website/public/img/bmad-light.png +0 -0
- package/lib/bmad-cache/cis/website/src/components/Banner.astro +56 -0
- package/lib/bmad-cache/cis/website/src/components/Header.astro +94 -0
- package/lib/bmad-cache/cis/website/src/components/MobileMenuFooter.astro +33 -0
- package/lib/bmad-cache/cis/website/src/content/config.ts +6 -0
- package/lib/bmad-cache/cis/website/src/content/docs +1 -0
- package/lib/bmad-cache/cis/website/src/lib/site-url.mjs +25 -0
- package/lib/bmad-cache/cis/website/src/rehype-base-paths.js +88 -0
- package/lib/bmad-cache/cis/website/src/rehype-markdown-links.js +117 -0
- package/lib/bmad-cache/cis/website/src/styles/custom.css +484 -0
- package/lib/bmad-cache/gds/.markdownlint-cli2.yaml +35 -0
- package/lib/bmad-cache/gds/.nvmrc +1 -0
- package/lib/bmad-cache/gds/.prettierignore +9 -0
- package/lib/bmad-cache/gds/CNAME +1 -0
- package/lib/bmad-cache/gds/LICENSE +26 -0
- package/lib/bmad-cache/gds/README.md +121 -0
- package/lib/bmad-cache/gds/eslint.config.mjs +141 -0
- package/lib/bmad-cache/gds/package.json +92 -0
- package/lib/bmad-cache/gds/prettier.config.mjs +32 -0
- package/lib/bmad-cache/gds/src/agents/game-architect.agent.yaml +44 -0
- package/lib/bmad-cache/gds/src/agents/game-designer.agent.yaml +45 -0
- package/lib/bmad-cache/gds/src/agents/game-dev.agent.yaml +49 -0
- package/lib/bmad-cache/gds/src/agents/game-qa.agent.yaml +63 -0
- package/lib/bmad-cache/gds/src/agents/game-scrum-master.agent.yaml +52 -0
- package/lib/bmad-cache/gds/src/agents/game-solo-dev.agent.yaml +53 -0
- package/lib/bmad-cache/gds/src/agents/tech-writer/tech-writer.agent.yaml +45 -0
- package/lib/bmad-cache/gds/src/gametest/qa-index.csv +18 -0
- package/lib/bmad-cache/gds/src/module-help.csv +35 -0
- package/lib/bmad-cache/gds/src/module.yaml +71 -0
- package/lib/bmad-cache/gds/src/teams/default-party.csv +12 -0
- package/lib/bmad-cache/gds/src/teams/team-gamedev.yaml +29 -0
- package/lib/bmad-cache/gds/src/workflows/1-preproduction/brainstorm-game/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +26 -0
- package/lib/bmad-cache/gds/src/workflows/1-preproduction/game-brief/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/1-preproduction/research/bmad-skill-manifest.yaml +9 -0
- package/lib/bmad-cache/gds/src/workflows/1-preproduction/research/gds-domain-research/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/create-prd/bmad-skill-manifest.yaml +14 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/create-prd/data/domain-complexity.csv +15 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/create-prd/data/project-types.csv +11 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/gdd/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/gdd/game-types.csv +25 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/gds-create-ux-design/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/gds/src/workflows/2-design/narrative/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/check-implementation-readiness/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/create-epics-and-stories/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/game-architecture/architecture-patterns.yaml +507 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/game-architecture/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/game-architecture/decision-catalog.yaml +340 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/game-architecture/engine-mcps.yaml +270 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/game-architecture/pattern-categories.csv +13 -0
- package/lib/bmad-cache/gds/src/workflows/3-technical/generate-project-context/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/code-review/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/correct-course/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/gds-create-story/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/gds-dev-story/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/retrospective/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/sprint-planning/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/sprint-planning/sprint-status-template.yaml +55 -0
- package/lib/bmad-cache/gds/src/workflows/4-production/sprint-status/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/document-project/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/document-project/documentation-requirements.csv +12 -0
- package/lib/bmad-cache/gds/src/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/automate/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/e2e-scaffold/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/performance/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/playtest-plan/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/test-design/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/test-framework/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gametest/test-review/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/src/workflows/gds-quick-flow/gds-quick-dev/bmad-skill-manifest.yaml +4 -0
- package/lib/bmad-cache/gds/src/workflows/gds-quick-flow/gds-quick-dev-new-preview/bmad-skill-manifest.yaml +4 -0
- package/lib/bmad-cache/gds/src/workflows/gds-quick-flow/quick-spec/bmad-skill-manifest.yaml +3 -0
- package/lib/bmad-cache/gds/tools/build-docs.mjs +450 -0
- package/lib/bmad-cache/gds/website/astro.config.mjs +134 -0
- package/lib/bmad-cache/gds/website/public/favicon.ico +0 -0
- package/lib/bmad-cache/gds/website/public/img/bmad-dark.png +0 -0
- package/lib/bmad-cache/gds/website/public/img/bmad-light.png +0 -0
- package/lib/bmad-cache/gds/website/src/components/Banner.astro +56 -0
- package/lib/bmad-cache/gds/website/src/components/Header.astro +94 -0
- package/lib/bmad-cache/gds/website/src/components/MobileMenuFooter.astro +33 -0
- package/lib/bmad-cache/gds/website/src/content/config.ts +6 -0
- package/lib/bmad-cache/gds/website/src/content/docs +1 -0
- package/lib/bmad-cache/gds/website/src/lib/site-url.mjs +25 -0
- package/lib/bmad-cache/gds/website/src/rehype-base-paths.js +88 -0
- package/lib/bmad-cache/gds/website/src/rehype-markdown-links.js +117 -0
- package/lib/bmad-cache/gds/website/src/styles/custom.css +484 -0
- package/lib/bmad-cache/tea/.coderabbit.yaml +40 -0
- package/lib/bmad-cache/tea/.github/CODE_OF_CONDUCT.md +128 -0
- package/lib/bmad-cache/tea/.github/FUNDING.yaml +15 -0
- package/lib/bmad-cache/tea/.github/ISSUE_TEMPLATE/config.yaml +11 -0
- package/lib/bmad-cache/tea/.github/ISSUE_TEMPLATE/feature_request.md +70 -0
- package/lib/bmad-cache/tea/.github/ISSUE_TEMPLATE/issue.md +61 -0
- package/lib/bmad-cache/tea/.github/workflows/docs.yaml +66 -0
- package/lib/bmad-cache/tea/.github/workflows/manual-release.yaml +195 -0
- package/lib/bmad-cache/tea/.github/workflows/quality.yaml +114 -0
- package/lib/bmad-cache/tea/.husky/pre-commit +20 -0
- package/lib/bmad-cache/tea/.markdownlint-cli2.yaml +36 -0
- package/lib/bmad-cache/tea/.nvmrc +1 -0
- package/lib/bmad-cache/tea/.prettierignore +9 -0
- package/lib/bmad-cache/tea/CHANGELOG.md +253 -0
- package/lib/bmad-cache/tea/CONTRIBUTING.md +268 -0
- package/lib/bmad-cache/tea/LICENSE +26 -0
- package/lib/bmad-cache/tea/README.md +371 -0
- package/lib/bmad-cache/tea/SECURITY.md +85 -0
- package/lib/bmad-cache/tea/docs/404.md +20 -0
- package/lib/bmad-cache/tea/docs/MIGRATION.md +488 -0
- package/lib/bmad-cache/tea/docs/explanation/engagement-models.md +767 -0
- package/lib/bmad-cache/tea/docs/explanation/fixture-architecture.md +484 -0
- package/lib/bmad-cache/tea/docs/explanation/knowledge-base-system.md +601 -0
- package/lib/bmad-cache/tea/docs/explanation/network-first-patterns.md +884 -0
- package/lib/bmad-cache/tea/docs/explanation/risk-based-testing.md +628 -0
- package/lib/bmad-cache/tea/docs/explanation/step-file-architecture.md +599 -0
- package/lib/bmad-cache/tea/docs/explanation/subagent-architecture.md +189 -0
- package/lib/bmad-cache/tea/docs/explanation/tea-overview.md +474 -0
- package/lib/bmad-cache/tea/docs/explanation/test-quality-standards.md +965 -0
- package/lib/bmad-cache/tea/docs/explanation/testing-as-engineering.md +115 -0
- package/lib/bmad-cache/tea/docs/glossary/index.md +160 -0
- package/lib/bmad-cache/tea/docs/how-to/brownfield/use-tea-for-enterprise.md +571 -0
- package/lib/bmad-cache/tea/docs/how-to/brownfield/use-tea-with-existing-tests.md +631 -0
- package/lib/bmad-cache/tea/docs/how-to/customization/configure-browser-automation.md +243 -0
- package/lib/bmad-cache/tea/docs/how-to/customization/integrate-playwright-utils.md +846 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-atdd.md +464 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-automate.md +693 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-nfr-assess.md +731 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-test-design.md +144 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-test-review.md +634 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/run-trace.md +959 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/setup-ci.md +763 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/setup-test-framework.md +122 -0
- package/lib/bmad-cache/tea/docs/how-to/workflows/teach-me-testing.md +302 -0
- package/lib/bmad-cache/tea/docs/index.md +74 -0
- package/lib/bmad-cache/tea/docs/reference/commands.md +353 -0
- package/lib/bmad-cache/tea/docs/reference/configuration.md +1122 -0
- package/lib/bmad-cache/tea/docs/reference/knowledge-base.md +404 -0
- package/lib/bmad-cache/tea/docs/reference/troubleshooting.md +788 -0
- package/lib/bmad-cache/tea/docs/tutorials/learn-testing-tea-academy.md +266 -0
- package/lib/bmad-cache/tea/docs/tutorials/tea-lite-quickstart.md +465 -0
- package/lib/bmad-cache/tea/eslint.config.mjs +141 -0
- package/lib/bmad-cache/tea/package-lock.json +16046 -0
- package/lib/bmad-cache/tea/package.json +118 -0
- package/lib/bmad-cache/tea/prettier.config.mjs +32 -0
- package/lib/bmad-cache/tea/src/agents/tea.agent.yaml +67 -0
- package/lib/bmad-cache/tea/src/module-help.csv +10 -0
- package/lib/bmad-cache/tea/src/module.yaml +299 -0
- package/lib/bmad-cache/tea/src/teams/default-party.csv +2 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/adr-quality-readiness-checklist.md +377 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/api-request.md +563 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/api-testing-patterns.md +915 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/auth-session.md +548 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/burn-in.md +273 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/ci-burn-in.md +717 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/component-tdd.md +486 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/contract-testing.md +1050 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/data-factories.md +500 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/email-auth.md +721 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/error-handling.md +725 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/feature-flags.md +750 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/file-utils.md +456 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/fixture-architecture.md +401 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/fixtures-composition.md +382 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/intercept-network-call.md +426 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/log.md +426 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/network-error-monitor.md +401 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/network-first.md +486 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/network-recorder.md +527 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/nfr-criteria.md +670 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/overview.md +286 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pact-consumer-di.md +310 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pact-consumer-framework-setup.md +635 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pact-mcp.md +204 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pactjs-utils-consumer-helpers.md +270 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pactjs-utils-overview.md +216 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pactjs-utils-provider-verifier.md +315 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/pactjs-utils-request-filter.md +224 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/playwright-cli.md +165 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/playwright-config.md +730 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/probability-impact.md +601 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/recurse.md +421 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/risk-governance.md +615 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/selective-testing.md +732 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/selector-resilience.md +527 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/test-healing-patterns.md +644 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/test-levels-framework.md +473 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/test-priorities-matrix.md +373 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/test-quality.md +664 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/timing-debugging.md +372 -0
- package/lib/bmad-cache/tea/src/testarch/knowledge/visual-debugging.md +524 -0
- package/lib/bmad-cache/tea/src/testarch/tea-index.csv +43 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/README.md +74 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/checklist.md +197 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/data/curriculum.yaml +129 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/data/quiz-questions.yaml +206 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/data/role-paths.yaml +136 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/data/session-content-map.yaml +207 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/data/tea-resources-index.yaml +359 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/instructions.md +130 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-01-init.md +235 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-01b-continue.md +147 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-02-assess.md +258 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-03-session-menu.md +219 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-01.md +460 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-02.md +465 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-03.md +301 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-04.md +234 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-05.md +234 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-06.md +209 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-04-session-07.md +212 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-c/step-05-completion.md +339 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-e/step-e-01-assess-workflow.md +141 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-e/step-e-02-apply-edits.md +122 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/steps-v/step-v-01-validate.md +263 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/templates/certificate-template.md +86 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/templates/progress-template.yaml +95 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/templates/session-notes-template.md +83 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/workflow-plan-teach-me-testing.md +950 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-teach-me-testing/workflow.md +90 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/atdd-checklist-template.md +371 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/checklist.md +374 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/instructions.md +45 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-01-preflight-and-context.md +226 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-01b-resume.md +96 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-02-generation-mode.md +125 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-03-test-strategy.md +110 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-04-generate-tests.md +334 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-04a-subagent-api-failing.md +286 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-04b-subagent-e2e-failing.md +244 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-04c-aggregate.md +370 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-c/step-05-validate-and-complete.md +106 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/validation-report-20260127-095021.md +73 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/validation-report-20260127-102401.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/workflow-plan.md +21 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-atdd/workflow.yaml +46 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/checklist.md +611 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/instructions.md +50 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-01-preflight-and-context.md +237 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-01b-resume.md +94 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-02-identify-targets.md +169 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-03-generate-tests.md +394 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-03a-subagent-api.md +263 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-03b-subagent-backend.md +246 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-03b-subagent-e2e.md +213 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-03c-aggregate.md +393 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-c/step-04-validate-and-summarize.md +106 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/validation-report-20260127-095021.md +72 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/validation-report-20260127-102401.md +114 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/workflow-plan.md +20 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-automate/workflow.yaml +53 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/azure-pipelines-template.yaml +155 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/checklist.md +289 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/github-actions-template.yaml +328 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/gitlab-ci-template.yaml +158 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/harness-pipeline-template.yaml +159 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/instructions.md +45 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/jenkins-pipeline-template.groovy +129 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-c/step-01-preflight.md +158 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-c/step-01b-resume.md +110 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-c/step-02-generate-pipeline.md +279 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-c/step-03-configure-quality-gates.md +135 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-c/step-04-validate-and-summary.md +92 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/steps-v/step-01-validate.md +81 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/validation-report-20260127-095021.md +72 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/validation-report-20260127-102401.md +114 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/workflow-plan.md +20 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-ci/workflow.yaml +48 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/checklist.md +345 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/instructions.md +45 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-01-preflight.md +132 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-01b-resume.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-02-select-framework.md +117 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-03-scaffold-framework.md +323 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-04-docs-and-scripts.md +105 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-c/step-05-validate-and-summary.md +93 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/validation-report-20260127-095021.md +73 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/validation-report-20260127-102401.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/workflow-plan.md +22 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-framework/workflow.yaml +48 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/checklist.md +407 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/instructions.md +43 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/nfr-report-template.md +470 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-01-load-context.md +138 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-01b-resume.md +106 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-02-define-thresholds.md +107 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-03-gather-evidence.md +108 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04-evaluate-and-score.md +254 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04a-subagent-security.md +138 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04b-subagent-performance.md +84 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04c-subagent-reliability.md +85 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04d-subagent-scalability.md +88 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-04e-aggregate-nfr.md +264 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-05-generate-report.md +108 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/validation-report-20260127-095021.md +73 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/validation-report-20260127-102401.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/workflow-plan.md +19 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/workflow.yaml +48 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/checklist.md +464 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/instructions.md +105 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-01-detect-mode.md +134 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-01b-resume.md +102 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-02-load-context.md +242 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-03-risk-and-testability.md +110 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-04-coverage-plan.md +123 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-c/step-05-generate-output.md +222 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/test-design-architecture-template.md +230 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/test-design-handoff-template.md +70 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/test-design-qa-template.md +396 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/test-design-template.md +344 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/validation-report-20260127-095021.md +73 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/validation-report-20260127-102401.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/workflow-plan.md +22 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-design/workflow.yaml +77 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/checklist.md +475 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/instructions.md +45 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-01-load-context.md +197 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-01b-resume.md +104 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-02-discover-tests.md +113 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03-quality-evaluation.md +274 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03a-subagent-determinism.md +214 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03b-subagent-isolation.md +125 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03c-subagent-maintainability.md +102 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03e-subagent-performance.md +117 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-03f-aggregate-scores.md +277 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-c/step-04-generate-report.md +111 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/test-review-template.md +387 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/validation-report-20260127-095021.md +72 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/validation-report-20260127-102401.md +114 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/workflow-plan.md +18 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-test-review/workflow.yaml +48 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/SKILL.md +6 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/bmad-skill-manifest.yaml +1 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/checklist.md +647 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/instructions.md +43 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-01-load-context.md +105 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-01b-resume.md +102 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-02-discover-tests.md +112 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-03-map-criteria.md +97 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-04-analyze-gaps.md +421 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-c/step-05-gate-decision.md +266 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-e/step-01-assess.md +65 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-e/step-02-apply-edit.md +60 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/steps-v/step-01-validate.md +67 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/trace-template.md +708 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/validation-report-20260127-095021.md +73 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/validation-report-20260127-102401.md +116 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/workflow-plan.md +21 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/workflow.md +41 -0
- package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-trace/workflow.yaml +56 -0
- package/lib/bmad-cache/tea/test/README.md +23 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
- package/lib/bmad-cache/tea/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
- package/lib/bmad-cache/tea/test/schema/agent.js +491 -0
- package/lib/bmad-cache/tea/test/test-agent-schema.js +387 -0
- package/lib/bmad-cache/tea/test/test-installation-components.js +214 -0
- package/lib/bmad-cache/tea/test/test-knowledge-base.js +208 -0
- package/lib/bmad-cache/tea/test/unit-test-schema.js +133 -0
- package/lib/bmad-cache/tea/test/validate-agent-schema.js +110 -0
- package/lib/bmad-cache/tea/tools/build-docs.js +575 -0
- package/lib/bmad-cache/tea/tools/fix-doc-links.js +288 -0
- package/lib/bmad-cache/tea/tools/schema/agent.js +491 -0
- package/lib/bmad-cache/tea/tools/validate-agent-schema.js +111 -0
- package/lib/bmad-cache/tea/tools/validate-doc-links.js +371 -0
- package/lib/bmad-cache/tea/tools/validate-tea-workflow-descriptions.js +122 -0
- package/lib/bmad-cache/tea/tools/verify-paths.js +100 -0
- package/lib/bmad-cache/tea/website/README.md +137 -0
- package/lib/bmad-cache/tea/website/astro.config.mjs +179 -0
- package/lib/bmad-cache/tea/website/package-lock.json +6856 -0
- package/lib/bmad-cache/tea/website/package.json +24 -0
- package/lib/bmad-cache/tea/website/public/favicon.ico +0 -0
- package/lib/bmad-cache/tea/website/public/img/tea-logo.svg +7 -0
- package/lib/bmad-cache/tea/website/public/robots.txt +37 -0
- package/lib/bmad-cache/tea/website/src/components/Banner.astro +59 -0
- package/lib/bmad-cache/tea/website/src/components/Header.astro +121 -0
- package/lib/bmad-cache/tea/website/src/components/MobileMenuFooter.astro +53 -0
- package/lib/bmad-cache/tea/website/src/content/config.ts +6 -0
- package/lib/bmad-cache/tea/website/src/content/docs +1 -0
- package/lib/bmad-cache/tea/website/src/lib/site-url.js +25 -0
- package/lib/bmad-cache/tea/website/src/pages/404.astro +11 -0
- package/lib/bmad-cache/tea/website/src/rehype-base-paths.js +89 -0
- package/lib/bmad-cache/tea/website/src/rehype-markdown-links.js +117 -0
- package/lib/bmad-cache/tea/website/src/styles/custom.css +499 -0
- package/lib/bmad-cache/tea/website/tsconfig.json +9 -0
- package/lib/bmad.js +76 -10
- package/lib/installer.js +23 -1
- package/package.json +4 -2
- package/scripts/build-bmad-cache.js +288 -0
- package/test/yes-flag.test.js +193 -0
|
@@ -0,0 +1,1122 @@
|
|
|
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 Engineering 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
|
+
test_artifacts: _bmad-output/test-artifacts
|
|
32
|
+
tea_use_playwright_utils: true
|
|
33
|
+
tea_use_pactjs_utils: true
|
|
34
|
+
tea_pact_mcp: 'mcp'
|
|
35
|
+
tea_browser_automation: 'auto'
|
|
36
|
+
tea_execution_mode: 'auto'
|
|
37
|
+
tea_capability_probe: true
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Canonical Schema (Source of Truth)
|
|
41
|
+
|
|
42
|
+
**Location:** `src/module.yaml`
|
|
43
|
+
|
|
44
|
+
**Purpose:** Defines available configuration keys, defaults, and installer prompts
|
|
45
|
+
|
|
46
|
+
**Created By:** BMAD maintainers (part of BMAD repo)
|
|
47
|
+
|
|
48
|
+
**Status:** Versioned in BMAD repository
|
|
49
|
+
|
|
50
|
+
**Usage:** Reference only (do not edit unless contributing to BMAD)
|
|
51
|
+
|
|
52
|
+
**Note:** The installer reads `module.yaml` to prompt for config values, then writes user choices to `_bmad/tea/config.yaml` in your project.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## TEA Configuration Options
|
|
57
|
+
|
|
58
|
+
### test_artifacts
|
|
59
|
+
|
|
60
|
+
Base output folder for TEA-generated artifacts (test designs, reports, traceability, etc).
|
|
61
|
+
|
|
62
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
63
|
+
|
|
64
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
65
|
+
|
|
66
|
+
**Type:** `string`
|
|
67
|
+
|
|
68
|
+
**Default:** `{output_folder}/test-artifacts`
|
|
69
|
+
|
|
70
|
+
**Purpose:** Allows TEA outputs to live outside the core BMM output folder.
|
|
71
|
+
|
|
72
|
+
**Example:**
|
|
73
|
+
|
|
74
|
+
```yaml
|
|
75
|
+
test_artifacts: docs/testing-artifacts
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### tea_use_playwright_utils
|
|
79
|
+
|
|
80
|
+
Enable Playwright Utils integration for production-ready fixtures and utilities.
|
|
81
|
+
|
|
82
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
83
|
+
|
|
84
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
85
|
+
|
|
86
|
+
**Type:** `boolean`
|
|
87
|
+
|
|
88
|
+
**Default:** `true`
|
|
89
|
+
|
|
90
|
+
**Installer Prompt:**
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
Enable Playwright Utils integration?
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**Purpose:** Enables TEA to:
|
|
97
|
+
|
|
98
|
+
- Include playwright-utils in `framework` scaffold
|
|
99
|
+
- Generate tests using playwright-utils fixtures
|
|
100
|
+
- Review tests against playwright-utils patterns
|
|
101
|
+
- Configure CI with burn-in and selective testing utilities
|
|
102
|
+
|
|
103
|
+
**Affects Workflows:**
|
|
104
|
+
|
|
105
|
+
- `framework` - Includes playwright-utils imports and fixture examples
|
|
106
|
+
- `atdd` - Uses fixtures like `apiRequest`, `authSession` in generated tests
|
|
107
|
+
- `automate` - Leverages utilities for test patterns
|
|
108
|
+
- `test-review` - Reviews against playwright-utils best practices
|
|
109
|
+
- `ci` - Includes burn-in utility and selective testing
|
|
110
|
+
|
|
111
|
+
**Example (Enable):**
|
|
112
|
+
|
|
113
|
+
```yaml
|
|
114
|
+
tea_use_playwright_utils: true
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
**Example (Disable):**
|
|
118
|
+
|
|
119
|
+
```yaml
|
|
120
|
+
tea_use_playwright_utils: false
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Prerequisites:**
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
npm install -D @seontechnologies/playwright-utils
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
**Related:**
|
|
130
|
+
|
|
131
|
+
- [Integrate Playwright Utils Guide](/docs/how-to/customization/integrate-playwright-utils.md)
|
|
132
|
+
- [Playwright Utils on npm](https://www.npmjs.com/package/@seontechnologies/playwright-utils)
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
### tea_use_pactjs_utils
|
|
137
|
+
|
|
138
|
+
Enable Pact.js Utils integration for production-ready contract testing utilities.
|
|
139
|
+
|
|
140
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
141
|
+
|
|
142
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
143
|
+
|
|
144
|
+
**Type:** `boolean`
|
|
145
|
+
|
|
146
|
+
**Default:** `true`
|
|
147
|
+
|
|
148
|
+
**Installer Prompt:**
|
|
149
|
+
|
|
150
|
+
```
|
|
151
|
+
Enable Pact.js Utils integration for contract testing?
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
**Purpose:** Enables TEA to:
|
|
155
|
+
|
|
156
|
+
- Load Pact.js Utils knowledge fragments during context loading
|
|
157
|
+
- Scaffold contract test structure and examples in `framework`
|
|
158
|
+
- Generate contract testing guidance in `atdd` and `automate`
|
|
159
|
+
- Review provider verification patterns in `test-review`
|
|
160
|
+
- Add contract pipeline stage and gates in `ci`
|
|
161
|
+
|
|
162
|
+
**Affects Workflows:**
|
|
163
|
+
|
|
164
|
+
- `framework` - Creates pact test folders and pactjs-utils sample patterns
|
|
165
|
+
- `atdd` - Loads pactjs-utils fragments for contract-aware generation context
|
|
166
|
+
- `automate` - Loads pactjs-utils fragments and passes pact config to subagents
|
|
167
|
+
- `test-design` - Loads pactjs-utils fragments for system/epic planning
|
|
168
|
+
- `test-review` - Uses pactjs-utils provider/review patterns
|
|
169
|
+
- `ci` - Adds contract-test stage and quality gates
|
|
170
|
+
|
|
171
|
+
**Example (Enable):**
|
|
172
|
+
|
|
173
|
+
```yaml
|
|
174
|
+
tea_use_pactjs_utils: true
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
**Example (Disable):**
|
|
178
|
+
|
|
179
|
+
```yaml
|
|
180
|
+
tea_use_pactjs_utils: false
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
**Prerequisites:**
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
npm install -D @seontechnologies/pactjs-utils @pact-foundation/pact
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
**Related:**
|
|
190
|
+
|
|
191
|
+
- [Pact.js Utils docs](https://seontechnologies.github.io/pactjs-utils/)
|
|
192
|
+
- [TEA Overview - Optional Integrations](/docs/explanation/tea-overview.md#optional-integrations)
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
### tea_pact_mcp
|
|
197
|
+
|
|
198
|
+
Pact MCP strategy for broker interaction during contract testing workflows.
|
|
199
|
+
|
|
200
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
201
|
+
|
|
202
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
203
|
+
|
|
204
|
+
**Type:** `string`
|
|
205
|
+
|
|
206
|
+
**Default:** `"mcp"`
|
|
207
|
+
|
|
208
|
+
**Options:** `"mcp"` | `"none"`
|
|
209
|
+
|
|
210
|
+
**Installer Prompt:**
|
|
211
|
+
|
|
212
|
+
```
|
|
213
|
+
Enable SmartBear MCP for PactFlow/Pact Broker interaction?
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
**Purpose:** Controls whether TEA can use SmartBear MCP tools for:
|
|
217
|
+
|
|
218
|
+
- Provider-state discovery in design/generation workflows
|
|
219
|
+
- Pact test review assistance
|
|
220
|
+
- Can-i-deploy and matrix guidance in CI workflows
|
|
221
|
+
|
|
222
|
+
**Affects Workflows:**
|
|
223
|
+
|
|
224
|
+
- `test-design` - Broker-aware contract context loading
|
|
225
|
+
- `automate` - Broker-assisted pact generation context
|
|
226
|
+
- `test-review` - MCP-assisted pact review context
|
|
227
|
+
- `ci` - MCP can-i-deploy/matrix guidance references
|
|
228
|
+
|
|
229
|
+
**Prerequisites:**
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
npm install -g @smartbear/mcp
|
|
233
|
+
# or: npx -y @smartbear/mcp@latest
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
**Required broker env vars (for Pact features):**
|
|
237
|
+
|
|
238
|
+
- `PACT_BROKER_BASE_URL`
|
|
239
|
+
- `PACT_BROKER_TOKEN` (or username/password for basic auth)
|
|
240
|
+
|
|
241
|
+
**Example (Enable MCP):**
|
|
242
|
+
|
|
243
|
+
```yaml
|
|
244
|
+
tea_pact_mcp: 'mcp'
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
**Example (Disable MCP):**
|
|
248
|
+
|
|
249
|
+
```yaml
|
|
250
|
+
tea_pact_mcp: 'none'
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
**Related:**
|
|
254
|
+
|
|
255
|
+
- [Configure Browser Automation Guide](/docs/how-to/customization/configure-browser-automation.md)
|
|
256
|
+
- [SmartBear MCP docs](https://developer.smartbear.com/smartbear-mcp/docs/getting-started)
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
### tea_browser_automation
|
|
261
|
+
|
|
262
|
+
Browser automation strategy for TEA workflows. Controls how TEA interacts with live browsers during test generation.
|
|
263
|
+
|
|
264
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
265
|
+
|
|
266
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
267
|
+
|
|
268
|
+
**Type:** `string`
|
|
269
|
+
|
|
270
|
+
**Default:** `"auto"`
|
|
271
|
+
|
|
272
|
+
**Options:** `"auto"` | `"cli"` | `"mcp"` | `"none"`
|
|
273
|
+
|
|
274
|
+
**Installer Prompt:**
|
|
275
|
+
|
|
276
|
+
```
|
|
277
|
+
How should TEA interact with browsers during test generation?
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
**Purpose:** Controls which browser automation tool TEA uses:
|
|
281
|
+
|
|
282
|
+
| Mode | Behavior |
|
|
283
|
+
| ------ | ----------------------------------------------------------------------------------------------------------- |
|
|
284
|
+
| `auto` | Smart selection — CLI for stateless tasks, MCP for stateful flows. Falls back gracefully. **(Recommended)** |
|
|
285
|
+
| `cli` | CLI only (`@playwright/cli`). MCP ignored. |
|
|
286
|
+
| `mcp` | MCP only. CLI ignored. Same as old `tea_use_mcp_enhancements: true`. |
|
|
287
|
+
| `none` | No browser interaction. Pure AI generation from docs/code. |
|
|
288
|
+
|
|
289
|
+
**Affects Workflows:**
|
|
290
|
+
|
|
291
|
+
- `test-design` - Exploratory mode (CLI snapshots for page discovery)
|
|
292
|
+
- `atdd` - Recording mode (CLI for selector verification, MCP for complex interactions)
|
|
293
|
+
- `automate` - Healing mode (MCP for debugging) + recording mode (CLI for snapshots)
|
|
294
|
+
- `test-review` - Evidence collection (CLI for traces, screenshots)
|
|
295
|
+
|
|
296
|
+
**Prerequisites:**
|
|
297
|
+
|
|
298
|
+
- **CLI:** `npm install -g @playwright/cli@latest` then `playwright-cli install --skills`
|
|
299
|
+
- **MCP:** Configure MCP servers in IDE (see [Configure Browser Automation](/docs/how-to/customization/configure-browser-automation.md))
|
|
300
|
+
|
|
301
|
+
**Example (Auto — Recommended):**
|
|
302
|
+
|
|
303
|
+
```yaml
|
|
304
|
+
tea_browser_automation: 'auto'
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
**Example (CLI only):**
|
|
308
|
+
|
|
309
|
+
```yaml
|
|
310
|
+
tea_browser_automation: 'cli'
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
**Example (MCP only — same as old behavior):**
|
|
314
|
+
|
|
315
|
+
```yaml
|
|
316
|
+
tea_browser_automation: 'mcp'
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
**Example (Disable):**
|
|
320
|
+
|
|
321
|
+
```yaml
|
|
322
|
+
tea_browser_automation: 'none'
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
**Migration from old flag:**
|
|
326
|
+
|
|
327
|
+
| Old Setting | New Equivalent |
|
|
328
|
+
| --------------------------------- | -------------------------------- |
|
|
329
|
+
| `tea_use_mcp_enhancements: true` | `tea_browser_automation: "auto"` |
|
|
330
|
+
| `tea_use_mcp_enhancements: false` | `tea_browser_automation: "none"` |
|
|
331
|
+
|
|
332
|
+
**Related:**
|
|
333
|
+
|
|
334
|
+
- [Configure Browser Automation Guide](/docs/how-to/customization/configure-browser-automation.md)
|
|
335
|
+
- [TEA Overview - Browser Automation](/docs/explanation/tea-overview.md#browser-automation-playwright-cli-mcp)
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
### tea_execution_mode
|
|
340
|
+
|
|
341
|
+
Execution strategy for orchestration-capable TEA workflows.
|
|
342
|
+
|
|
343
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
344
|
+
|
|
345
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
346
|
+
|
|
347
|
+
**Type:** `string`
|
|
348
|
+
|
|
349
|
+
**Default:** `"auto"`
|
|
350
|
+
|
|
351
|
+
**Options:** `"auto"` | `"subagent"` | `"agent-team"` | `"sequential"`
|
|
352
|
+
|
|
353
|
+
**Installer Prompt:**
|
|
354
|
+
|
|
355
|
+
```
|
|
356
|
+
How should TEA orchestrate multi-step generation and evaluation?
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
**Purpose:** Defines how TEA orchestrates worker-style steps in these workflows:
|
|
360
|
+
|
|
361
|
+
- `automate`
|
|
362
|
+
- `atdd`
|
|
363
|
+
- `test-review`
|
|
364
|
+
- `nfr-assess`
|
|
365
|
+
- `framework`
|
|
366
|
+
- `ci`
|
|
367
|
+
- `test-design`
|
|
368
|
+
- `trace`
|
|
369
|
+
|
|
370
|
+
`teach-me-testing` does not use this setting.
|
|
371
|
+
|
|
372
|
+
**Mode behavior:**
|
|
373
|
+
|
|
374
|
+
| Mode | Behavior |
|
|
375
|
+
| ------------ | ------------------------------------------------------------------------------------------------ |
|
|
376
|
+
| `auto` | Recommended. TEA picks best supported mode using runtime capability checks (if probing enabled). |
|
|
377
|
+
| `agent-team` | Prefer runtime team/delegation orchestration. |
|
|
378
|
+
| `subagent` | Prefer isolated subagent-style orchestration. |
|
|
379
|
+
| `sequential` | Force one-by-one execution. Most deterministic, typically slowest. |
|
|
380
|
+
|
|
381
|
+
**Important:** In `agent-team` and `subagent` modes, runtime decides scheduling and concurrency. TEA does not enforce a separate parallel-worker cap.
|
|
382
|
+
|
|
383
|
+
**Per-workflow effect:**
|
|
384
|
+
|
|
385
|
+
| Workflow | Orchestrated unit | What mode changes |
|
|
386
|
+
| ------------- | ---------------------------------------------- | -------------------- |
|
|
387
|
+
| `automate` | API + E2E/backend generation workers | Dispatch style only |
|
|
388
|
+
| `atdd` | failing API + failing E2E workers | Dispatch style only |
|
|
389
|
+
| `test-review` | quality-dimension workers | Dispatch style only |
|
|
390
|
+
| `nfr-assess` | domain assessment workers | Dispatch style only |
|
|
391
|
+
| `framework` | scaffold work units | Dispatch style only |
|
|
392
|
+
| `ci` | orchestration-capable pipeline generation step | Orchestration policy |
|
|
393
|
+
| `test-design` | orchestration-capable output generation step | Orchestration policy |
|
|
394
|
+
| `trace` | phase/work-unit separation with dependencies | Orchestration policy |
|
|
395
|
+
|
|
396
|
+
Output contracts remain the same across modes for a given workflow.
|
|
397
|
+
|
|
398
|
+
**Resolution order:**
|
|
399
|
+
|
|
400
|
+
1. Normalize explicit run-level wording (if present):
|
|
401
|
+
- `agent team` / `agent teams` / `agentteam` -> `agent-team`
|
|
402
|
+
- `subagent` / `subagents` / `sub agent` / `sub agents` -> `subagent`
|
|
403
|
+
- `sequential` -> `sequential`
|
|
404
|
+
- `auto` -> `auto`
|
|
405
|
+
2. If no explicit override exists, use `tea_execution_mode` from `_bmad/tea/config.yaml`.
|
|
406
|
+
3. If `tea_capability_probe: true`, detect runtime support for `agent-team` and `subagent`.
|
|
407
|
+
4. Resolve mode:
|
|
408
|
+
- `auto` -> `agent-team` -> `subagent` -> `sequential`
|
|
409
|
+
- explicit `agent-team`/`subagent` -> fallback only when probing is enabled
|
|
410
|
+
- `sequential` -> always sequential
|
|
411
|
+
|
|
412
|
+
Default when no explicit run request is given: configured value (typically `auto`).
|
|
413
|
+
|
|
414
|
+
**Example (Recommended):**
|
|
415
|
+
|
|
416
|
+
```yaml
|
|
417
|
+
tea_execution_mode: 'auto'
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
**Example (Force Sequential):**
|
|
421
|
+
|
|
422
|
+
```yaml
|
|
423
|
+
tea_execution_mode: 'sequential'
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
---
|
|
427
|
+
|
|
428
|
+
### tea_capability_probe
|
|
429
|
+
|
|
430
|
+
Whether TEA should probe runtime capabilities before resolving execution mode.
|
|
431
|
+
|
|
432
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
433
|
+
|
|
434
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
435
|
+
|
|
436
|
+
**Type:** `boolean`
|
|
437
|
+
|
|
438
|
+
**Default:** `true`
|
|
439
|
+
|
|
440
|
+
**Purpose:** When enabled, TEA checks whether `agent-team` or `subagent` execution is actually supported and falls back safely. When disabled, TEA honors configured mode strictly and fails if unsupported.
|
|
441
|
+
|
|
442
|
+
**Example (Recommended):**
|
|
443
|
+
|
|
444
|
+
```yaml
|
|
445
|
+
tea_capability_probe: true
|
|
446
|
+
```
|
|
447
|
+
|
|
448
|
+
**Example (Strict):**
|
|
449
|
+
|
|
450
|
+
```yaml
|
|
451
|
+
tea_capability_probe: false
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
---
|
|
455
|
+
|
|
456
|
+
### test_stack_type
|
|
457
|
+
|
|
458
|
+
Detected or configured project stack type. Controls CI pipeline generation and framework selection.
|
|
459
|
+
|
|
460
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
461
|
+
|
|
462
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
463
|
+
|
|
464
|
+
**Type:** `string`
|
|
465
|
+
|
|
466
|
+
**Default:** `"auto"`
|
|
467
|
+
|
|
468
|
+
**Options:** `"auto"` | `"frontend"` | `"backend"` | `"fullstack"`
|
|
469
|
+
|
|
470
|
+
**Purpose:** Determines stack-specific behavior:
|
|
471
|
+
|
|
472
|
+
| Stack Type | Behavior |
|
|
473
|
+
| ----------- | ---------------------------------------------------------------------------------------------------------- |
|
|
474
|
+
| `auto` | Auto-detect from project manifests (playwright.config, jest.config, etc.) |
|
|
475
|
+
| `frontend` | Browser-based tests (Playwright/Cypress), browser install in CI, burn-in enabled |
|
|
476
|
+
| `backend` | API/unit tests (pytest, JUnit, Go test, Jest/Vitest, etc.), no browser install, burn-in skipped by default |
|
|
477
|
+
| `fullstack` | Both frontend and backend tests, full CI pipeline |
|
|
478
|
+
|
|
479
|
+
**Affects Workflows:**
|
|
480
|
+
|
|
481
|
+
- `ci` - Stack-conditional pipeline stages (browser install, burn-in)
|
|
482
|
+
- `framework` - Framework scaffold adapts to stack type
|
|
483
|
+
|
|
484
|
+
**Example:**
|
|
485
|
+
|
|
486
|
+
```yaml
|
|
487
|
+
test_stack_type: 'fullstack'
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
### ci_platform
|
|
493
|
+
|
|
494
|
+
CI/CD platform for pipeline generation.
|
|
495
|
+
|
|
496
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
497
|
+
|
|
498
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
499
|
+
|
|
500
|
+
**Type:** `string`
|
|
501
|
+
|
|
502
|
+
**Default:** `"auto"`
|
|
503
|
+
|
|
504
|
+
**Options:** `"auto"` | `"github-actions"` | `"gitlab-ci"` | `"jenkins"` | `"azure-devops"` | `"harness"` | `"circle-ci"` | `"other"`
|
|
505
|
+
|
|
506
|
+
**Purpose:** Controls which CI template is used for pipeline generation.
|
|
507
|
+
|
|
508
|
+
When set to `"auto"`, TEA detects the platform by scanning for existing CI configuration files (`.github/workflows/`, `.gitlab-ci.yml`, `Jenkinsfile`, `azure-pipelines.yml`, `.harness/`, `.circleci/config.yml`) and falls back to inferring from the git remote.
|
|
509
|
+
|
|
510
|
+
**Affects Workflows:**
|
|
511
|
+
|
|
512
|
+
- `ci` - Template selection and output path
|
|
513
|
+
|
|
514
|
+
**Example:**
|
|
515
|
+
|
|
516
|
+
```yaml
|
|
517
|
+
ci_platform: 'github-actions'
|
|
518
|
+
```
|
|
519
|
+
|
|
520
|
+
---
|
|
521
|
+
|
|
522
|
+
### test_framework
|
|
523
|
+
|
|
524
|
+
Detected or configured test framework preference.
|
|
525
|
+
|
|
526
|
+
**Schema Location:** `src/module.yaml` (TEA module config)
|
|
527
|
+
|
|
528
|
+
**User Config:** `_bmad/tea/config.yaml`
|
|
529
|
+
|
|
530
|
+
**Type:** `string`
|
|
531
|
+
|
|
532
|
+
**Default:** `"auto"`
|
|
533
|
+
|
|
534
|
+
**Options:** `"auto"` | `"playwright"` | `"cypress"` | `"jest"` | `"vitest"` | `"pytest"` | `"junit"` | `"go-test"` | `"dotnet-test"` | `"rspec"` | `"other"`
|
|
535
|
+
|
|
536
|
+
**Purpose:** Controls which test framework patterns TEA uses for code generation. When set to `"auto"`, TEA detects from project configuration files and manifests. Supports both frontend (Playwright, Cypress, Jest, Vitest) and backend (pytest, JUnit, Go test, dotnet test, RSpec) frameworks.
|
|
537
|
+
|
|
538
|
+
**Affects Workflows:**
|
|
539
|
+
|
|
540
|
+
- `framework` - Scaffold generation
|
|
541
|
+
- `ci` - Test commands in pipeline
|
|
542
|
+
- `atdd` - Test code generation patterns
|
|
543
|
+
- `automate` - Test code generation patterns
|
|
544
|
+
|
|
545
|
+
**Example:**
|
|
546
|
+
|
|
547
|
+
```yaml
|
|
548
|
+
test_framework: 'playwright'
|
|
549
|
+
```
|
|
550
|
+
|
|
551
|
+
---
|
|
552
|
+
|
|
553
|
+
## Core BMM Configuration (Inherited by TEA)
|
|
554
|
+
|
|
555
|
+
TEA also uses core BMM configuration options from `_bmad/tea/config.yaml`:
|
|
556
|
+
|
|
557
|
+
### output_folder
|
|
558
|
+
|
|
559
|
+
**Type:** `string`
|
|
560
|
+
|
|
561
|
+
**Default:** `_bmad-output`
|
|
562
|
+
|
|
563
|
+
**Purpose:** Base output folder for core BMM artifacts. TEA writes test artifacts under `test_artifacts` (defaults to `{output_folder}/test-artifacts`).
|
|
564
|
+
|
|
565
|
+
**Example:**
|
|
566
|
+
|
|
567
|
+
```yaml
|
|
568
|
+
output_folder: _bmad-output
|
|
569
|
+
```
|
|
570
|
+
|
|
571
|
+
**TEA Output Files (under `{test_artifacts}`):**
|
|
572
|
+
|
|
573
|
+
- `test-design-architecture.md` + `test-design-qa.md` (from `test-design` system-level - TWO documents)
|
|
574
|
+
- `test-design-epic-N.md` (from `test-design` epic-level)
|
|
575
|
+
- `test-review.md` (from `test-review`)
|
|
576
|
+
- `traceability-matrix.md` (from `trace` Phase 1)
|
|
577
|
+
- `gate-decision-{gate_type}-{story_id}.md` (from `trace` Phase 2)
|
|
578
|
+
- `nfr-assessment.md` (from `nfr-assess`)
|
|
579
|
+
- `automation-summary.md` (from `automate`)
|
|
580
|
+
- `atdd-checklist-{story_id}.md` (from `atdd`)
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
### user_skill_level
|
|
585
|
+
|
|
586
|
+
**Type:** `enum`
|
|
587
|
+
|
|
588
|
+
**Options:** `beginner` | `intermediate` | `expert`
|
|
589
|
+
|
|
590
|
+
**Default:** `intermediate`
|
|
591
|
+
|
|
592
|
+
**Purpose:** Affects how TEA explains concepts in chat responses
|
|
593
|
+
|
|
594
|
+
**Example:**
|
|
595
|
+
|
|
596
|
+
```yaml
|
|
597
|
+
user_skill_level: beginner
|
|
598
|
+
```
|
|
599
|
+
|
|
600
|
+
**Impact on TEA:**
|
|
601
|
+
|
|
602
|
+
- **Beginner:** More detailed explanations, links to concepts, verbose guidance
|
|
603
|
+
- **Intermediate:** Balanced explanations, assumes basic knowledge
|
|
604
|
+
- **Expert:** Concise, technical, minimal hand-holding
|
|
605
|
+
|
|
606
|
+
---
|
|
607
|
+
|
|
608
|
+
### project_name
|
|
609
|
+
|
|
610
|
+
**Type:** `string`
|
|
611
|
+
|
|
612
|
+
**Default:** Directory name
|
|
613
|
+
|
|
614
|
+
**Purpose:** Used in TEA-generated documentation and reports
|
|
615
|
+
|
|
616
|
+
**Example:**
|
|
617
|
+
|
|
618
|
+
```yaml
|
|
619
|
+
project_name: my-awesome-app
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
**Used in:**
|
|
623
|
+
|
|
624
|
+
- Report headers
|
|
625
|
+
- Documentation titles
|
|
626
|
+
- CI configuration comments
|
|
627
|
+
|
|
628
|
+
---
|
|
629
|
+
|
|
630
|
+
### communication_language
|
|
631
|
+
|
|
632
|
+
**Type:** `string`
|
|
633
|
+
|
|
634
|
+
**Default:** `english`
|
|
635
|
+
|
|
636
|
+
**Purpose:** Language for TEA chat responses
|
|
637
|
+
|
|
638
|
+
**Example:**
|
|
639
|
+
|
|
640
|
+
```yaml
|
|
641
|
+
communication_language: english
|
|
642
|
+
```
|
|
643
|
+
|
|
644
|
+
**Supported:** Any language (TEA responds in specified language)
|
|
645
|
+
|
|
646
|
+
---
|
|
647
|
+
|
|
648
|
+
### document_output_language
|
|
649
|
+
|
|
650
|
+
**Type:** `string`
|
|
651
|
+
|
|
652
|
+
**Default:** `english`
|
|
653
|
+
|
|
654
|
+
**Purpose:** Language for TEA-generated documents (test designs, reports)
|
|
655
|
+
|
|
656
|
+
**Example:**
|
|
657
|
+
|
|
658
|
+
```yaml
|
|
659
|
+
document_output_language: english
|
|
660
|
+
```
|
|
661
|
+
|
|
662
|
+
**Note:** Can differ from `communication_language` - chat in Spanish, generate docs in English.
|
|
663
|
+
|
|
664
|
+
---
|
|
665
|
+
|
|
666
|
+
## Environment Variables
|
|
667
|
+
|
|
668
|
+
TEA workflows may use environment variables for test configuration.
|
|
669
|
+
|
|
670
|
+
### Test Framework Variables
|
|
671
|
+
|
|
672
|
+
**Playwright:**
|
|
673
|
+
|
|
674
|
+
```bash
|
|
675
|
+
# .env
|
|
676
|
+
BASE_URL=https://todomvc.com/examples/react/dist/
|
|
677
|
+
API_BASE_URL=https://api.example.com
|
|
678
|
+
TEST_USER_EMAIL=test@example.com
|
|
679
|
+
TEST_USER_PASSWORD=password123
|
|
680
|
+
```
|
|
681
|
+
|
|
682
|
+
**Cypress:**
|
|
683
|
+
|
|
684
|
+
```bash
|
|
685
|
+
# cypress.env.json or .env
|
|
686
|
+
CYPRESS_BASE_URL=https://example.com
|
|
687
|
+
CYPRESS_API_URL=https://api.example.com
|
|
688
|
+
```
|
|
689
|
+
|
|
690
|
+
### CI/CD Variables
|
|
691
|
+
|
|
692
|
+
Set in CI platform (GitHub Actions secrets, GitLab CI variables):
|
|
693
|
+
|
|
694
|
+
```yaml
|
|
695
|
+
# .github/workflows/test.yml
|
|
696
|
+
env:
|
|
697
|
+
BASE_URL: ${{ secrets.STAGING_URL }}
|
|
698
|
+
API_KEY: ${{ secrets.API_KEY }}
|
|
699
|
+
TEST_USER_EMAIL: ${{ secrets.TEST_USER }}
|
|
700
|
+
```
|
|
701
|
+
|
|
702
|
+
---
|
|
703
|
+
|
|
704
|
+
## Configuration Patterns
|
|
705
|
+
|
|
706
|
+
### Development vs Production
|
|
707
|
+
|
|
708
|
+
**Separate configs for environments:**
|
|
709
|
+
|
|
710
|
+
```yaml
|
|
711
|
+
# _bmad/tea/config.yaml
|
|
712
|
+
output_folder: _bmad-output
|
|
713
|
+
|
|
714
|
+
# .env.development
|
|
715
|
+
BASE_URL=http://localhost:3000
|
|
716
|
+
API_BASE_URL=http://localhost:4000
|
|
717
|
+
|
|
718
|
+
# .env.staging
|
|
719
|
+
BASE_URL=https://staging.example.com
|
|
720
|
+
API_BASE_URL=https://api-staging.example.com
|
|
721
|
+
|
|
722
|
+
# .env.production (read-only tests only!)
|
|
723
|
+
BASE_URL=https://example.com
|
|
724
|
+
API_BASE_URL=https://api.example.com
|
|
725
|
+
```
|
|
726
|
+
|
|
727
|
+
### Team vs Individual
|
|
728
|
+
|
|
729
|
+
**Team config (committed):**
|
|
730
|
+
|
|
731
|
+
```yaml
|
|
732
|
+
# _bmad/tea/config.yaml.example (committed to repo)
|
|
733
|
+
project_name: team-project
|
|
734
|
+
output_folder: _bmad-output
|
|
735
|
+
tea_use_playwright_utils: true
|
|
736
|
+
tea_browser_automation: 'none'
|
|
737
|
+
tea_execution_mode: 'sequential'
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
**Individual config (typically gitignored):**
|
|
741
|
+
|
|
742
|
+
```yaml
|
|
743
|
+
# _bmad/tea/config.yaml (user adds to .gitignore)
|
|
744
|
+
user_name: John Doe
|
|
745
|
+
user_skill_level: expert
|
|
746
|
+
tea_browser_automation: 'auto' # Individual preference
|
|
747
|
+
tea_execution_mode: 'auto' # Capability-aware preference
|
|
748
|
+
```
|
|
749
|
+
|
|
750
|
+
### Monorepo Configuration
|
|
751
|
+
|
|
752
|
+
**Root config:**
|
|
753
|
+
|
|
754
|
+
```yaml
|
|
755
|
+
# _bmad/tea/config.yaml (root)
|
|
756
|
+
project_name: monorepo-parent
|
|
757
|
+
output_folder: _bmad-output
|
|
758
|
+
```
|
|
759
|
+
|
|
760
|
+
**Package-specific:**
|
|
761
|
+
|
|
762
|
+
```yaml
|
|
763
|
+
# packages/web-app/_bmad/tea/config.yaml
|
|
764
|
+
project_name: web-app
|
|
765
|
+
output_folder: ../../_bmad-output/web-app
|
|
766
|
+
tea_use_playwright_utils: true
|
|
767
|
+
|
|
768
|
+
# packages/mobile-app/_bmad/tea/config.yaml
|
|
769
|
+
project_name: mobile-app
|
|
770
|
+
output_folder: ../../_bmad-output/mobile-app
|
|
771
|
+
tea_use_playwright_utils: false
|
|
772
|
+
```
|
|
773
|
+
|
|
774
|
+
---
|
|
775
|
+
|
|
776
|
+
## Configuration Best Practices
|
|
777
|
+
|
|
778
|
+
### 1. Use Version Control Wisely
|
|
779
|
+
|
|
780
|
+
**Commit:**
|
|
781
|
+
|
|
782
|
+
```
|
|
783
|
+
_bmad/tea/config.yaml.example # Template for team
|
|
784
|
+
.nvmrc # Node version
|
|
785
|
+
package.json # Dependencies
|
|
786
|
+
```
|
|
787
|
+
|
|
788
|
+
**Recommended for .gitignore:**
|
|
789
|
+
|
|
790
|
+
```
|
|
791
|
+
_bmad/tea/config.yaml # User-specific values
|
|
792
|
+
.env # Secrets
|
|
793
|
+
.env.local # Local overrides
|
|
794
|
+
```
|
|
795
|
+
|
|
796
|
+
### 2. Document Required Setup
|
|
797
|
+
|
|
798
|
+
**In your README:**
|
|
799
|
+
|
|
800
|
+
```markdown
|
|
801
|
+
## Setup
|
|
802
|
+
|
|
803
|
+
1. Install BMad
|
|
804
|
+
|
|
805
|
+
2. Copy config template:
|
|
806
|
+
cp \_bmad/tea/config.yaml.example \_bmad/tea/config.yaml
|
|
807
|
+
|
|
808
|
+
3. Edit config with your values:
|
|
809
|
+
- Set user_name
|
|
810
|
+
- Enable tea_use_playwright_utils if using playwright-utils
|
|
811
|
+
- Set tea_browser_automation mode (auto, cli, mcp, or none)
|
|
812
|
+
- Set tea_execution_mode (auto, subagent, agent-team, or sequential)
|
|
813
|
+
```
|
|
814
|
+
|
|
815
|
+
### 3. Validate Configuration
|
|
816
|
+
|
|
817
|
+
**Check config is valid:**
|
|
818
|
+
|
|
819
|
+
```bash
|
|
820
|
+
# Check TEA config is set
|
|
821
|
+
cat _bmad/tea/config.yaml | grep tea_use
|
|
822
|
+
|
|
823
|
+
# Verify playwright-utils installed (if enabled)
|
|
824
|
+
npm list @seontechnologies/playwright-utils
|
|
825
|
+
|
|
826
|
+
# Verify MCP servers configured (if enabled)
|
|
827
|
+
# Check your IDE's MCP settings
|
|
828
|
+
```
|
|
829
|
+
|
|
830
|
+
### 4. Keep Config Minimal
|
|
831
|
+
|
|
832
|
+
**Don't over-configure:**
|
|
833
|
+
|
|
834
|
+
```yaml
|
|
835
|
+
# ❌ Bad - overriding everything unnecessarily
|
|
836
|
+
project_name: my-project
|
|
837
|
+
user_name: John Doe
|
|
838
|
+
user_skill_level: expert
|
|
839
|
+
output_folder: custom/path
|
|
840
|
+
planning_artifacts: custom/planning
|
|
841
|
+
implementation_artifacts: custom/implementation
|
|
842
|
+
project_knowledge: custom/docs
|
|
843
|
+
tea_use_playwright_utils: true
|
|
844
|
+
tea_browser_automation: "auto"
|
|
845
|
+
tea_execution_mode: "auto"
|
|
846
|
+
communication_language: english
|
|
847
|
+
document_output_language: english
|
|
848
|
+
# Overriding 11 config options when most can use defaults
|
|
849
|
+
|
|
850
|
+
# ✅ Good - only essential overrides
|
|
851
|
+
tea_use_playwright_utils: true
|
|
852
|
+
tea_execution_mode: "auto"
|
|
853
|
+
output_folder: docs/testing
|
|
854
|
+
# Only override what differs from defaults
|
|
855
|
+
```
|
|
856
|
+
|
|
857
|
+
**Use defaults when possible** - only override what you actually need to change.
|
|
858
|
+
|
|
859
|
+
---
|
|
860
|
+
|
|
861
|
+
## Troubleshooting
|
|
862
|
+
|
|
863
|
+
### Configuration Not Loaded
|
|
864
|
+
|
|
865
|
+
**Problem:** TEA doesn't use my config values.
|
|
866
|
+
|
|
867
|
+
**Causes:**
|
|
868
|
+
|
|
869
|
+
1. Config file in wrong location
|
|
870
|
+
2. YAML syntax error
|
|
871
|
+
3. Typo in config key
|
|
872
|
+
|
|
873
|
+
**Solution:**
|
|
874
|
+
|
|
875
|
+
```bash
|
|
876
|
+
# Check file exists
|
|
877
|
+
ls -la _bmad/tea/config.yaml
|
|
878
|
+
|
|
879
|
+
# Validate YAML syntax
|
|
880
|
+
npm install -g js-yaml
|
|
881
|
+
js-yaml _bmad/tea/config.yaml
|
|
882
|
+
|
|
883
|
+
# Check for typos (compare to module.yaml)
|
|
884
|
+
diff _bmad/tea/config.yaml src/module.yaml
|
|
885
|
+
```
|
|
886
|
+
|
|
887
|
+
### Playwright Utils Not Working
|
|
888
|
+
|
|
889
|
+
**Problem:** `tea_use_playwright_utils: true` but TEA doesn't use utilities.
|
|
890
|
+
|
|
891
|
+
**Causes:**
|
|
892
|
+
|
|
893
|
+
1. Package not installed
|
|
894
|
+
2. Config file not saved
|
|
895
|
+
3. Workflow run before config update
|
|
896
|
+
|
|
897
|
+
**Solution:**
|
|
898
|
+
|
|
899
|
+
```bash
|
|
900
|
+
# Verify package installed
|
|
901
|
+
npm list @seontechnologies/playwright-utils
|
|
902
|
+
|
|
903
|
+
# Check config value
|
|
904
|
+
grep tea_use_playwright_utils _bmad/tea/config.yaml
|
|
905
|
+
|
|
906
|
+
# Re-run workflow in fresh chat
|
|
907
|
+
# (TEA loads config at workflow start)
|
|
908
|
+
```
|
|
909
|
+
|
|
910
|
+
### Browser Automation Not Working
|
|
911
|
+
|
|
912
|
+
**Problem:** `tea_browser_automation` set to `"auto"` or `"cli"` or `"mcp"` but no browser opens.
|
|
913
|
+
|
|
914
|
+
**Causes:**
|
|
915
|
+
|
|
916
|
+
1. CLI not installed globally (for `cli` or `auto` mode)
|
|
917
|
+
2. MCP servers not configured in IDE (for `mcp` or `auto` mode)
|
|
918
|
+
3. Browser binaries missing
|
|
919
|
+
|
|
920
|
+
**Solution:**
|
|
921
|
+
|
|
922
|
+
```bash
|
|
923
|
+
# For CLI mode: verify CLI is installed
|
|
924
|
+
playwright-cli --version
|
|
925
|
+
|
|
926
|
+
# For MCP mode: check MCP package available
|
|
927
|
+
npx @playwright/mcp@latest --version
|
|
928
|
+
|
|
929
|
+
# Install browsers
|
|
930
|
+
npx playwright install
|
|
931
|
+
|
|
932
|
+
# Verify IDE MCP config (for MCP mode)
|
|
933
|
+
# Check ~/.cursor/config.json or VS Code settings
|
|
934
|
+
```
|
|
935
|
+
|
|
936
|
+
### Config Changes Not Applied
|
|
937
|
+
|
|
938
|
+
**Problem:** Updated config but TEA still uses old values.
|
|
939
|
+
|
|
940
|
+
**Cause:** TEA loads config at workflow start.
|
|
941
|
+
|
|
942
|
+
**Solution:**
|
|
943
|
+
|
|
944
|
+
1. Save `_bmad/tea/config.yaml`
|
|
945
|
+
2. Start fresh chat
|
|
946
|
+
3. Run TEA workflow
|
|
947
|
+
4. Config will be reloaded
|
|
948
|
+
|
|
949
|
+
**TEA doesn't reload config mid-chat** - always start fresh chat after config changes.
|
|
950
|
+
|
|
951
|
+
---
|
|
952
|
+
|
|
953
|
+
## Configuration Examples
|
|
954
|
+
|
|
955
|
+
### Recommended Setup (Full Stack)
|
|
956
|
+
|
|
957
|
+
```yaml
|
|
958
|
+
# _bmad/tea/config.yaml
|
|
959
|
+
project_name: my-project
|
|
960
|
+
user_skill_level: beginner # or intermediate/expert
|
|
961
|
+
output_folder: _bmad-output
|
|
962
|
+
tea_use_playwright_utils: true # Recommended
|
|
963
|
+
tea_use_pactjs_utils: true # Recommended - production-ready contract testing utilities
|
|
964
|
+
tea_pact_mcp: 'mcp' # Recommended - SmartBear MCP for PactFlow/Broker interaction
|
|
965
|
+
tea_browser_automation: 'auto' # Recommended
|
|
966
|
+
tea_execution_mode: 'auto' # Recommended - capability-aware mode selection
|
|
967
|
+
tea_capability_probe: true # Recommended - fallback safely if mode unsupported
|
|
968
|
+
```
|
|
969
|
+
|
|
970
|
+
**Why recommended:**
|
|
971
|
+
|
|
972
|
+
- Playwright Utils: Production-ready fixtures and utilities
|
|
973
|
+
- Pact.js Utils: Optional contract-testing acceleration for backend/fullstack services
|
|
974
|
+
- Browser automation (auto): Smart CLI/MCP selection with fallback
|
|
975
|
+
- Together: The three-part stack (see [Testing as Engineering](/docs/explanation/testing-as-engineering.md))
|
|
976
|
+
|
|
977
|
+
**Prerequisites:**
|
|
978
|
+
|
|
979
|
+
```bash
|
|
980
|
+
npm install -D @seontechnologies/playwright-utils
|
|
981
|
+
# Optional contract-testing stack:
|
|
982
|
+
# npm install -D @seontechnologies/pactjs-utils @pact-foundation/pact
|
|
983
|
+
# npm install -g @smartbear/mcp
|
|
984
|
+
npm install -g @playwright/cli@latest # For CLI mode
|
|
985
|
+
# Configure MCP servers in IDE (see Configure Browser Automation guide)
|
|
986
|
+
```
|
|
987
|
+
|
|
988
|
+
**Best for:** Everyone (beginners learn good patterns from day one)
|
|
989
|
+
|
|
990
|
+
---
|
|
991
|
+
|
|
992
|
+
### Minimal Setup (Learning Only)
|
|
993
|
+
|
|
994
|
+
```yaml
|
|
995
|
+
# _bmad/tea/config.yaml
|
|
996
|
+
project_name: my-project
|
|
997
|
+
output_folder: _bmad-output
|
|
998
|
+
tea_use_playwright_utils: false
|
|
999
|
+
tea_use_pactjs_utils: false
|
|
1000
|
+
tea_pact_mcp: 'none'
|
|
1001
|
+
tea_browser_automation: 'none'
|
|
1002
|
+
tea_execution_mode: 'sequential'
|
|
1003
|
+
tea_capability_probe: true
|
|
1004
|
+
```
|
|
1005
|
+
|
|
1006
|
+
**Best for:**
|
|
1007
|
+
|
|
1008
|
+
- First-time TEA users (keep it simple initially)
|
|
1009
|
+
- Quick experiments
|
|
1010
|
+
- Learning basics before adding integrations
|
|
1011
|
+
|
|
1012
|
+
**Note:** Can enable integrations later as you learn
|
|
1013
|
+
|
|
1014
|
+
---
|
|
1015
|
+
|
|
1016
|
+
### Monorepo Setup
|
|
1017
|
+
|
|
1018
|
+
**Root config:**
|
|
1019
|
+
|
|
1020
|
+
```yaml
|
|
1021
|
+
# _bmad/tea/config.yaml (root)
|
|
1022
|
+
project_name: monorepo
|
|
1023
|
+
output_folder: _bmad-output
|
|
1024
|
+
tea_use_playwright_utils: true
|
|
1025
|
+
tea_use_pactjs_utils: true
|
|
1026
|
+
tea_pact_mcp: 'mcp'
|
|
1027
|
+
tea_execution_mode: 'auto'
|
|
1028
|
+
```
|
|
1029
|
+
|
|
1030
|
+
**Package configs:**
|
|
1031
|
+
|
|
1032
|
+
```yaml
|
|
1033
|
+
# apps/web/_bmad/tea/config.yaml
|
|
1034
|
+
project_name: web-app
|
|
1035
|
+
output_folder: ../../_bmad-output/web
|
|
1036
|
+
|
|
1037
|
+
# apps/api/_bmad/tea/config.yaml
|
|
1038
|
+
project_name: api-service
|
|
1039
|
+
output_folder: ../../_bmad-output/api
|
|
1040
|
+
tea_use_playwright_utils: false # Using vanilla Playwright only
|
|
1041
|
+
tea_use_pactjs_utils: true # API service uses contract testing utilities
|
|
1042
|
+
tea_pact_mcp: 'mcp' # Optional broker interaction via MCP
|
|
1043
|
+
tea_execution_mode: 'subagent' # Prefer subagent orchestration in API package
|
|
1044
|
+
```
|
|
1045
|
+
|
|
1046
|
+
---
|
|
1047
|
+
|
|
1048
|
+
### Team Template
|
|
1049
|
+
|
|
1050
|
+
**Commit this template:**
|
|
1051
|
+
|
|
1052
|
+
```yaml
|
|
1053
|
+
# _bmad/tea/config.yaml.example
|
|
1054
|
+
# Copy to config.yaml and fill in your values
|
|
1055
|
+
|
|
1056
|
+
project_name: your-project-name
|
|
1057
|
+
user_name: Your Name
|
|
1058
|
+
user_skill_level: intermediate # beginner | intermediate | expert
|
|
1059
|
+
output_folder: _bmad-output
|
|
1060
|
+
planning_artifacts: _bmad-output/planning-artifacts
|
|
1061
|
+
implementation_artifacts: _bmad-output/implementation-artifacts
|
|
1062
|
+
project_knowledge: docs
|
|
1063
|
+
|
|
1064
|
+
# TEA Configuration (Recommended: Enable both for full stack)
|
|
1065
|
+
tea_use_playwright_utils: true # Recommended - production-ready utilities
|
|
1066
|
+
tea_use_pactjs_utils: true # Recommended - production-ready contract testing utilities
|
|
1067
|
+
tea_pact_mcp: 'mcp' # Recommended - SmartBear MCP for broker integration
|
|
1068
|
+
tea_browser_automation: 'auto' # Recommended - smart CLI/MCP selection
|
|
1069
|
+
tea_execution_mode: 'auto' # Recommended - capability-aware team/subagent fallback
|
|
1070
|
+
tea_capability_probe: true # Recommended - safe fallback
|
|
1071
|
+
|
|
1072
|
+
# Languages
|
|
1073
|
+
communication_language: english
|
|
1074
|
+
document_output_language: english
|
|
1075
|
+
```
|
|
1076
|
+
|
|
1077
|
+
**Team instructions:**
|
|
1078
|
+
|
|
1079
|
+
```markdown
|
|
1080
|
+
## Setup for New Team Members
|
|
1081
|
+
|
|
1082
|
+
1. Clone repo
|
|
1083
|
+
2. Copy config template:
|
|
1084
|
+
cp \_bmad/tea/config.yaml.example \_bmad/tea/config.yaml
|
|
1085
|
+
3. Edit with your name and preferences
|
|
1086
|
+
4. Install dependencies:
|
|
1087
|
+
npm install
|
|
1088
|
+
5. (Optional) Enable playwright-utils:
|
|
1089
|
+
npm install -D @seontechnologies/playwright-utils
|
|
1090
|
+
Set tea_use_playwright_utils: true
|
|
1091
|
+
6. (Optional) Enable pactjs-utils:
|
|
1092
|
+
npm install -D @seontechnologies/pactjs-utils @pact-foundation/pact
|
|
1093
|
+
Set tea_use_pactjs_utils: true
|
|
1094
|
+
7. (Optional) Enable Pact MCP:
|
|
1095
|
+
npm install -g @smartbear/mcp
|
|
1096
|
+
Set tea_pact_mcp: 'mcp'
|
|
1097
|
+
```
|
|
1098
|
+
|
|
1099
|
+
---
|
|
1100
|
+
|
|
1101
|
+
## See Also
|
|
1102
|
+
|
|
1103
|
+
### How-To Guides
|
|
1104
|
+
|
|
1105
|
+
- [Set Up Test Framework](/docs/how-to/workflows/setup-test-framework.md)
|
|
1106
|
+
- [Integrate Playwright Utils](/docs/how-to/customization/integrate-playwright-utils.md)
|
|
1107
|
+
- [Configure Browser Automation](/docs/how-to/customization/configure-browser-automation.md)
|
|
1108
|
+
|
|
1109
|
+
### Reference
|
|
1110
|
+
|
|
1111
|
+
- [TEA Command Reference](/docs/reference/commands.md)
|
|
1112
|
+
- [Knowledge Base Index](/docs/reference/knowledge-base.md)
|
|
1113
|
+
- [Glossary](/docs/glossary/index.md)
|
|
1114
|
+
|
|
1115
|
+
### Explanation
|
|
1116
|
+
|
|
1117
|
+
- [TEA Overview](/docs/explanation/tea-overview.md)
|
|
1118
|
+
- [Testing as Engineering](/docs/explanation/testing-as-engineering.md)
|
|
1119
|
+
|
|
1120
|
+
---
|
|
1121
|
+
|
|
1122
|
+
Generated with [BMad Method](https://bmad-method.org) - TEA (Test Engineering Architect)
|