ma-agents 2.19.2 → 2.20.1
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/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/.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,470 @@
|
|
|
1
|
+
---
|
|
2
|
+
stepsCompleted: []
|
|
3
|
+
lastStep: ''
|
|
4
|
+
lastSaved: ''
|
|
5
|
+
workflowType: 'testarch-nfr-assess'
|
|
6
|
+
inputDocuments: []
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# NFR Assessment - {FEATURE_NAME}
|
|
10
|
+
|
|
11
|
+
**Date:** {DATE}
|
|
12
|
+
**Story:** {STORY_ID} (if applicable)
|
|
13
|
+
**Overall Status:** {OVERALL_STATUS} {STATUS_ICON}
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Note: This assessment summarizes existing evidence; it does not run tests or CI workflows.
|
|
18
|
+
|
|
19
|
+
## Executive Summary
|
|
20
|
+
|
|
21
|
+
**Assessment:** {PASS_COUNT} PASS, {CONCERNS_COUNT} CONCERNS, {FAIL_COUNT} FAIL
|
|
22
|
+
|
|
23
|
+
**Blockers:** {BLOCKER_COUNT} {BLOCKER_DESCRIPTION}
|
|
24
|
+
|
|
25
|
+
**High Priority Issues:** {HIGH_PRIORITY_COUNT} {HIGH_PRIORITY_DESCRIPTION}
|
|
26
|
+
|
|
27
|
+
**Recommendation:** {OVERALL_RECOMMENDATION}
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Performance Assessment
|
|
32
|
+
|
|
33
|
+
### Response Time (p95)
|
|
34
|
+
|
|
35
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
36
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
37
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
38
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
39
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
40
|
+
|
|
41
|
+
### Throughput
|
|
42
|
+
|
|
43
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
44
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
45
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
46
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
47
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
48
|
+
|
|
49
|
+
### Resource Usage
|
|
50
|
+
|
|
51
|
+
- **CPU Usage**
|
|
52
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
53
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
54
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
55
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
56
|
+
|
|
57
|
+
- **Memory Usage**
|
|
58
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
59
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
60
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
61
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
62
|
+
|
|
63
|
+
### Scalability
|
|
64
|
+
|
|
65
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
66
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
67
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
68
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
69
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Security Assessment
|
|
74
|
+
|
|
75
|
+
### Authentication Strength
|
|
76
|
+
|
|
77
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
78
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
79
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
80
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
81
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
82
|
+
- **Recommendation:** {RECOMMENDATION} (if CONCERNS or FAIL)
|
|
83
|
+
|
|
84
|
+
### Authorization Controls
|
|
85
|
+
|
|
86
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
87
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
88
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
89
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
90
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
91
|
+
|
|
92
|
+
### Data Protection
|
|
93
|
+
|
|
94
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
95
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
96
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
97
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
98
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
99
|
+
|
|
100
|
+
### Vulnerability Management
|
|
101
|
+
|
|
102
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
103
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION} (e.g., "0 critical, <3 high vulnerabilities")
|
|
104
|
+
- **Actual:** {ACTUAL_DESCRIPTION} (e.g., "0 critical, 1 high, 5 medium vulnerabilities")
|
|
105
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Snyk scan results - scan-2025-10-14.json")
|
|
106
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
107
|
+
|
|
108
|
+
### Compliance (if applicable)
|
|
109
|
+
|
|
110
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
111
|
+
- **Standards:** {COMPLIANCE_STANDARDS} (e.g., "GDPR, HIPAA, PCI-DSS")
|
|
112
|
+
- **Actual:** {ACTUAL_COMPLIANCE_STATUS}
|
|
113
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
114
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Reliability Assessment
|
|
119
|
+
|
|
120
|
+
### Availability (Uptime)
|
|
121
|
+
|
|
122
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
123
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., "99.9%")
|
|
124
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "99.95%")
|
|
125
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Uptime monitoring - uptime-report-2025-10-14.csv")
|
|
126
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
127
|
+
|
|
128
|
+
### Error Rate
|
|
129
|
+
|
|
130
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
131
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., "<0.1%")
|
|
132
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "0.05%")
|
|
133
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Error logs - logs/errors-2025-10.log")
|
|
134
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
135
|
+
|
|
136
|
+
### MTTR (Mean Time To Recovery)
|
|
137
|
+
|
|
138
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
139
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., "<15 minutes")
|
|
140
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "12 minutes")
|
|
141
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Incident reports - incidents/")
|
|
142
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
143
|
+
|
|
144
|
+
### Fault Tolerance
|
|
145
|
+
|
|
146
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
147
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
148
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
149
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
150
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
151
|
+
|
|
152
|
+
### CI Burn-In (Stability)
|
|
153
|
+
|
|
154
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
155
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., "100 consecutive successful runs")
|
|
156
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "150 consecutive successful runs")
|
|
157
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "CI burn-in results - ci-burn-in-2025-10-14.log")
|
|
158
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
159
|
+
|
|
160
|
+
### Disaster Recovery (if applicable)
|
|
161
|
+
|
|
162
|
+
- **RTO (Recovery Time Objective)**
|
|
163
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
164
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
165
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
166
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
167
|
+
|
|
168
|
+
- **RPO (Recovery Point Objective)**
|
|
169
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
170
|
+
- **Threshold:** {THRESHOLD_VALUE}
|
|
171
|
+
- **Actual:** {ACTUAL_VALUE}
|
|
172
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## Maintainability Assessment
|
|
177
|
+
|
|
178
|
+
### Test Coverage
|
|
179
|
+
|
|
180
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
181
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., ">=80%")
|
|
182
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "87%")
|
|
183
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Coverage report - coverage/lcov-report/index.html")
|
|
184
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
185
|
+
|
|
186
|
+
### Code Quality
|
|
187
|
+
|
|
188
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
189
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., ">=85/100")
|
|
190
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "92/100")
|
|
191
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "SonarQube analysis - sonarqube-report-2025-10-14.pdf")
|
|
192
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
193
|
+
|
|
194
|
+
### Technical Debt
|
|
195
|
+
|
|
196
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
197
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., "<5% debt ratio")
|
|
198
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "3.2% debt ratio")
|
|
199
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "CodeClimate analysis - codeclimate-2025-10-14.json")
|
|
200
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
201
|
+
|
|
202
|
+
### Documentation Completeness
|
|
203
|
+
|
|
204
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
205
|
+
- **Threshold:** {THRESHOLD_VALUE} (e.g., ">=90%")
|
|
206
|
+
- **Actual:** {ACTUAL_VALUE} (e.g., "95%")
|
|
207
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Documentation audit - docs-audit-2025-10-14.md")
|
|
208
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
209
|
+
|
|
210
|
+
### Test Quality (from test-review, if available)
|
|
211
|
+
|
|
212
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
213
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
214
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
215
|
+
- **Evidence:** {EVIDENCE_SOURCE} (e.g., "Test review report - test-review-2025-10-14.md")
|
|
216
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## Custom NFR Assessments (if applicable)
|
|
221
|
+
|
|
222
|
+
### {CUSTOM_NFR_NAME_1}
|
|
223
|
+
|
|
224
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
225
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
226
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
227
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
228
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
229
|
+
|
|
230
|
+
### {CUSTOM_NFR_NAME_2}
|
|
231
|
+
|
|
232
|
+
- **Status:** {STATUS} {STATUS_ICON}
|
|
233
|
+
- **Threshold:** {THRESHOLD_DESCRIPTION}
|
|
234
|
+
- **Actual:** {ACTUAL_DESCRIPTION}
|
|
235
|
+
- **Evidence:** {EVIDENCE_SOURCE}
|
|
236
|
+
- **Findings:** {FINDINGS_DESCRIPTION}
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Quick Wins
|
|
241
|
+
|
|
242
|
+
{QUICK_WIN_COUNT} quick wins identified for immediate implementation:
|
|
243
|
+
|
|
244
|
+
1. **{QUICK_WIN_TITLE_1}** ({NFR_CATEGORY}) - {PRIORITY} - {ESTIMATED_EFFORT}
|
|
245
|
+
- {QUICK_WIN_DESCRIPTION}
|
|
246
|
+
- No code changes needed / Minimal code changes
|
|
247
|
+
|
|
248
|
+
2. **{QUICK_WIN_TITLE_2}** ({NFR_CATEGORY}) - {PRIORITY} - {ESTIMATED_EFFORT}
|
|
249
|
+
- {QUICK_WIN_DESCRIPTION}
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## Recommended Actions
|
|
254
|
+
|
|
255
|
+
### Immediate (Before Release) - CRITICAL/HIGH Priority
|
|
256
|
+
|
|
257
|
+
1. **{ACTION_TITLE_1}** - {PRIORITY} - {ESTIMATED_EFFORT} - {OWNER}
|
|
258
|
+
- {ACTION_DESCRIPTION}
|
|
259
|
+
- {SPECIFIC_STEPS}
|
|
260
|
+
- {VALIDATION_CRITERIA}
|
|
261
|
+
|
|
262
|
+
2. **{ACTION_TITLE_2}** - {PRIORITY} - {ESTIMATED_EFFORT} - {OWNER}
|
|
263
|
+
- {ACTION_DESCRIPTION}
|
|
264
|
+
- {SPECIFIC_STEPS}
|
|
265
|
+
- {VALIDATION_CRITERIA}
|
|
266
|
+
|
|
267
|
+
### Short-term (Next Milestone) - MEDIUM Priority
|
|
268
|
+
|
|
269
|
+
1. **{ACTION_TITLE_3}** - {PRIORITY} - {ESTIMATED_EFFORT} - {OWNER}
|
|
270
|
+
- {ACTION_DESCRIPTION}
|
|
271
|
+
|
|
272
|
+
2. **{ACTION_TITLE_4}** - {PRIORITY} - {ESTIMATED_EFFORT} - {OWNER}
|
|
273
|
+
- {ACTION_DESCRIPTION}
|
|
274
|
+
|
|
275
|
+
### Long-term (Backlog) - LOW Priority
|
|
276
|
+
|
|
277
|
+
1. **{ACTION_TITLE_5}** - {PRIORITY} - {ESTIMATED_EFFORT} - {OWNER}
|
|
278
|
+
- {ACTION_DESCRIPTION}
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## Monitoring Hooks
|
|
283
|
+
|
|
284
|
+
{MONITORING_HOOK_COUNT} monitoring hooks recommended to detect issues before failures:
|
|
285
|
+
|
|
286
|
+
### Performance Monitoring
|
|
287
|
+
|
|
288
|
+
- [ ] {MONITORING_TOOL_1} - {MONITORING_DESCRIPTION}
|
|
289
|
+
- **Owner:** {OWNER}
|
|
290
|
+
- **Deadline:** {DEADLINE}
|
|
291
|
+
|
|
292
|
+
- [ ] {MONITORING_TOOL_2} - {MONITORING_DESCRIPTION}
|
|
293
|
+
- **Owner:** {OWNER}
|
|
294
|
+
- **Deadline:** {DEADLINE}
|
|
295
|
+
|
|
296
|
+
### Security Monitoring
|
|
297
|
+
|
|
298
|
+
- [ ] {MONITORING_TOOL_3} - {MONITORING_DESCRIPTION}
|
|
299
|
+
- **Owner:** {OWNER}
|
|
300
|
+
- **Deadline:** {DEADLINE}
|
|
301
|
+
|
|
302
|
+
### Reliability Monitoring
|
|
303
|
+
|
|
304
|
+
- [ ] {MONITORING_TOOL_4} - {MONITORING_DESCRIPTION}
|
|
305
|
+
- **Owner:** {OWNER}
|
|
306
|
+
- **Deadline:** {DEADLINE}
|
|
307
|
+
|
|
308
|
+
### Alerting Thresholds
|
|
309
|
+
|
|
310
|
+
- [ ] {ALERT_DESCRIPTION} - Notify when {THRESHOLD_CONDITION}
|
|
311
|
+
- **Owner:** {OWNER}
|
|
312
|
+
- **Deadline:** {DEADLINE}
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## Fail-Fast Mechanisms
|
|
317
|
+
|
|
318
|
+
{FAIL_FAST_COUNT} fail-fast mechanisms recommended to prevent failures:
|
|
319
|
+
|
|
320
|
+
### Circuit Breakers (Reliability)
|
|
321
|
+
|
|
322
|
+
- [ ] {CIRCUIT_BREAKER_DESCRIPTION}
|
|
323
|
+
- **Owner:** {OWNER}
|
|
324
|
+
- **Estimated Effort:** {EFFORT}
|
|
325
|
+
|
|
326
|
+
### Rate Limiting (Performance)
|
|
327
|
+
|
|
328
|
+
- [ ] {RATE_LIMITING_DESCRIPTION}
|
|
329
|
+
- **Owner:** {OWNER}
|
|
330
|
+
- **Estimated Effort:** {EFFORT}
|
|
331
|
+
|
|
332
|
+
### Validation Gates (Security)
|
|
333
|
+
|
|
334
|
+
- [ ] {VALIDATION_GATE_DESCRIPTION}
|
|
335
|
+
- **Owner:** {OWNER}
|
|
336
|
+
- **Estimated Effort:** {EFFORT}
|
|
337
|
+
|
|
338
|
+
### Smoke Tests (Maintainability)
|
|
339
|
+
|
|
340
|
+
- [ ] {SMOKE_TEST_DESCRIPTION}
|
|
341
|
+
- **Owner:** {OWNER}
|
|
342
|
+
- **Estimated Effort:** {EFFORT}
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
## Evidence Gaps
|
|
347
|
+
|
|
348
|
+
{EVIDENCE_GAP_COUNT} evidence gaps identified - action required:
|
|
349
|
+
|
|
350
|
+
- [ ] **{NFR_NAME_1}** ({NFR_CATEGORY})
|
|
351
|
+
- **Owner:** {OWNER}
|
|
352
|
+
- **Deadline:** {DEADLINE}
|
|
353
|
+
- **Suggested Evidence:** {SUGGESTED_EVIDENCE_SOURCE}
|
|
354
|
+
- **Impact:** {IMPACT_DESCRIPTION}
|
|
355
|
+
|
|
356
|
+
- [ ] **{NFR_NAME_2}** ({NFR_CATEGORY})
|
|
357
|
+
- **Owner:** {OWNER}
|
|
358
|
+
- **Deadline:** {DEADLINE}
|
|
359
|
+
- **Suggested Evidence:** {SUGGESTED_EVIDENCE_SOURCE}
|
|
360
|
+
- **Impact:** {IMPACT_DESCRIPTION}
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## Findings Summary
|
|
365
|
+
|
|
366
|
+
**Based on ADR Quality Readiness Checklist (8 categories, 29 criteria)**
|
|
367
|
+
|
|
368
|
+
| Category | Criteria Met | PASS | CONCERNS | FAIL | Overall Status |
|
|
369
|
+
| ------------------------------------------------ | ------------------ | ---------------- | -------------------- | ---------------- | ----------------------------------- |
|
|
370
|
+
| 1. Testability & Automation | {T_MET}/4 | {T_PASS} | {T_CONCERNS} | {T_FAIL} | {T_STATUS} {T_ICON} |
|
|
371
|
+
| 2. Test Data Strategy | {TD_MET}/3 | {TD_PASS} | {TD_CONCERNS} | {TD_FAIL} | {TD_STATUS} {TD_ICON} |
|
|
372
|
+
| 3. Scalability & Availability | {SA_MET}/4 | {SA_PASS} | {SA_CONCERNS} | {SA_FAIL} | {SA_STATUS} {SA_ICON} |
|
|
373
|
+
| 4. Disaster Recovery | {DR_MET}/3 | {DR_PASS} | {DR_CONCERNS} | {DR_FAIL} | {DR_STATUS} {DR_ICON} |
|
|
374
|
+
| 5. Security | {SEC_MET}/4 | {SEC_PASS} | {SEC_CONCERNS} | {SEC_FAIL} | {SEC_STATUS} {SEC_ICON} |
|
|
375
|
+
| 6. Monitorability, Debuggability & Manageability | {MON_MET}/4 | {MON_PASS} | {MON_CONCERNS} | {MON_FAIL} | {MON_STATUS} {MON_ICON} |
|
|
376
|
+
| 7. QoS & QoE | {QOS_MET}/4 | {QOS_PASS} | {QOS_CONCERNS} | {QOS_FAIL} | {QOS_STATUS} {QOS_ICON} |
|
|
377
|
+
| 8. Deployability | {DEP_MET}/3 | {DEP_PASS} | {DEP_CONCERNS} | {DEP_FAIL} | {DEP_STATUS} {DEP_ICON} |
|
|
378
|
+
| **Total** | **{TOTAL_MET}/29** | **{TOTAL_PASS}** | **{TOTAL_CONCERNS}** | **{TOTAL_FAIL}** | **{OVERALL_STATUS} {OVERALL_ICON}** |
|
|
379
|
+
|
|
380
|
+
**Criteria Met Scoring:**
|
|
381
|
+
|
|
382
|
+
- ≥26/29 (90%+) = Strong foundation
|
|
383
|
+
- 20-25/29 (69-86%) = Room for improvement
|
|
384
|
+
- <20/29 (<69%) = Significant gaps
|
|
385
|
+
|
|
386
|
+
---
|
|
387
|
+
|
|
388
|
+
## Gate YAML Snippet
|
|
389
|
+
|
|
390
|
+
```yaml
|
|
391
|
+
nfr_assessment:
|
|
392
|
+
date: '{DATE}'
|
|
393
|
+
story_id: '{STORY_ID}'
|
|
394
|
+
feature_name: '{FEATURE_NAME}'
|
|
395
|
+
adr_checklist_score: '{TOTAL_MET}/29' # ADR Quality Readiness Checklist
|
|
396
|
+
categories:
|
|
397
|
+
testability_automation: '{T_STATUS}'
|
|
398
|
+
test_data_strategy: '{TD_STATUS}'
|
|
399
|
+
scalability_availability: '{SA_STATUS}'
|
|
400
|
+
disaster_recovery: '{DR_STATUS}'
|
|
401
|
+
security: '{SEC_STATUS}'
|
|
402
|
+
monitorability: '{MON_STATUS}'
|
|
403
|
+
qos_qoe: '{QOS_STATUS}'
|
|
404
|
+
deployability: '{DEP_STATUS}'
|
|
405
|
+
overall_status: '{OVERALL_STATUS}'
|
|
406
|
+
critical_issues: { CRITICAL_COUNT }
|
|
407
|
+
high_priority_issues: { HIGH_COUNT }
|
|
408
|
+
medium_priority_issues: { MEDIUM_COUNT }
|
|
409
|
+
concerns: { CONCERNS_COUNT }
|
|
410
|
+
blockers: { BLOCKER_BOOLEAN } # true/false
|
|
411
|
+
quick_wins: { QUICK_WIN_COUNT }
|
|
412
|
+
evidence_gaps: { EVIDENCE_GAP_COUNT }
|
|
413
|
+
recommendations:
|
|
414
|
+
- '{RECOMMENDATION_1}'
|
|
415
|
+
- '{RECOMMENDATION_2}'
|
|
416
|
+
- '{RECOMMENDATION_3}'
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
---
|
|
420
|
+
|
|
421
|
+
## Related Artifacts
|
|
422
|
+
|
|
423
|
+
- **Story File:** {STORY_FILE_PATH} (if applicable)
|
|
424
|
+
- **Tech Spec:** {TECH_SPEC_PATH} (if available)
|
|
425
|
+
- **PRD:** {PRD_PATH} (if available)
|
|
426
|
+
- **Test Design:** {TEST_DESIGN_PATH} (if available)
|
|
427
|
+
- **Evidence Sources:**
|
|
428
|
+
- Test Results: {TEST_RESULTS_DIR}
|
|
429
|
+
- Metrics: {METRICS_DIR}
|
|
430
|
+
- Logs: {LOGS_DIR}
|
|
431
|
+
- CI Results: {CI_RESULTS_PATH}
|
|
432
|
+
|
|
433
|
+
---
|
|
434
|
+
|
|
435
|
+
## Recommendations Summary
|
|
436
|
+
|
|
437
|
+
**Release Blocker:** {RELEASE_BLOCKER_SUMMARY}
|
|
438
|
+
|
|
439
|
+
**High Priority:** {HIGH_PRIORITY_SUMMARY}
|
|
440
|
+
|
|
441
|
+
**Medium Priority:** {MEDIUM_PRIORITY_SUMMARY}
|
|
442
|
+
|
|
443
|
+
**Next Steps:** {NEXT_STEPS_DESCRIPTION}
|
|
444
|
+
|
|
445
|
+
---
|
|
446
|
+
|
|
447
|
+
## Sign-Off
|
|
448
|
+
|
|
449
|
+
**NFR Assessment:**
|
|
450
|
+
|
|
451
|
+
- Overall Status: {OVERALL_STATUS} {OVERALL_ICON}
|
|
452
|
+
- Critical Issues: {CRITICAL_COUNT}
|
|
453
|
+
- High Priority Issues: {HIGH_COUNT}
|
|
454
|
+
- Concerns: {CONCERNS_COUNT}
|
|
455
|
+
- Evidence Gaps: {EVIDENCE_GAP_COUNT}
|
|
456
|
+
|
|
457
|
+
**Gate Status:** {GATE_STATUS} {GATE_ICON}
|
|
458
|
+
|
|
459
|
+
**Next Actions:**
|
|
460
|
+
|
|
461
|
+
- If PASS ✅: Proceed to `*gate` workflow or release
|
|
462
|
+
- If CONCERNS ⚠️: Address HIGH/CRITICAL issues, re-run `*nfr-assess`
|
|
463
|
+
- If FAIL ❌: Resolve FAIL status NFRs, re-run `*nfr-assess`
|
|
464
|
+
|
|
465
|
+
**Generated:** {DATE}
|
|
466
|
+
**Workflow:** testarch-nfr v4.0
|
|
467
|
+
|
|
468
|
+
---
|
|
469
|
+
|
|
470
|
+
<!-- Powered by BMAD-CORE™ -->
|
package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-01-load-context.md
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'step-01-load-context'
|
|
3
|
+
description: 'Load NFR requirements, evidence sources, and knowledge base'
|
|
4
|
+
nextStepFile: './step-02-define-thresholds.md'
|
|
5
|
+
knowledgeIndex: '{project-root}/_bmad/tea/testarch/tea-index.csv'
|
|
6
|
+
outputFile: '{test_artifacts}/nfr-assessment.md'
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Step 1: Load Context & Knowledge Base
|
|
10
|
+
|
|
11
|
+
## STEP GOAL
|
|
12
|
+
|
|
13
|
+
Gather NFR requirements, evidence sources, and knowledge fragments needed for assessment.
|
|
14
|
+
|
|
15
|
+
## MANDATORY EXECUTION RULES
|
|
16
|
+
|
|
17
|
+
- 📖 Read the entire step file before acting
|
|
18
|
+
- ✅ Speak in `{communication_language}`
|
|
19
|
+
- 🚫 Halt if implementation or evidence is unavailable
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## EXECUTION PROTOCOLS:
|
|
24
|
+
|
|
25
|
+
- 🎯 Follow the MANDATORY SEQUENCE exactly
|
|
26
|
+
- 💾 Record outputs before proceeding
|
|
27
|
+
- 📖 Load the next step only when instructed
|
|
28
|
+
|
|
29
|
+
## CONTEXT BOUNDARIES:
|
|
30
|
+
|
|
31
|
+
- Available context: config, loaded artifacts, and knowledge fragments
|
|
32
|
+
- Focus: this step's goal only
|
|
33
|
+
- Limits: do not execute future steps
|
|
34
|
+
- Dependencies: prior steps' outputs (if any)
|
|
35
|
+
|
|
36
|
+
## MANDATORY SEQUENCE
|
|
37
|
+
|
|
38
|
+
**CRITICAL:** Follow this sequence exactly. Do not skip, reorder, or improvise.
|
|
39
|
+
|
|
40
|
+
## 1. Prerequisites
|
|
41
|
+
|
|
42
|
+
- Implementation accessible for evaluation
|
|
43
|
+
- Evidence sources available (test results, metrics, logs)
|
|
44
|
+
|
|
45
|
+
If missing: **HALT** and request the missing inputs.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 2. Load Configuration
|
|
50
|
+
|
|
51
|
+
From `{config_source}`:
|
|
52
|
+
|
|
53
|
+
- Read `tea_browser_automation`
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
### Tiered Knowledge Loading
|
|
58
|
+
|
|
59
|
+
Load fragments based on their `tier` classification in `tea-index.csv`:
|
|
60
|
+
|
|
61
|
+
1. **Core tier** (always load): Foundational fragments required for this workflow
|
|
62
|
+
2. **Extended tier** (load on-demand): Load when deeper analysis is needed or when the user's context requires it
|
|
63
|
+
3. **Specialized tier** (load only when relevant): Load only when the specific use case matches (e.g., contract-testing only for microservices, email-auth only for email flows)
|
|
64
|
+
|
|
65
|
+
> **Context Efficiency**: Loading only core fragments reduces context usage by 40-50% compared to loading all fragments.
|
|
66
|
+
|
|
67
|
+
## 3. Load Knowledge Base Fragments
|
|
68
|
+
|
|
69
|
+
From `{knowledgeIndex}` load:
|
|
70
|
+
|
|
71
|
+
- `adr-quality-readiness-checklist.md`
|
|
72
|
+
- `ci-burn-in.md`
|
|
73
|
+
- `test-quality.md`
|
|
74
|
+
- `playwright-config.md`
|
|
75
|
+
- `error-handling.md`
|
|
76
|
+
|
|
77
|
+
**Playwright CLI (if `tea_browser_automation` is "cli" or "auto"):**
|
|
78
|
+
|
|
79
|
+
- `playwright-cli.md`
|
|
80
|
+
|
|
81
|
+
**MCP Patterns (if `tea_browser_automation` is "mcp" or "auto"):**
|
|
82
|
+
|
|
83
|
+
- (existing MCP-related fragments, if any are added in future)
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 4. Load Artifacts
|
|
88
|
+
|
|
89
|
+
If available, read:
|
|
90
|
+
|
|
91
|
+
- `tech-spec.md` (primary NFRs)
|
|
92
|
+
- `PRD.md` (product-level NFRs)
|
|
93
|
+
- `story` or `test-design` docs (feature-level NFRs)
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## 5. Confirm Inputs
|
|
98
|
+
|
|
99
|
+
Summarize loaded NFR sources and evidence availability.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## 6. Save Progress
|
|
104
|
+
|
|
105
|
+
**Save this step's accumulated work to `{outputFile}`.**
|
|
106
|
+
|
|
107
|
+
- **If `{outputFile}` does not exist** (first save), create it using the workflow template (if available) with YAML frontmatter:
|
|
108
|
+
|
|
109
|
+
```yaml
|
|
110
|
+
---
|
|
111
|
+
stepsCompleted: ['step-01-load-context']
|
|
112
|
+
lastStep: 'step-01-load-context'
|
|
113
|
+
lastSaved: '{date}'
|
|
114
|
+
---
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Then write this step's output below the frontmatter.
|
|
118
|
+
|
|
119
|
+
- **If `{outputFile}` already exists**, update:
|
|
120
|
+
- Add `'step-01-load-context'` to `stepsCompleted` array (only if not already present)
|
|
121
|
+
- Set `lastStep: 'step-01-load-context'`
|
|
122
|
+
- Set `lastSaved: '{date}'`
|
|
123
|
+
- Append this step's output to the appropriate section of the document.
|
|
124
|
+
|
|
125
|
+
**Update `inputDocuments`**: Set `inputDocuments` in the output template frontmatter to the list of artifact paths loaded in this step (e.g., knowledge fragments, test design documents, configuration files).
|
|
126
|
+
|
|
127
|
+
Load next step: `{nextStepFile}`
|
|
128
|
+
|
|
129
|
+
## 🚨 SYSTEM SUCCESS/FAILURE METRICS:
|
|
130
|
+
|
|
131
|
+
### ✅ SUCCESS:
|
|
132
|
+
|
|
133
|
+
- Step completed in full with required outputs
|
|
134
|
+
|
|
135
|
+
### ❌ SYSTEM FAILURE:
|
|
136
|
+
|
|
137
|
+
- Skipped sequence steps or missing outputs
|
|
138
|
+
**Master Rule:** Skipping steps is FORBIDDEN.
|
package/lib/bmad-cache/tea/src/workflows/testarch/bmad-testarch-nfr/steps-c/step-01b-resume.md
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'step-01b-resume'
|
|
3
|
+
description: 'Resume interrupted workflow from last completed step'
|
|
4
|
+
outputFile: '{test_artifacts}/nfr-assessment.md'
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Step 1b: Resume Workflow
|
|
8
|
+
|
|
9
|
+
## STEP GOAL
|
|
10
|
+
|
|
11
|
+
Resume an interrupted workflow by loading the existing output document, displaying progress, and routing to the next incomplete step.
|
|
12
|
+
|
|
13
|
+
## MANDATORY EXECUTION RULES
|
|
14
|
+
|
|
15
|
+
- Read the entire step file before acting
|
|
16
|
+
- Speak in `{communication_language}`
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## EXECUTION PROTOCOLS:
|
|
21
|
+
|
|
22
|
+
- Follow the MANDATORY SEQUENCE exactly
|
|
23
|
+
- Load the next step only when instructed
|
|
24
|
+
|
|
25
|
+
## CONTEXT BOUNDARIES:
|
|
26
|
+
|
|
27
|
+
- Available context: Output document with progress frontmatter
|
|
28
|
+
- Focus: Load progress and route to next step
|
|
29
|
+
- Limits: Do not re-execute completed steps
|
|
30
|
+
- Dependencies: Output document must exist from a previous run
|
|
31
|
+
|
|
32
|
+
## MANDATORY SEQUENCE
|
|
33
|
+
|
|
34
|
+
**CRITICAL:** Follow this sequence exactly.
|
|
35
|
+
|
|
36
|
+
### 1. Load Output Document
|
|
37
|
+
|
|
38
|
+
Read `{outputFile}` and parse YAML frontmatter for:
|
|
39
|
+
|
|
40
|
+
- `stepsCompleted` -- array of completed step names
|
|
41
|
+
- `lastStep` -- last completed step name
|
|
42
|
+
- `lastSaved` -- timestamp of last save
|
|
43
|
+
|
|
44
|
+
**If `{outputFile}` does not exist**, display:
|
|
45
|
+
|
|
46
|
+
"No previous progress found. There is no output document to resume from. Please use **[C] Create** to start a fresh workflow run."
|
|
47
|
+
|
|
48
|
+
**THEN:** Halt. Do not proceed.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
### 2. Display Progress Dashboard
|
|
53
|
+
|
|
54
|
+
Display progress with checkmark/empty indicators:
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
NFR Assessment - Resume Progress:
|
|
58
|
+
|
|
59
|
+
1. Load Context (step-01-load-context) [completed/pending]
|
|
60
|
+
2. Define Thresholds (step-02-define-thresholds) [completed/pending]
|
|
61
|
+
3. Gather Evidence (step-03-gather-evidence) [completed/pending]
|
|
62
|
+
4. Evaluate & Aggregate (step-04e-aggregate-nfr) [completed/pending]
|
|
63
|
+
5. Generate Report (step-05-generate-report) [completed/pending]
|
|
64
|
+
|
|
65
|
+
Last saved: {lastSaved}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
### 3. Route to Next Step
|
|
71
|
+
|
|
72
|
+
Based on `lastStep`, load the next incomplete step:
|
|
73
|
+
|
|
74
|
+
| lastStep | Next Step File |
|
|
75
|
+
| --------------------------- | --------------------------------- |
|
|
76
|
+
| `step-01-load-context` | `./step-02-define-thresholds.md` |
|
|
77
|
+
| `step-02-define-thresholds` | `./step-03-gather-evidence.md` |
|
|
78
|
+
| `step-03-gather-evidence` | `./step-04-evaluate-and-score.md` |
|
|
79
|
+
| `step-04e-aggregate-nfr` | `./step-05-generate-report.md` |
|
|
80
|
+
| `step-05-generate-report` | **Workflow already complete.** |
|
|
81
|
+
|
|
82
|
+
**If `lastStep` is the final step** (`step-05-generate-report`), display: "All steps completed. Use **[C] Create** to start fresh, **[V] Validate** to review outputs, or **[E] Edit** to make revisions." Then halt.
|
|
83
|
+
|
|
84
|
+
**If `lastStep` does not match any value above**, display: "Unknown progress state (`lastStep`: {lastStep}). Please use **[C] Create** to start fresh." Then halt.
|
|
85
|
+
|
|
86
|
+
**Otherwise**, load the identified step file, read completely, and execute.
|
|
87
|
+
|
|
88
|
+
The existing content in `{outputFile}` provides context from previously completed steps.
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## SYSTEM SUCCESS/FAILURE METRICS
|
|
93
|
+
|
|
94
|
+
### SUCCESS:
|
|
95
|
+
|
|
96
|
+
- Output document loaded and parsed correctly
|
|
97
|
+
- Progress dashboard displayed accurately
|
|
98
|
+
- Routed to correct next step
|
|
99
|
+
|
|
100
|
+
### FAILURE:
|
|
101
|
+
|
|
102
|
+
- Not loading output document
|
|
103
|
+
- Incorrect progress display
|
|
104
|
+
- Routing to wrong step
|
|
105
|
+
|
|
106
|
+
**Master Rule:** Resume MUST route to the exact next incomplete step. Never re-execute completed steps.
|