bmad-method 6.0.0-alpha.2 → 6.0.0-alpha.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.coderabbit.yaml +40 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/ISSUE_TEMPLATE/idea_submission.md +2 -2
- package/.github/scripts/discord-helpers.sh +34 -0
- package/.github/workflows/bundle-latest.yaml +329 -0
- package/.github/workflows/discord.yaml +302 -8
- package/.github/workflows/docs.yaml +72 -0
- package/.github/workflows/manual-release.yaml +35 -18
- package/.github/workflows/quality.yaml +94 -0
- package/.husky/pre-commit +4 -0
- package/.markdownlint-cli2.yaml +42 -0
- package/.prettierignore +7 -0
- package/.vscode/settings.json +4 -2
- package/CHANGELOG.md +678 -13
- package/CONTRIBUTING.md +2 -16
- package/LICENSE +1 -1
- package/README.md +159 -177
- package/docs/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
- package/docs/agent-customization-guide.md +208 -0
- package/docs/custom-content-installation.md +149 -0
- package/docs/custom-content.md +122 -0
- package/docs/document-sharding-guide.md +449 -0
- package/docs/getting-started/installation.md +76 -0
- package/docs/ide-info/crush.md +1 -1
- package/docs/ide-info/cursor.md +7 -7
- package/docs/ide-info/iflow.md +3 -3
- package/docs/ide-info/index.md +24 -0
- package/docs/ide-info/opencode.md +1 -1
- package/docs/ide-info/rovo-dev.md +22 -0
- package/docs/index.md +143 -0
- package/docs/v4-to-v6-upgrade.md +38 -36
- package/docs/web-bundles-gemini-gpt-guide.md +21 -0
- package/eslint.config.mjs +23 -2
- package/package.json +24 -9
- package/samples/sample-custom-modules/README.md +11 -0
- package/samples/sample-custom-modules/sample-unitary-module/README.md +8 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/commit-poet/commit-poet.agent.yaml +129 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/instructions.md +70 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +111 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +70 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +114 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +134 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +161 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +103 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith-sidecar/memories.md +17 -0
- package/samples/sample-custom-modules/sample-unitary-module/agents/toolsmith/toolsmith.agent.yaml +109 -0
- package/samples/sample-custom-modules/sample-unitary-module/module.yaml +8 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-01-init.md +168 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-02-q1.md +155 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-03-q2.md +89 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-04-q3.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-05-q4.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-06-q5.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-07-q6.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-08-q7.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-09-q8.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-10-q9.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-11-q10.md +36 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/steps/step-12-results.md +150 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/templates/csv-headers.template +1 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/quiz-master/workflow.md +54 -0
- package/samples/sample-custom-modules/sample-unitary-module/workflows/wassup/workflow.md +26 -0
- package/samples/sample-custom-modules/sample-wellness-module/README.md +6 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/meditation-guide.agent.yaml +136 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/foo.md +3 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion-sidecar/addition1.md +1 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion-sidecar/insights.md +13 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion-sidecar/instructions.md +30 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion-sidecar/memories.md +13 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion-sidecar/patterns.md +17 -0
- package/samples/sample-custom-modules/sample-wellness-module/agents/wellness-companion/wellness-companion.agent.yaml +120 -0
- package/samples/sample-custom-modules/sample-wellness-module/module.yaml +17 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/daily-checkin/README.md +32 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/daily-checkin/workflow.md +45 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/guided-meditation/README.md +31 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/guided-meditation/workflow.md +45 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/wellness-journal/README.md +31 -0
- package/samples/sample-custom-modules/sample-wellness-module/workflows/wellness-journal/workflow.md +45 -0
- package/src/core/_module-installer/installer.js +1 -9
- package/src/core/agents/bmad-master.agent.yaml +6 -11
- package/src/core/module.yaml +25 -0
- package/src/core/resources/excalidraw/README.md +160 -0
- package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
- package/src/core/resources/excalidraw/library-loader.md +50 -0
- package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
- package/src/core/tasks/advanced-elicitation-methods.csv +51 -0
- package/src/core/tasks/advanced-elicitation.xml +116 -0
- package/src/core/tasks/index-docs.xml +1 -1
- package/src/core/tasks/review-adversarial-general.xml +41 -0
- package/src/core/tasks/validate-workflow.xml +1 -1
- package/src/core/tasks/workflow.xml +126 -57
- package/src/core/tools/shard-doc.xml +53 -44
- package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
- package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +196 -0
- package/src/core/workflows/brainstorming/steps/step-01b-continue.md +121 -0
- package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +224 -0
- package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +236 -0
- package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +208 -0
- package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +263 -0
- package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +339 -0
- package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +302 -0
- package/src/core/workflows/brainstorming/template.md +13 -100
- package/src/core/workflows/brainstorming/workflow.md +51 -0
- package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
- package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +203 -0
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +158 -0
- package/src/core/workflows/party-mode/workflow.md +206 -0
- package/src/modules/bmb/README.md +12 -119
- package/src/modules/bmb/agents/bmad-builder.agent.yaml +77 -41
- package/src/modules/bmb/docs/agents/agent-compilation.md +340 -0
- package/src/modules/bmb/docs/agents/agent-menu-patterns.md +523 -0
- package/src/modules/bmb/docs/agents/expert-agent-architecture.md +363 -0
- package/src/modules/bmb/docs/agents/index.md +55 -0
- package/src/modules/bmb/docs/agents/kb.csv +0 -0
- package/src/modules/bmb/docs/agents/simple-agent-architecture.md +257 -0
- package/src/modules/bmb/docs/agents/understanding-agent-types.md +184 -0
- package/src/modules/bmb/docs/index.md +247 -0
- package/src/modules/bmb/docs/workflows/architecture.md +220 -0
- package/src/modules/bmb/docs/workflows/common-workflow-tools.csv +19 -0
- package/src/modules/bmb/docs/workflows/csv-data-file-standards.md +206 -0
- package/src/modules/bmb/docs/workflows/index.md +45 -0
- package/src/modules/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md +220 -0
- package/src/modules/bmb/docs/workflows/kb.csv +0 -0
- package/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md +241 -0
- package/src/modules/bmb/docs/workflows/templates/step-1b-template.md +223 -0
- package/src/modules/bmb/docs/workflows/templates/step-file.md +139 -0
- package/src/modules/bmb/docs/workflows/templates/step-template.md +290 -0
- package/src/modules/bmb/docs/workflows/templates/workflow-template.md +104 -0
- package/src/modules/bmb/docs/workflows/templates/workflow.md +58 -0
- package/src/modules/bmb/docs/workflows/terms.md +97 -0
- package/src/modules/bmb/module.yaml +16 -0
- package/src/modules/bmb/reference/README.md +3 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/README.md +242 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/breakthroughs.md +24 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/instructions.md +108 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/memories.md +46 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/mood-patterns.md +39 -0
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +152 -0
- package/src/modules/bmb/reference/agents/module-examples/README.md +49 -0
- package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +53 -0
- package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +57 -0
- package/src/modules/bmb/reference/agents/simple-examples/README.md +223 -0
- package/src/modules/bmb/reference/agents/simple-examples/commit-poet.agent.yaml +126 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +176 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +120 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +153 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
- package/src/modules/bmb/workflows/create-agent/data/agent-validation-checklist.md +174 -0
- package/src/modules/bmb/workflows/create-agent/data/brainstorm-context.md +153 -0
- package/src/modules/bmb/workflows/create-agent/data/communication-presets.csv +61 -0
- package/src/modules/bmb/workflows/create-agent/data/info-and-installation-guide.md +29 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/README.md +3 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/README.md +242 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/breakthroughs.md +24 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/instructions.md +108 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/memories.md +46 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/mood-patterns.md +39 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +152 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/README.md +48 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/security-engineer.agent.yaml +53 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/trend-analyst.agent.yaml +57 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/README.md +223 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/commit-poet.agent.yaml +126 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +177 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +150 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +152 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
- package/src/modules/bmb/workflows/create-agent/data/validation-complete.md +305 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +145 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-02-discover.md +206 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-03-persona.md +260 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-04-commands.md +237 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-05-name.md +232 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-06-build.md +186 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-07-validate.md +234 -0
- package/src/modules/bmb/workflows/create-agent/steps/step-08-celebrate.md +218 -0
- package/src/modules/bmb/workflows/create-agent/templates/agent-plan.template.md +3 -0
- package/src/modules/bmb/workflows/create-agent/templates/expert-agent.template.md +364 -0
- package/src/modules/bmb/workflows/create-agent/templates/simple-agent.template.md +257 -0
- package/src/modules/bmb/workflows/create-agent/workflow.md +58 -0
- package/src/modules/bmb/workflows/create-module/steps/step-01-init.md +155 -0
- package/src/modules/bmb/workflows/create-module/steps/step-01b-continue.md +169 -0
- package/src/modules/bmb/workflows/create-module/steps/step-02-concept.md +217 -0
- package/src/modules/bmb/workflows/create-module/steps/step-03-components.md +267 -0
- package/src/modules/bmb/workflows/create-module/steps/step-04-structure.md +228 -0
- package/src/modules/bmb/workflows/create-module/steps/step-05-config.md +233 -0
- package/src/modules/bmb/workflows/create-module/steps/step-06-agents.md +296 -0
- package/src/modules/bmb/workflows/create-module/steps/step-07-workflows.md +228 -0
- package/src/modules/bmb/workflows/create-module/steps/step-08-installer.md +186 -0
- package/src/modules/bmb/workflows/create-module/steps/step-09-documentation.md +309 -0
- package/src/modules/bmb/workflows/create-module/steps/step-10-roadmap.md +337 -0
- package/src/modules/bmb/workflows/create-module/steps/step-11-validate.md +335 -0
- package/src/modules/bmb/workflows/create-module/templates/agent.template.md +313 -0
- package/src/modules/bmb/workflows/create-module/templates/installer.template.js +47 -0
- package/src/modules/bmb/workflows/create-module/templates/module-plan.template.md +5 -0
- package/src/modules/bmb/workflows/create-module/templates/module.template.yaml +53 -0
- package/src/modules/bmb/workflows/create-module/templates/workflow-plan-template.md +23 -0
- package/src/modules/bmb/workflows/create-module/validation.md +126 -0
- package/src/modules/bmb/workflows/create-module/workflow.md +55 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-01-init.md +157 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-02-gather.md +211 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-configuration.md +250 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-04-plan-review.md +216 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-05-output-format-design.md +289 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-06-design.md +271 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-07-build.md +308 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-08-review.md +284 -0
- package/src/modules/bmb/workflows/create-workflow/steps/step-09-complete.md +187 -0
- package/src/modules/bmb/workflows/create-workflow/workflow.md +58 -0
- package/src/modules/bmb/workflows/edit-agent/steps/step-01-discover-intent.md +134 -0
- package/src/modules/bmb/workflows/edit-agent/steps/step-02-analyze-agent.md +202 -0
- package/src/modules/bmb/workflows/edit-agent/steps/step-03-propose-changes.md +157 -0
- package/src/modules/bmb/workflows/edit-agent/steps/step-04-apply-changes.md +150 -0
- package/src/modules/bmb/workflows/edit-agent/steps/step-05-validate.md +150 -0
- package/src/modules/bmb/workflows/edit-agent/workflow.md +58 -0
- package/src/modules/bmb/workflows/edit-workflow/steps/step-01-analyze.md +217 -0
- package/src/modules/bmb/workflows/edit-workflow/steps/step-02-discover.md +253 -0
- package/src/modules/bmb/workflows/edit-workflow/steps/step-03-improve.md +217 -0
- package/src/modules/bmb/workflows/edit-workflow/steps/step-04-validate.md +193 -0
- package/src/modules/bmb/workflows/edit-workflow/steps/step-05-compliance-check.md +245 -0
- package/src/modules/bmb/workflows/edit-workflow/templates/completion-summary.md +75 -0
- package/src/modules/bmb/workflows/edit-workflow/templates/improvement-goals.md +68 -0
- package/src/modules/bmb/workflows/edit-workflow/templates/improvement-log.md +40 -0
- package/src/modules/bmb/workflows/edit-workflow/templates/validation-results.md +51 -0
- package/src/modules/bmb/workflows/edit-workflow/templates/workflow-analysis.md +56 -0
- package/src/modules/bmb/workflows/edit-workflow/workflow.md +58 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +152 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +243 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +274 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +295 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +264 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +360 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +258 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +301 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/templates/compliance-report.md +140 -0
- package/src/modules/bmb/workflows/workflow-compliance-check/workflow.md +58 -0
- package/src/modules/bmb/workflows-legacy/edit-module/README.md +171 -0
- package/src/modules/bmb/workflows-legacy/edit-module/checklist.md +163 -0
- package/src/modules/bmb/workflows-legacy/edit-module/instructions.md +340 -0
- package/src/modules/bmb/workflows-legacy/edit-module/workflow.yaml +34 -0
- package/src/modules/bmb/workflows-legacy/module-brief/README.md +264 -0
- package/src/modules/bmb/workflows-legacy/module-brief/checklist.md +116 -0
- package/src/modules/bmb/workflows-legacy/module-brief/instructions.md +268 -0
- package/src/modules/bmb/workflows-legacy/module-brief/workflow.yaml +36 -0
- package/src/modules/bmgd/_module-installer/installer.js +160 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/claude-code.js +23 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/windsurf.js +18 -0
- package/src/modules/bmgd/agents/game-architect.agent.yaml +52 -0
- package/src/modules/bmgd/agents/game-designer.agent.yaml +60 -0
- package/src/modules/bmgd/agents/game-dev.agent.yaml +56 -0
- package/src/modules/bmgd/agents/game-qa.agent.yaml +64 -0
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +63 -0
- package/src/modules/bmgd/agents/game-solo-dev.agent.yaml +56 -0
- package/src/modules/bmgd/docs/agents-guide.md +407 -0
- package/src/modules/bmgd/docs/game-types-guide.md +503 -0
- package/src/modules/bmgd/docs/glossary.md +294 -0
- package/src/modules/bmgd/docs/index.md +180 -0
- package/src/modules/bmgd/docs/quick-flow-guide.md +288 -0
- package/src/modules/bmgd/docs/quick-start.md +250 -0
- package/src/modules/bmgd/docs/troubleshooting.md +259 -0
- package/src/modules/bmgd/docs/workflow-overview.jpg +0 -0
- package/src/modules/bmgd/docs/workflows-guide.md +463 -0
- package/src/modules/bmgd/gametest/knowledge/balance-testing.md +220 -0
- package/src/modules/bmgd/gametest/knowledge/certification-testing.md +319 -0
- package/src/modules/bmgd/gametest/knowledge/compatibility-testing.md +228 -0
- package/src/modules/bmgd/gametest/knowledge/godot-testing.md +376 -0
- package/src/modules/bmgd/gametest/knowledge/input-testing.md +315 -0
- package/src/modules/bmgd/gametest/knowledge/localization-testing.md +304 -0
- package/src/modules/bmgd/gametest/knowledge/multiplayer-testing.md +322 -0
- package/src/modules/bmgd/gametest/knowledge/performance-testing.md +204 -0
- package/src/modules/bmgd/gametest/knowledge/playtesting.md +384 -0
- package/src/modules/bmgd/gametest/knowledge/qa-automation.md +190 -0
- package/src/modules/bmgd/gametest/knowledge/regression-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/save-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/smoke-testing.md +404 -0
- package/src/modules/bmgd/gametest/knowledge/test-priorities.md +271 -0
- package/src/modules/bmgd/gametest/knowledge/unity-testing.md +383 -0
- package/src/modules/bmgd/gametest/knowledge/unreal-testing.md +388 -0
- package/src/modules/bmgd/gametest/qa-index.csv +17 -0
- package/src/modules/bmgd/module.yaml +64 -0
- package/src/modules/bmgd/teams/default-party.csv +12 -0
- package/src/modules/bmgd/teams/team-gamedev.yaml +29 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +130 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-01-init.md +164 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-02-context.md +210 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-03-ideation.md +289 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-04-complete.md +275 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.md +49 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +62 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/instructions.md +373 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01b-continue.md +151 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-02-vision.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-03-market.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-04-fundamentals.md +231 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-05-scope.md +242 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-06-references.md +224 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-07-content.md +282 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-08-complete.md +296 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.md +62 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +67 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01-init.md +248 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01b-continue.md +173 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-02-context.md +332 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-03-platforms.md +245 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-04-vision.md +229 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-05-core-gameplay.md +258 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-06-mechanics.md +249 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-07-game-type.md +266 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-08-progression.md +272 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-09-levels.md +264 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-10-art-audio.md +255 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-11-technical.md +275 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-12-epics.md +284 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-13-metrics.md +250 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-14-complete.md +335 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.md +61 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +101 -0
- package/src/modules/bmgd/workflows/2-design/narrative/instructions-narrative.md +604 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01-init.md +228 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01b-continue.md +163 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-02-foundation.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-03-story.md +238 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-04-characters.md +297 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-05-world.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-06-dialogue.md +250 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-07-environmental.md +244 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-08-delivery.md +264 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-09-integration.md +254 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-10-production.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-11-complete.md +331 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.md +57 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +77 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +321 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +240 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +701 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01b-continue.md +153 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-02-context.md +262 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-03-starter.md +290 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-04-decisions.md +300 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-05-crosscutting.md +319 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-06-structure.md +304 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-07-patterns.md +349 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-08-validation.md +293 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-09-complete.md +356 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/templates/architecture-template.md +103 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.md +55 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +98 -0
- package/src/modules/bmgd/workflows/3-technical/generate-project-context/project-context-template.md +20 -0
- package/src/modules/bmgd/workflows/3-technical/generate-project-context/steps/step-01-discover.md +201 -0
- package/src/modules/bmgd/workflows/3-technical/generate-project-context/steps/step-02-generate.md +373 -0
- package/src/modules/bmgd/workflows/3-technical/generate-project-context/steps/step-03-complete.md +279 -0
- package/src/modules/bmgd/workflows/3-technical/generate-project-context/workflow.md +48 -0
- package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +23 -0
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.xml +225 -0
- package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +64 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +279 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +206 -0
- package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +63 -0
- package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +358 -0
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.xml +298 -0
- package/src/modules/bmgd/workflows/4-production/create-story/template.md +49 -0
- package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +79 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +80 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.xml +409 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +68 -0
- package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +1443 -0
- package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +62 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/checklist.md +33 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +234 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +56 -0
- package/src/modules/bmgd/workflows/4-production/sprint-status/instructions.md +229 -0
- package/src/modules/bmgd/workflows/4-production/sprint-status/workflow.yaml +35 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/instructions.md +140 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/workflow.yaml +27 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/checklist.md +37 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/instructions.md +220 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/workflow.yaml +45 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/checklist.md +26 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/instructions.md +156 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/workflow.yaml +36 -0
- package/src/modules/bmgd/workflows/gametest/automate/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/automate/instructions.md +317 -0
- package/src/modules/bmgd/workflows/gametest/automate/workflow.yaml +50 -0
- package/src/modules/bmgd/workflows/gametest/performance/checklist.md +96 -0
- package/src/modules/bmgd/workflows/gametest/performance/instructions.md +323 -0
- package/src/modules/bmgd/workflows/gametest/performance/performance-template.md +256 -0
- package/src/modules/bmgd/workflows/gametest/performance/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/instructions.md +297 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/playtest-template.md +208 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/workflow.yaml +59 -0
- package/src/modules/bmgd/workflows/gametest/test-design/checklist.md +98 -0
- package/src/modules/bmgd/workflows/gametest/test-design/instructions.md +280 -0
- package/src/modules/bmgd/workflows/gametest/test-design/test-design-template.md +205 -0
- package/src/modules/bmgd/workflows/gametest/test-design/workflow.yaml +47 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/checklist.md +103 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/instructions.md +348 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/test-review/checklist.md +87 -0
- package/src/modules/bmgd/workflows/gametest/test-review/instructions.md +272 -0
- package/src/modules/bmgd/workflows/gametest/test-review/test-review-template.md +203 -0
- package/src/modules/bmgd/workflows/gametest/test-review/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/workflow-status/init/instructions.md +299 -0
- package/src/modules/bmgd/workflows/workflow-status/init/workflow.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/instructions.md +395 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-brownfield.yaml +65 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-greenfield.yaml +71 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-brownfield.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-greenfield.yaml +39 -0
- package/src/modules/bmgd/workflows/workflow-status/project-levels.yaml +63 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow.yaml +30 -0
- package/src/modules/bmm/README.md +78 -92
- package/src/modules/bmm/_module-installer/installer.js +3 -3
- package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +1 -1
- package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +1 -1
- package/src/modules/bmm/agents/analyst.agent.yaml +32 -23
- package/src/modules/bmm/agents/architect.agent.yaml +32 -25
- package/src/modules/bmm/agents/dev.agent.yaml +32 -27
- package/src/modules/bmm/agents/pm.agent.yaml +30 -30
- package/src/modules/bmm/agents/quick-flow-solo-dev.agent.yaml +27 -0
- package/src/modules/bmm/agents/sm.agent.yaml +35 -44
- package/src/modules/bmm/agents/tea.agent.yaml +31 -20
- package/src/modules/bmm/agents/tech-writer.agent.yaml +67 -0
- package/src/modules/bmm/agents/ux-designer.agent.yaml +35 -20
- package/src/modules/bmm/data/README.md +29 -0
- package/src/modules/bmm/data/documentation-standards.md +262 -0
- package/src/modules/bmm/data/project-context-template.md +40 -0
- package/src/modules/bmm/docs/agents-guide.md +144 -0
- package/src/modules/bmm/docs/bmad-quick-flow.md +506 -0
- package/src/modules/bmm/docs/brownfield-guide.md +748 -0
- package/src/modules/bmm/docs/enterprise-agentic-development.md +686 -0
- package/src/modules/bmm/docs/faq.md +542 -0
- package/src/modules/bmm/docs/glossary.md +306 -0
- package/src/modules/bmm/docs/images/README.md +37 -0
- package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +5034 -0
- package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +4 -0
- package/src/modules/bmm/docs/index.md +168 -0
- package/src/modules/bmm/docs/party-mode.md +224 -0
- package/src/modules/bmm/docs/quick-flow-solo-dev.md +337 -0
- package/src/modules/bmm/docs/quick-spec-flow.md +638 -0
- package/src/modules/bmm/docs/quick-start.md +366 -0
- package/src/modules/bmm/docs/scale-adaptive-system.md +618 -0
- package/src/modules/bmm/docs/test-architecture.md +455 -0
- package/src/modules/bmm/docs/troubleshooting.md +661 -0
- package/src/modules/bmm/docs/workflow-architecture-reference.md +366 -0
- package/src/modules/bmm/docs/workflow-document-project-reference.md +489 -0
- package/src/modules/bmm/docs/workflows-analysis.md +266 -0
- package/src/modules/bmm/docs/workflows-implementation.md +210 -0
- package/src/modules/bmm/docs/workflows-planning.md +451 -0
- package/src/modules/bmm/docs/workflows-solutioning.md +509 -0
- package/src/modules/bmm/module.yaml +56 -0
- package/src/modules/bmm/teams/default-party.csv +21 -0
- package/src/modules/bmm/teams/team-fullstack.yaml +1 -0
- package/src/modules/bmm/testarch/knowledge/api-request.md +303 -0
- package/src/modules/bmm/testarch/knowledge/auth-session.md +356 -0
- package/src/modules/bmm/testarch/knowledge/burn-in.md +273 -0
- package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +1 -1
- package/src/modules/bmm/testarch/knowledge/file-utils.md +260 -0
- package/src/modules/bmm/testarch/knowledge/fixtures-composition.md +382 -0
- package/src/modules/bmm/testarch/knowledge/intercept-network-call.md +280 -0
- package/src/modules/bmm/testarch/knowledge/log.md +294 -0
- package/src/modules/bmm/testarch/knowledge/network-error-monitor.md +272 -0
- package/src/modules/bmm/testarch/knowledge/network-recorder.md +265 -0
- package/src/modules/bmm/testarch/knowledge/overview.md +283 -0
- package/src/modules/bmm/testarch/knowledge/recurse.md +296 -0
- package/src/modules/bmm/testarch/tea-index.csv +11 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +192 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +165 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +203 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +206 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +209 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +223 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +198 -0
- package/src/modules/bmm/workflows/1-analysis/create-product-brief/workflow.md +58 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +136 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +228 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +237 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +205 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +233 -0
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +442 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +181 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +236 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +199 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +248 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +258 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +176 -0
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +474 -0
- package/src/modules/bmm/workflows/1-analysis/research/research.template.md +29 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +136 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +238 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +247 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +201 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +238 -0
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +485 -0
- package/src/modules/bmm/workflows/1-analysis/research/workflow.md +173 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +159 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +126 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +189 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +215 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +218 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +233 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +251 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +253 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +223 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +223 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +240 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +247 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +236 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +263 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +226 -0
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +6 -138
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +57 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +13 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +12 -58
- package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +11 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +243 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +165 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +420 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +289 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +290 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +270 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +261 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +257 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +298 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +269 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +293 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +223 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.md +61 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +189 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +177 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +178 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +138 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +251 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +132 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
- package/src/modules/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +54 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +11 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +182 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +163 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +223 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +330 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +317 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +358 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +378 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +358 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +351 -0
- package/src/modules/bmm/workflows/3-solutioning/create-architecture/workflow.md +49 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +258 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +232 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +271 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +144 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
- package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +2 -1
- package/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +225 -0
- package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +34 -36
- package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +1 -1
- package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +7 -2
- package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +42 -27
- package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +332 -214
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.xml +344 -0
- package/src/modules/bmm/workflows/4-implementation/create-story/template.md +3 -5
- package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +38 -27
- package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +65 -23
- package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.xml +409 -0
- package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +9 -10
- package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +1208 -244
- package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +38 -26
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +59 -55
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +14 -14
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +21 -8
- package/src/modules/bmm/workflows/4-implementation/sprint-status/instructions.md +229 -0
- package/src/modules/bmm/workflows/4-implementation/sprint-status/workflow.yaml +36 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/instructions.md +115 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.yaml +28 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +156 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +120 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +113 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +113 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +106 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +140 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +51 -0
- package/src/modules/bmm/workflows/document-project/checklist.md +1 -1
- package/src/modules/bmm/workflows/document-project/instructions.md +31 -32
- package/src/modules/bmm/workflows/document-project/workflow.yaml +4 -10
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +6 -6
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +5 -5
- package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +13 -13
- package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +5 -5
- package/src/modules/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +90 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +127 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +39 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +130 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +43 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +141 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +49 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +241 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +38 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +133 -0
- package/src/modules/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +27 -0
- package/src/modules/bmm/workflows/generate-project-context/project-context-template.md +21 -0
- package/src/modules/bmm/workflows/generate-project-context/steps/step-01-discover.md +183 -0
- package/src/modules/bmm/workflows/generate-project-context/steps/step-02-generate.md +317 -0
- package/src/modules/bmm/workflows/generate-project-context/steps/step-03-complete.md +277 -0
- package/src/modules/bmm/workflows/generate-project-context/workflow.md +48 -0
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +10 -9
- package/src/modules/bmm/workflows/testarch/atdd/checklist.md +1 -0
- package/src/modules/bmm/workflows/testarch/atdd/instructions.md +26 -5
- package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +2 -9
- package/src/modules/bmm/workflows/testarch/automate/checklist.md +2 -0
- package/src/modules/bmm/workflows/testarch/automate/instructions.md +25 -4
- package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +2 -11
- package/src/modules/bmm/workflows/testarch/ci/checklist.md +7 -5
- package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +36 -3
- package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +25 -4
- package/src/modules/bmm/workflows/testarch/ci/instructions.md +23 -4
- package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +2 -10
- package/src/modules/bmm/workflows/testarch/framework/checklist.md +4 -4
- package/src/modules/bmm/workflows/testarch/framework/instructions.md +28 -2
- package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +2 -8
- package/src/modules/bmm/workflows/testarch/nfr-assess/checklist.md +2 -0
- package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +1 -1
- package/src/modules/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +2 -0
- package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +2 -11
- package/src/modules/bmm/workflows/testarch/test-design/checklist.md +7 -6
- package/src/modules/bmm/workflows/testarch/test-design/instructions.md +182 -15
- package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +13 -4
- package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +13 -11
- package/src/modules/bmm/workflows/testarch/test-review/checklist.md +2 -0
- package/src/modules/bmm/workflows/testarch/test-review/instructions.md +29 -9
- package/src/modules/bmm/workflows/testarch/test-review/test-review-template.md +2 -0
- package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +2 -9
- package/src/modules/bmm/workflows/testarch/trace/checklist.md +1 -0
- package/src/modules/bmm/workflows/testarch/trace/instructions.md +11 -9
- package/src/modules/bmm/workflows/testarch/trace/trace-template.md +2 -0
- package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +2 -13
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +259 -210
- package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +6 -5
- package/src/modules/bmm/workflows/workflow-status/instructions.md +188 -117
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +122 -0
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +110 -0
- package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +106 -0
- package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +96 -0
- package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +1 -1
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/modules/bmm/workflows/workflow-status/workflow.yaml +7 -5
- package/src/modules/cis/_module-installer/installer.js +1 -1
- package/src/modules/cis/agents/brainstorming-coach.agent.yaml +15 -9
- package/src/modules/cis/agents/creative-problem-solver.agent.yaml +14 -8
- package/src/modules/cis/agents/design-thinking-coach.agent.yaml +14 -8
- package/src/modules/cis/agents/innovation-strategist.agent.yaml +14 -8
- package/src/modules/cis/agents/presentation-master.agent.yaml +61 -0
- package/src/modules/cis/agents/storyteller/storyteller-sidecar/stories-told.md +7 -0
- package/src/modules/cis/agents/storyteller/storyteller-sidecar/story-preferences.md +7 -0
- package/src/modules/cis/agents/storyteller/storyteller.agent.yaml +34 -0
- package/src/modules/cis/docs/index.md +149 -0
- package/src/modules/cis/module.yaml +11 -0
- package/src/modules/cis/teams/creative-squad.yaml +1 -0
- package/src/modules/cis/teams/default-party.csv +12 -0
- package/src/modules/cis/workflows/README.md +102 -30
- package/src/modules/cis/workflows/design-thinking/instructions.md +4 -2
- package/src/modules/cis/workflows/design-thinking/workflow.yaml +7 -12
- package/src/modules/cis/workflows/innovation-strategy/instructions.md +7 -5
- package/src/modules/cis/workflows/innovation-strategy/template.md +3 -3
- package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +7 -12
- package/src/modules/cis/workflows/problem-solving/instructions.md +4 -2
- package/src/modules/cis/workflows/problem-solving/workflow.yaml +7 -12
- package/src/modules/cis/workflows/storytelling/instructions.md +14 -4
- package/src/modules/cis/workflows/storytelling/workflow.yaml +7 -12
- package/src/utility/agent-components/activation-rules.txt +7 -0
- package/src/utility/agent-components/activation-steps.txt +13 -0
- package/src/utility/agent-components/agent-command-header.md +1 -0
- package/src/utility/agent-components/agent.customize.template.yaml +41 -0
- package/src/utility/agent-components/handler-action.txt +4 -0
- package/src/utility/agent-components/handler-exec.txt +6 -0
- package/src/utility/agent-components/handler-multi.txt +14 -0
- package/src/utility/agent-components/handler-tmpl.txt +5 -0
- package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
- package/src/utility/agent-components/handler-workflow.txt +10 -0
- package/src/utility/agent-components/menu-handlers.txt +6 -0
- package/test/README.md +2 -2
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-wrong-shortcut.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -3
- package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +30 -0
- package/test/test-agent-schema.js +2 -2
- package/test/test-installation-components.js +214 -0
- package/tools/build-docs.js +630 -0
- package/tools/cli/README.md +1 -588
- package/tools/cli/commands/install.js +61 -20
- package/tools/cli/installers/install-messages.yaml +52 -0
- package/tools/cli/installers/lib/core/config-collector.js +595 -98
- package/tools/cli/installers/lib/core/custom-module-cache.js +259 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +2 -2
- package/tools/cli/installers/lib/core/detector.js +75 -16
- package/tools/cli/installers/lib/core/ide-config-manager.js +12 -8
- package/tools/cli/installers/lib/core/installer.js +1277 -722
- package/tools/cli/installers/lib/core/manifest-generator.js +285 -142
- package/tools/cli/installers/lib/core/manifest.js +74 -20
- package/tools/cli/installers/lib/custom/handler.js +363 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +94 -12
- package/tools/cli/installers/lib/ide/antigravity.js +507 -0
- package/tools/cli/installers/lib/ide/auggie.js +148 -240
- package/tools/cli/installers/lib/ide/claude-code.js +92 -32
- package/tools/cli/installers/lib/ide/cline.js +64 -18
- package/tools/cli/installers/lib/ide/codex.js +226 -72
- package/tools/cli/installers/lib/ide/crush.js +79 -55
- package/tools/cli/installers/lib/ide/cursor.js +144 -20
- package/tools/cli/installers/lib/ide/gemini.js +180 -35
- package/tools/cli/installers/lib/ide/github-copilot.js +154 -57
- package/tools/cli/installers/lib/ide/iflow.js +79 -30
- package/tools/cli/installers/lib/ide/kilo.js +94 -16
- package/tools/cli/installers/lib/ide/kiro-cli.js +327 -0
- package/tools/cli/installers/lib/ide/manager.js +50 -0
- package/tools/cli/installers/lib/ide/opencode.js +66 -22
- package/tools/cli/installers/lib/ide/qwen.js +93 -11
- package/tools/cli/installers/lib/ide/roo.js +158 -176
- package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +96 -0
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +34 -19
- package/tools/cli/installers/lib/ide/shared/module-injections.js +2 -2
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +119 -0
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +241 -0
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +12 -0
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +13 -0
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
- package/tools/cli/installers/lib/ide/trae.js +67 -32
- package/tools/cli/installers/lib/ide/windsurf.js +65 -8
- package/tools/cli/installers/lib/message-loader.js +85 -0
- package/tools/cli/installers/lib/modules/manager.js +785 -97
- package/tools/cli/lib/activation-builder.js +8 -13
- package/tools/cli/lib/agent/compiler.js +564 -0
- package/tools/cli/lib/agent/installer.js +716 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/agent-analyzer.js +48 -20
- package/tools/cli/lib/agent-party-generator.js +5 -17
- package/tools/cli/lib/cli-utils.js +65 -46
- package/tools/cli/lib/config.js +7 -4
- package/tools/cli/lib/platform-codes.js +2 -2
- package/tools/cli/lib/ui.js +1132 -81
- package/tools/cli/lib/xml-handler.js +4 -55
- package/tools/cli/lib/yaml-format.js +6 -7
- package/tools/cli/lib/yaml-xml-builder.js +196 -56
- package/tools/flattener/ignoreRules.js +1 -1
- package/tools/flattener/xml.js +1 -7
- package/tools/lib/xml-utils.js +13 -0
- package/tools/maintainer/review-pr-README.md +55 -0
- package/tools/maintainer/review-pr.md +242 -0
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/platform-codes.yaml +12 -0
- package/tools/schema/agent.js +304 -23
- package/tools/validate-agent-schema.js +2 -2
- package/tools/validate-svg-changes.sh +356 -0
- package/website/css/custom.css +52 -0
- package/website/docusaurus.config.js +179 -0
- package/website/sidebars.js +157 -0
- package/website/src/pages/downloads.md +81 -0
- package/website/src/pages/index.js +50 -0
- package/website/static/favicon.ico +0 -0
- package/website/static/img/logo.svg +4 -0
- package/website/static/robots.txt +37 -0
- package/.claude/commands/bmad/bmb/agents/bmad-builder.md +0 -70
- package/.claude/commands/bmad/bmb/workflows/README.md +0 -67
- package/.claude/commands/bmad/bmb/workflows/audit-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/convert-legacy.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-agent.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-module.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/create-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-agent.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-module.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/edit-workflow.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/module-brief.md +0 -15
- package/.claude/commands/bmad/bmb/workflows/redoc.md +0 -15
- package/.claude/commands/bmad/bmd/agents/cli-chief.md +0 -108
- package/.claude/commands/bmad/bmd/agents/doc-keeper.md +0 -115
- package/.claude/commands/bmad/bmd/agents/release-chief.md +0 -109
- package/.claude/commands/bmad/core/agents/bmad-master.md +0 -71
- package/.claude/commands/bmad/core/tasks/index-docs.md +0 -9
- package/.claude/commands/bmad/core/tools/shard-doc.md +0 -9
- package/.claude/commands/bmad/core/workflows/README.md +0 -27
- package/.claude/commands/bmad/core/workflows/brainstorming.md +0 -15
- package/.claude/commands/bmad/core/workflows/party-mode.md +0 -15
- package/.claude/hooks/bmad-tts-injector.sh +0 -415
- package/.claude/hooks/bmad-voice-manager.sh +0 -511
- package/.claude/hooks/check-output-style.sh +0 -112
- package/.claude/hooks/download-extra-voices.sh +0 -244
- package/.claude/hooks/github-star-reminder.sh +0 -154
- package/.claude/hooks/language-manager.sh +0 -392
- package/.claude/hooks/learn-manager.sh +0 -475
- package/.claude/hooks/personality-manager.sh +0 -438
- package/.claude/hooks/piper-download-voices.sh +0 -165
- package/.claude/hooks/piper-installer.sh +0 -178
- package/.claude/hooks/piper-multispeaker-registry.sh +0 -165
- package/.claude/hooks/piper-voice-manager.sh +0 -293
- package/.claude/hooks/play-tts-elevenlabs.sh +0 -404
- package/.claude/hooks/play-tts-piper.sh +0 -338
- package/.claude/hooks/play-tts.sh +0 -100
- package/.claude/hooks/provider-commands.sh +0 -540
- package/.claude/hooks/provider-manager.sh +0 -298
- package/.claude/hooks/replay-target-audio.sh +0 -95
- package/.claude/hooks/sentiment-manager.sh +0 -201
- package/.claude/hooks/speed-manager.sh +0 -291
- package/.claude/hooks/voice-manager.sh +0 -594
- package/.claude/hooks/voices-config.sh +0 -70
- package/.claude/settings.local.json +0 -41
- package/.github/workflows/lint.yaml +0 -61
- package/bmad/_cfg/agent-manifest.csv +0 -7
- package/bmad/_cfg/agents/bmb-bmad-builder.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmd-cli-chief.customize.yaml +0 -32
- package/bmad/_cfg/agents/bmd-doc-keeper.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmd-release-chief.customize.yaml +0 -42
- package/bmad/_cfg/agents/core-bmad-master.customize.yaml +0 -42
- package/bmad/_cfg/files-manifest.csv +0 -83
- package/bmad/_cfg/manifest.yaml +0 -12
- package/bmad/_cfg/task-manifest.csv +0 -5
- package/bmad/_cfg/tool-manifest.csv +0 -2
- package/bmad/_cfg/workflow-manifest.csv +0 -15
- package/bmad/bmb/README.md +0 -132
- package/bmad/bmb/agents/bmad-builder.md +0 -70
- package/bmad/bmb/config.yaml +0 -14
- package/bmad/bmb/workflows/audit-workflow/checklist.md +0 -143
- package/bmad/bmb/workflows/audit-workflow/instructions.md +0 -341
- package/bmad/bmb/workflows/audit-workflow/template.md +0 -118
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml +0 -23
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -21
- package/bmad/bmb/workflows/convert-legacy/README.md +0 -262
- package/bmad/bmb/workflows/convert-legacy/checklist.md +0 -205
- package/bmad/bmb/workflows/convert-legacy/instructions.md +0 -377
- package/bmad/bmb/workflows/convert-legacy/workflow.yaml +0 -32
- package/bmad/bmb/workflows/create-agent/README.md +0 -320
- package/bmad/bmb/workflows/create-agent/agent-architecture.md +0 -419
- package/bmad/bmb/workflows/create-agent/agent-architecture.md.bak +0 -412
- package/bmad/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
- package/bmad/bmb/workflows/create-agent/agent-command-patterns.md.bak +0 -759
- package/bmad/bmb/workflows/create-agent/agent-types.md +0 -292
- package/bmad/bmb/workflows/create-agent/brainstorm-context.md +0 -174
- package/bmad/bmb/workflows/create-agent/checklist.md +0 -62
- package/bmad/bmb/workflows/create-agent/communication-styles.md +0 -202
- package/bmad/bmb/workflows/create-agent/instructions.md +0 -430
- package/bmad/bmb/workflows/create-agent/workflow.yaml +0 -37
- package/bmad/bmb/workflows/create-module/README.md +0 -220
- package/bmad/bmb/workflows/create-module/README.md.bak +0 -218
- package/bmad/bmb/workflows/create-module/brainstorm-context.md +0 -137
- package/bmad/bmb/workflows/create-module/checklist.md +0 -244
- package/bmad/bmb/workflows/create-module/checklist.md.bak +0 -245
- package/bmad/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
- package/bmad/bmb/workflows/create-module/installer-templates/installer.js +0 -231
- package/bmad/bmb/workflows/create-module/installer-templates/installer.js.bak +0 -231
- package/bmad/bmb/workflows/create-module/instructions.md +0 -581
- package/bmad/bmb/workflows/create-module/instructions.md.bak +0 -521
- package/bmad/bmb/workflows/create-module/module-structure.md +0 -366
- package/bmad/bmb/workflows/create-module/module-structure.md.bak +0 -310
- package/bmad/bmb/workflows/create-module/workflow.yaml +0 -42
- package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -40
- package/bmad/bmb/workflows/create-workflow/README.md +0 -277
- package/bmad/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
- package/bmad/bmb/workflows/create-workflow/checklist.md +0 -94
- package/bmad/bmb/workflows/create-workflow/instructions.md +0 -716
- package/bmad/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1150
- package/bmad/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
- package/bmad/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
- package/bmad/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow.yaml +0 -40
- package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -38
- package/bmad/bmb/workflows/edit-agent/README.md +0 -112
- package/bmad/bmb/workflows/edit-agent/checklist.md +0 -112
- package/bmad/bmb/workflows/edit-agent/instructions.md +0 -290
- package/bmad/bmb/workflows/edit-agent/workflow.yaml +0 -33
- package/bmad/bmb/workflows/edit-module/README.md +0 -187
- package/bmad/bmb/workflows/edit-module/checklist.md +0 -165
- package/bmad/bmb/workflows/edit-module/instructions.md +0 -339
- package/bmad/bmb/workflows/edit-module/workflow.yaml +0 -34
- package/bmad/bmb/workflows/edit-workflow/README.md +0 -119
- package/bmad/bmb/workflows/edit-workflow/checklist.md +0 -70
- package/bmad/bmb/workflows/edit-workflow/instructions.md +0 -342
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml +0 -27
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -25
- package/bmad/bmb/workflows/module-brief/README.md +0 -264
- package/bmad/bmb/workflows/module-brief/checklist.md +0 -116
- package/bmad/bmb/workflows/module-brief/instructions.md +0 -267
- package/bmad/bmb/workflows/module-brief/workflow.yaml +0 -29
- package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -27
- package/bmad/bmb/workflows/redoc/README.md +0 -87
- package/bmad/bmb/workflows/redoc/checklist.md +0 -99
- package/bmad/bmb/workflows/redoc/instructions.md +0 -265
- package/bmad/bmb/workflows/redoc/workflow.yaml +0 -32
- package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -31
- package/bmad/bmd/README.md +0 -193
- package/bmad/bmd/README.md.bak +0 -193
- package/bmad/bmd/agents/cli-chief-sidecar/instructions.md +0 -102
- package/bmad/bmd/agents/cli-chief-sidecar/instructions.md.bak +0 -102
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/README.md +0 -68
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/README.md.bak +0 -68
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md +0 -123
- package/bmad/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md.bak +0 -123
- package/bmad/bmd/agents/cli-chief-sidecar/memories.md +0 -53
- package/bmad/bmd/agents/cli-chief-sidecar/memories.md.bak +0 -53
- package/bmad/bmd/agents/cli-chief.md +0 -108
- package/bmad/bmd/agents/cli-chief.md.bak +0 -108
- package/bmad/bmd/agents/doc-keeper-sidecar/instructions.md +0 -177
- package/bmad/bmd/agents/doc-keeper-sidecar/instructions.md.bak +0 -177
- package/bmad/bmd/agents/doc-keeper-sidecar/knowledge/README.md +0 -81
- package/bmad/bmd/agents/doc-keeper-sidecar/knowledge/README.md.bak +0 -81
- package/bmad/bmd/agents/doc-keeper-sidecar/memories.md +0 -88
- package/bmad/bmd/agents/doc-keeper-sidecar/memories.md.bak +0 -88
- package/bmad/bmd/agents/doc-keeper.md +0 -115
- package/bmad/bmd/agents/doc-keeper.md.bak +0 -115
- package/bmad/bmd/agents/release-chief-sidecar/instructions.md +0 -164
- package/bmad/bmd/agents/release-chief-sidecar/instructions.md.bak +0 -164
- package/bmad/bmd/agents/release-chief-sidecar/knowledge/README.md +0 -82
- package/bmad/bmd/agents/release-chief-sidecar/knowledge/README.md.bak +0 -82
- package/bmad/bmd/agents/release-chief-sidecar/memories.md +0 -73
- package/bmad/bmd/agents/release-chief-sidecar/memories.md.bak +0 -73
- package/bmad/bmd/agents/release-chief.md +0 -109
- package/bmad/bmd/agents/release-chief.md.bak +0 -109
- package/bmad/bmd/config.yaml +0 -10
- package/bmad/core/agents/bmad-master.md +0 -71
- package/bmad/core/agents/bmad-web-orchestrator.agent.xml +0 -122
- package/bmad/core/config.yaml +0 -9
- package/bmad/core/tasks/adv-elicit-methods.csv +0 -39
- package/bmad/core/tasks/adv-elicit.xml +0 -104
- package/bmad/core/tasks/index-docs.xml +0 -65
- package/bmad/core/tasks/validate-workflow.xml +0 -89
- package/bmad/core/tasks/workflow.xml +0 -174
- package/bmad/core/tools/shard-doc.xml +0 -100
- package/bmad/core/workflows/brainstorming/README.md +0 -271
- package/bmad/core/workflows/brainstorming/brain-methods.csv +0 -36
- package/bmad/core/workflows/brainstorming/instructions.md +0 -314
- package/bmad/core/workflows/brainstorming/template.md +0 -102
- package/bmad/core/workflows/brainstorming/workflow.yaml +0 -43
- package/bmad/core/workflows/party-mode/instructions.md +0 -188
- package/bmad/core/workflows/party-mode/workflow.yaml +0 -23
- package/bmad/docs/claude-code-instructions.md +0 -25
- package/bmad/docs/codex-instructions.md +0 -21
- package/bmd/README.md +0 -193
- package/bmd/agents/cli-chief-sidecar/instructions.md +0 -102
- package/bmd/agents/cli-chief-sidecar/knowledge/README.md +0 -68
- package/bmd/agents/cli-chief-sidecar/knowledge/cli-reference.md +0 -123
- package/bmd/agents/cli-chief-sidecar/memories.md +0 -53
- package/bmd/agents/cli-chief.agent.yaml +0 -126
- package/bmd/agents/doc-keeper-sidecar/instructions.md +0 -177
- package/bmd/agents/doc-keeper-sidecar/knowledge/README.md +0 -81
- package/bmd/agents/doc-keeper-sidecar/memories.md +0 -88
- package/bmd/agents/doc-keeper.agent.yaml +0 -137
- package/bmd/agents/release-chief-sidecar/instructions.md +0 -164
- package/bmd/agents/release-chief-sidecar/knowledge/README.md +0 -82
- package/bmd/agents/release-chief-sidecar/memories.md +0 -73
- package/bmd/agents/release-chief.agent.yaml +0 -127
- package/bmd/bmad-custom-module-installer-plan.md +0 -1176
- package/bmd/config.yaml +0 -12
- package/docs/bmad-brownfield-guide.md +0 -1260
- package/docs/conversion-report-shard-doc-2025-10-26.md +0 -188
- package/docs/installers-bundlers/ide-injections.md +0 -186
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -327
- package/docs/installers-bundlers/web-bundler-usage.md +0 -54
- package/src/core/_module-installer/install-config.yaml +0 -28
- package/src/core/agents/bmad-web-orchestrator.agent.xml +0 -122
- package/src/core/tasks/adv-elicit-methods.csv +0 -39
- package/src/core/tasks/adv-elicit.xml +0 -104
- package/src/core/workflows/brainstorming/README.md +0 -271
- package/src/core/workflows/brainstorming/instructions.md +0 -314
- package/src/core/workflows/brainstorming/workflow.yaml +0 -43
- package/src/core/workflows/party-mode/instructions.md +0 -188
- package/src/core/workflows/party-mode/workflow.yaml +0 -23
- package/src/modules/bmb/_module-installer/install-config.yaml +0 -26
- package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -143
- package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
- package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
- package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
- package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
- package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
- package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
- package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -34
- package/src/modules/bmb/workflows/create-agent/README.md +0 -320
- package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -419
- package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
- package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
- package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +0 -174
- package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
- package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
- package/src/modules/bmb/workflows/create-agent/instructions.md +0 -430
- package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -49
- package/src/modules/bmb/workflows/create-module/README.md +0 -220
- package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
- package/src/modules/bmb/workflows/create-module/checklist.md +0 -244
- package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
- package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
- package/src/modules/bmb/workflows/create-module/instructions.md +0 -581
- package/src/modules/bmb/workflows/create-module/module-structure.md +0 -366
- package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -44
- package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
- package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
- package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
- package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -716
- package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1150
- package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
- package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
- package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
- package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -65
- package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -42
- package/src/modules/bmb/workflows/edit-agent/README.md +0 -112
- package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
- package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -290
- package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -35
- package/src/modules/bmb/workflows/edit-module/README.md +0 -187
- package/src/modules/bmb/workflows/edit-module/checklist.md +0 -165
- package/src/modules/bmb/workflows/edit-module/instructions.md +0 -339
- package/src/modules/bmb/workflows/edit-module/workflow.yaml +0 -36
- package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
- package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
- package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
- package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -29
- package/src/modules/bmb/workflows/module-brief/README.md +0 -264
- package/src/modules/bmb/workflows/module-brief/checklist.md +0 -116
- package/src/modules/bmb/workflows/module-brief/instructions.md +0 -267
- package/src/modules/bmb/workflows/module-brief/template.md +0 -275
- package/src/modules/bmb/workflows/module-brief/workflow.yaml +0 -31
- package/src/modules/bmb/workflows/redoc/README.md +0 -87
- package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
- package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
- package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
- package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
- package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
- package/src/modules/bmm/_module-installer/install-config.yaml +0 -74
- package/src/modules/bmm/agents/game-architect.agent.yaml +0 -35
- package/src/modules/bmm/agents/game-designer.agent.yaml +0 -47
- package/src/modules/bmm/agents/game-dev.agent.yaml +0 -39
- package/src/modules/bmm/sub-modules/claude-code/config.yaml +0 -5
- package/src/modules/bmm/sub-modules/claude-code/injections.yaml +0 -242
- package/src/modules/bmm/sub-modules/claude-code/readme.md +0 -87
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/api-documenter.md +0 -102
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/codebase-analyzer.md +0 -82
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/data-analyst.md +0 -101
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-analysis/pattern-detector.md +0 -84
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/dependency-mapper.md +0 -83
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/epic-optimizer.md +0 -81
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/requirements-analyst.md +0 -61
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/technical-decisions-curator.md +0 -168
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/trend-spotter.md +0 -115
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-journey-mapper.md +0 -123
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-planning/user-researcher.md +0 -72
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/market-researcher.md +0 -51
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-research/tech-debt-auditor.md +0 -106
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/document-reviewer.md +0 -102
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/technical-evaluator.md +0 -68
- package/src/modules/bmm/sub-modules/claude-code/sub-agents/bmad-review/test-coverage-analyzer.md +0 -108
- package/src/modules/bmm/tasks/daily-standup.xml +0 -85
- package/src/modules/bmm/tasks/retrospective.xml +0 -104
- package/src/modules/bmm/teams/team-gamedev.yaml +0 -14
- package/src/modules/bmm/testarch/README.md +0 -311
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/README.md +0 -38
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/instructions.md +0 -109
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/workflow.yaml +0 -41
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/README.md +0 -29
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -91
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
- package/src/modules/bmm/workflows/1-analysis/game-brief/README.md +0 -221
- package/src/modules/bmm/workflows/1-analysis/game-brief/instructions.md +0 -357
- package/src/modules/bmm/workflows/1-analysis/game-brief/workflow.yaml +0 -44
- package/src/modules/bmm/workflows/1-analysis/product-brief/README.md +0 -180
- package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
- package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -321
- package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -165
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -43
- package/src/modules/bmm/workflows/1-analysis/research/README.md +0 -454
- package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -202
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-competitor-analyzer.md +0 -259
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-data-analyst.md +0 -190
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-market-researcher.md +0 -337
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-trend-spotter.md +0 -107
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/sub-agents/bmm-user-researcher.md +0 -329
- package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -433
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -613
- package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -125
- package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -501
- package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
- package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -311
- package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -210
- package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -49
- package/src/modules/bmm/workflows/2-plan-workflows/README.md +0 -258
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1283
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -42
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/README.md +0 -222
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/instructions-gdd.md +0 -475
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/workflow.yaml +0 -67
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +0 -557
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/workflow.yaml +0 -38
- package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -117
- package/src/modules/bmm/workflows/2-plan-workflows/prd/epics-template.md +0 -63
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -449
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -46
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -107
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -11
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -167
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -278
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -269
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -55
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -56
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -52
- package/src/modules/bmm/workflows/3-solutioning/README.md +0 -1
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -347
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
- package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -244
- package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -703
- package/src/modules/bmm/workflows/3-solutioning/architecture/readme.md +0 -318
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -54
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/README.md +0 -177
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -175
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -273
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -40
- package/src/modules/bmm/workflows/4-implementation/README.md +0 -221
- package/src/modules/bmm/workflows/4-implementation/code-review/README.md +0 -69
- package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -391
- package/src/modules/bmm/workflows/4-implementation/correct-course/README.md +0 -73
- package/src/modules/bmm/workflows/4-implementation/create-story/README.md +0 -129
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -252
- package/src/modules/bmm/workflows/4-implementation/dev-story/AUDIT-REPORT.md +0 -367
- package/src/modules/bmm/workflows/4-implementation/dev-story/README.md +0 -206
- package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -262
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/README.md +0 -195
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -160
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -34
- package/src/modules/bmm/workflows/4-implementation/retrospective/README.md +0 -77
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/README.md +0 -156
- package/src/modules/bmm/workflows/4-implementation/story-context/README.md +0 -234
- package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
- package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
- package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -201
- package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -32
- package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
- package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -27
- package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
- package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -27
- package/src/modules/bmm/workflows/README.md +0 -577
- package/src/modules/bmm/workflows/document-project/README.md +0 -444
- package/src/modules/bmm/workflows/document-project/templates/README.md +0 -38
- package/src/modules/bmm/workflows/testarch/README.md +0 -26
- package/src/modules/bmm/workflows/testarch/atdd/README.md +0 -672
- package/src/modules/bmm/workflows/testarch/automate/README.md +0 -869
- package/src/modules/bmm/workflows/testarch/ci/README.md +0 -493
- package/src/modules/bmm/workflows/testarch/framework/README.md +0 -340
- package/src/modules/bmm/workflows/testarch/nfr-assess/README.md +0 -469
- package/src/modules/bmm/workflows/testarch/test-design/README.md +0 -493
- package/src/modules/bmm/workflows/testarch/test-review/README.md +0 -775
- package/src/modules/bmm/workflows/testarch/trace/README.md +0 -802
- package/src/modules/bmm/workflows/workflow-status/README.md +0 -241
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-0.yaml +0 -54
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-1.yaml +0 -58
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-2.yaml +0 -76
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-3.yaml +0 -95
- package/src/modules/bmm/workflows/workflow-status/paths/brownfield-level-4.yaml +0 -88
- package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -75
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-0.yaml +0 -45
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-1.yaml +0 -49
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-2.yaml +0 -78
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-3.yaml +0 -73
- package/src/modules/bmm/workflows/workflow-status/paths/greenfield-level-4.yaml +0 -75
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.md +0 -30
- package/src/modules/cis/_module-installer/install-config.yaml +0 -14
- package/src/modules/cis/agents/README.md +0 -104
- package/src/modules/cis/agents/storyteller.agent.yaml +0 -23
- package/src/modules/cis/readme.md +0 -86
- package/src/utility/models/agent-activation-ide.xml +0 -51
- package/src/utility/models/agent-activation-web.xml +0 -60
- package/src/utility/models/agent-config-template.md +0 -23
- package/src/utility/models/agent-in-team-activation.xml +0 -3
- package/src/utility/models/fragments/activation-rules.xml +0 -8
- package/src/utility/models/fragments/activation-steps.xml +0 -15
- package/src/utility/models/fragments/handler-action.xml +0 -4
- package/src/utility/models/fragments/handler-exec.xml +0 -5
- package/src/utility/models/fragments/handler-tmpl.xml +0 -5
- package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
- package/src/utility/models/fragments/handler-workflow.xml +0 -9
- package/src/utility/models/fragments/menu-handlers.xml +0 -6
- package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
- package/src/utility/templates/agent.customize.template.yaml +0 -42
- package/test/fixtures/agent-schema/invalid/persona/principles-as-string.agent.yaml +0 -23
- package/tools/cli/bundlers/bundle-web.js +0 -179
- package/tools/cli/bundlers/test-analyst.js +0 -28
- package/tools/cli/bundlers/test-bundler.js +0 -118
- package/tools/cli/bundlers/web-bundler.js +0 -1479
- package/tools/cli/commands/build.js +0 -458
- package/tools/cli/commands/list.js +0 -28
- package/tools/cli/commands/status.js +0 -47
- package/tools/cli/commands/uninstall.js +0 -44
- package/tools/cli/commands/update.js +0 -28
- package/tools/cli/installers/lib/ide/task-tool-command-generator.js +0 -119
- package/tools/cli/installers/lib/ide/workflow-command-generator.js +0 -235
- package/tools/cli/installers/lib/ide/workflow-command-template.md +0 -15
- package/tools/cli/lib/replace-project-root.js +0 -239
- package/tools/cli/regenerate-manifests.js +0 -28
- package/tools/cli/test-yaml-builder.js +0 -43
- package/tools/validate-bundles.js +0 -87
- package/v6-open-items.md +0 -23
- /package/{bmad/bmb/workflows → src/modules/bmb/workflows-legacy}/module-brief/template.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-brain-methods.csv +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-context.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis/game-brief/template.md → bmgd/workflows/1-preproduction/game-brief/templates/game-brief-template.md} +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/action-platformer.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/adventure.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/card-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/fighting.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/horror.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/idle-incremental.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/metroidvania.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/moba.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/party-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/puzzle.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/racing.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rhythm.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/roguelike.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rpg.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sandbox.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/shooter.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/simulation.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sports.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/strategy.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/survival.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/text-based.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/tower-defense.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/turn-based-tactics.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/visual-novel.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types.csv +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows/gdd → bmgd/workflows/2-design/gdd/templates}/gdd-template.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/narrative/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows/narrative → bmgd/workflows/2-design/narrative/templates}/narrative-template.md +0 -0
- /package/src/modules/{bmm/workflows/3-solutioning/architecture → bmgd/workflows/3-technical/game-architecture}/decision-catalog.yaml +0 -0
- /package/src/modules/{bmm/workflows/3-solutioning/architecture → bmgd/workflows/3-technical/game-architecture}/pattern-categories.csv +0 -0
- /package/src/modules/{bmm/workflows/4-implementation/code-review/backlog_template.md → bmgd/workflows/4-production/code-review/backlog-template.md} +0 -0
- /package/src/utility/{models/fragments/handler-data.xml → agent-components/handler-data.txt} +0 -0
|
@@ -1,206 +0,0 @@
|
|
|
1
|
-
# Dev Story Workflow
|
|
2
|
-
|
|
3
|
-
The dev-story workflow is where v6's just-in-time context approach delivers its primary value, enabling the Developer (DEV) agent to implement stories with expert-level guidance injected directly into their context. This workflow is run EXCLUSIVELY by the DEV agent and operates on a single story that has been prepared by the SM through create-story and enhanced with story-context. The DEV loads both the story specification and the dynamically-generated story context XML, then proceeds through implementation with the combined knowledge of requirements and domain-specific expertise.
|
|
4
|
-
|
|
5
|
-
The workflow operates with two critical inputs: the story file (created by SM's create-story) containing acceptance criteria, tasks, and requirements; and the story-context XML (generated by SM's story-context) providing just-in-time expertise injection tailored to the story's technical needs. This dual-input approach ensures the developer has both the "what" (from the story) and the "how" (from the context) needed for successful implementation. The workflow iterates through tasks sequentially, implementing code, writing tests, and updating the story document's allowed sections until all tasks are complete.
|
|
6
|
-
|
|
7
|
-
A critical aspect of v6 flow is that dev-story may be run multiple times for the same story. Initially run to implement the story, it may be run again after code-review identifies issues that need correction. The workflow intelligently resumes from incomplete tasks, making it ideal for both initial implementation and post-review fixes. The DEV agent maintains strict boundaries on what can be modified in the story file—only Tasks/Subtasks checkboxes, Dev Agent Record, File List, Change Log, and Status may be updated, preserving the story's requirements integrity.
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
# Developer implements the story with injected context
|
|
13
|
-
bmad dev *develop
|
|
14
|
-
|
|
15
|
-
# Or if returning to fix review issues
|
|
16
|
-
bmad dev *develop # Will resume from incomplete tasks
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
The DEV runs this workflow:
|
|
20
|
-
|
|
21
|
-
- After SM completes both create-story and story-context
|
|
22
|
-
- When a story status is "Draft" or "Approved" (ready for development)
|
|
23
|
-
- After code-review identifies issues requiring fixes
|
|
24
|
-
- To resume work on a partially completed story
|
|
25
|
-
|
|
26
|
-
## Inputs
|
|
27
|
-
|
|
28
|
-
**Required Files:**
|
|
29
|
-
|
|
30
|
-
- **Story Document** (`{story_dir}/story-{epic}.{story}.md`): Complete specification including:
|
|
31
|
-
- User story statement
|
|
32
|
-
- Acceptance criteria (immutable during dev)
|
|
33
|
-
- Tasks and subtasks (checkable during implementation)
|
|
34
|
-
- Dev Notes section (for context and guidance)
|
|
35
|
-
- Status field (Draft → In Progress → Ready for Review)
|
|
36
|
-
|
|
37
|
-
- **Story Context XML** (`{story_dir}/story-{epic}.{story}-context.xml`): Domain expertise including:
|
|
38
|
-
- Technical patterns and best practices
|
|
39
|
-
- Gotchas and common pitfalls
|
|
40
|
-
- Testing strategies
|
|
41
|
-
- Relevant code references
|
|
42
|
-
- Architecture constraints
|
|
43
|
-
|
|
44
|
-
**Configuration:**
|
|
45
|
-
|
|
46
|
-
- `dev_story_location`: Directory containing story files (from bmm/config.yaml)
|
|
47
|
-
- `story_selection_limit`: Number of recent stories to show (default: 10)
|
|
48
|
-
- `run_tests_command`: Test command (default: auto-detected)
|
|
49
|
-
- `strict`: Whether to halt on test failures (default: true)
|
|
50
|
-
|
|
51
|
-
## Outputs
|
|
52
|
-
|
|
53
|
-
**Code Implementation:**
|
|
54
|
-
|
|
55
|
-
- Production code satisfying acceptance criteria
|
|
56
|
-
- Unit, integration, and E2E tests as appropriate
|
|
57
|
-
- Documentation updates
|
|
58
|
-
- Migration scripts if needed
|
|
59
|
-
|
|
60
|
-
**Story File Updates (allowed sections only):**
|
|
61
|
-
|
|
62
|
-
- **Tasks/Subtasks**: Checkboxes marked complete as work progresses
|
|
63
|
-
- **Dev Agent Record**: Debug log and completion notes
|
|
64
|
-
- **File List**: All files created or modified
|
|
65
|
-
- **Change Log**: Summary of implementation changes
|
|
66
|
-
- **Status**: Updated to "Ready for Review" when complete
|
|
67
|
-
|
|
68
|
-
**Validation:**
|
|
69
|
-
|
|
70
|
-
- All tests passing (existing + new)
|
|
71
|
-
- Acceptance criteria verified
|
|
72
|
-
- Code quality checks passed
|
|
73
|
-
- No regression in existing functionality
|
|
74
|
-
|
|
75
|
-
## Key Features
|
|
76
|
-
|
|
77
|
-
**Story-Context Integration**: The workflow loads and leverages the story-context XML throughout implementation, providing expert guidance without cluttering the main conversation. This ensures best practices are followed while maintaining developer autonomy.
|
|
78
|
-
|
|
79
|
-
**Task-by-Task Iteration**: Implements one task at a time, marking completion before moving to the next. This granular approach enables progress tracking and clean resumption if interrupted or after review feedback.
|
|
80
|
-
|
|
81
|
-
**Strict File Boundaries**: Only specific sections of the story file may be modified, preserving requirement integrity. The story's acceptance criteria, main description, and other planning sections remain immutable during development.
|
|
82
|
-
|
|
83
|
-
**Test-Driven Approach**: For each task, the workflow emphasizes writing tests that verify acceptance criteria before or alongside implementation, ensuring requirements are actually met.
|
|
84
|
-
|
|
85
|
-
**Resumable Implementation**: If the workflow is run again on a story with incomplete tasks (e.g., after code-review finds issues), it intelligently resumes from where it left off rather than starting over.
|
|
86
|
-
|
|
87
|
-
## Integration with v6 Flow
|
|
88
|
-
|
|
89
|
-
The dev-story workflow is step 3 in the v6 implementation cycle:
|
|
90
|
-
|
|
91
|
-
1. SM: create-story (generates the story specification)
|
|
92
|
-
2. SM: story-context (adds JIT technical expertise)
|
|
93
|
-
3. **DEV: dev-story** ← You are here (initial implementation)
|
|
94
|
-
4. DEV/SR: code-review (validates completion)
|
|
95
|
-
5. If issues found: **DEV: dev-story** ← May return here for fixes
|
|
96
|
-
6. After epic: retrospective (captures learnings)
|
|
97
|
-
|
|
98
|
-
This workflow may be executed multiple times for the same story as part of the review-fix cycle. Each execution picks up from incomplete tasks, making it efficient for iterative improvement.
|
|
99
|
-
|
|
100
|
-
## Workflow Process
|
|
101
|
-
|
|
102
|
-
### Phase 1: Story Selection
|
|
103
|
-
|
|
104
|
-
- If `story_path` provided: Use that story directly
|
|
105
|
-
- Otherwise: List recent stories from `dev_story_location`
|
|
106
|
-
- Parse story structure and validate format
|
|
107
|
-
- Load corresponding story-context XML
|
|
108
|
-
|
|
109
|
-
### Phase 2: Task Implementation Loop
|
|
110
|
-
|
|
111
|
-
For each incomplete task:
|
|
112
|
-
|
|
113
|
-
1. **Plan**: Log approach in Dev Agent Record
|
|
114
|
-
2. **Implement**: Write code following story-context guidance
|
|
115
|
-
3. **Test**: Create tests verifying acceptance criteria
|
|
116
|
-
4. **Validate**: Run tests and quality checks
|
|
117
|
-
5. **Update**: Mark task complete, update File List
|
|
118
|
-
|
|
119
|
-
### Phase 3: Completion
|
|
120
|
-
|
|
121
|
-
- Verify all tasks completed
|
|
122
|
-
- Run full test suite
|
|
123
|
-
- Update Status to "Ready for Review"
|
|
124
|
-
- Add completion notes to Dev Agent Record
|
|
125
|
-
|
|
126
|
-
## Story File Structure
|
|
127
|
-
|
|
128
|
-
The workflow expects stories with this structure:
|
|
129
|
-
|
|
130
|
-
```markdown
|
|
131
|
-
# Story {epic}.{story}: {Title}
|
|
132
|
-
|
|
133
|
-
**Status**: Draft|In Progress|Ready for Review|Done
|
|
134
|
-
**Epic**: {epic_number}
|
|
135
|
-
**Estimated Effort**: {estimate}
|
|
136
|
-
|
|
137
|
-
## Story
|
|
138
|
-
|
|
139
|
-
As a {role}, I want to {action} so that {benefit}
|
|
140
|
-
|
|
141
|
-
## Acceptance Criteria
|
|
142
|
-
|
|
143
|
-
- [ ] AC1...
|
|
144
|
-
- [ ] AC2...
|
|
145
|
-
|
|
146
|
-
## Tasks and Subtasks
|
|
147
|
-
|
|
148
|
-
- [ ] Task 1
|
|
149
|
-
- [ ] Subtask 1.1
|
|
150
|
-
- [ ] Task 2
|
|
151
|
-
|
|
152
|
-
## Dev Notes
|
|
153
|
-
|
|
154
|
-
{Context and guidance from story creation}
|
|
155
|
-
|
|
156
|
-
## Dev Agent Record
|
|
157
|
-
|
|
158
|
-
### Debug Log
|
|
159
|
-
|
|
160
|
-
{Implementation notes added during development}
|
|
161
|
-
|
|
162
|
-
### Completion Notes
|
|
163
|
-
|
|
164
|
-
{Summary added when complete}
|
|
165
|
-
|
|
166
|
-
## File List
|
|
167
|
-
|
|
168
|
-
{Files created/modified}
|
|
169
|
-
|
|
170
|
-
## Change Log
|
|
171
|
-
|
|
172
|
-
{Implementation summary}
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
## Best Practices
|
|
176
|
-
|
|
177
|
-
**Load Context First**: Always ensure the story-context XML is loaded at the start. This provides the expert guidance needed throughout implementation.
|
|
178
|
-
|
|
179
|
-
**Follow Task Order**: Implement tasks in the order listed. Dependencies are typically structured in the task sequence.
|
|
180
|
-
|
|
181
|
-
**Test Each Task**: Don't wait until the end to write tests. Test each task as you complete it to ensure it meets acceptance criteria.
|
|
182
|
-
|
|
183
|
-
**Update Incrementally**: Update the story file after each task completion rather than batching updates at the end.
|
|
184
|
-
|
|
185
|
-
**Respect Boundaries**: Never modify acceptance criteria or story description. If they seem wrong, that's a code-review or correct-course issue, not a dev-story fix.
|
|
186
|
-
|
|
187
|
-
**Use Context Guidance**: Actively reference the story-context for patterns, gotchas, and best practices. It's there to help you succeed.
|
|
188
|
-
|
|
189
|
-
## Troubleshooting
|
|
190
|
-
|
|
191
|
-
**Story Not Found**: Ensure story exists in `dev_story_location` and follows naming pattern `story-{epic}.{story}.md`
|
|
192
|
-
|
|
193
|
-
**Context XML Missing**: The story-context workflow must be run first. Check for `story-{epic}.{story}-context.xml`
|
|
194
|
-
|
|
195
|
-
**Tests Failing**: If strict mode is on, the workflow halts. Fix tests before continuing or set strict=false for development iteration.
|
|
196
|
-
|
|
197
|
-
**Can't Modify Story Section**: Remember only Tasks, Dev Agent Record, File List, Change Log, and Status can be modified. Other sections are immutable.
|
|
198
|
-
|
|
199
|
-
**Resuming After Review**: If code-review found issues, the workflow automatically picks up from incomplete tasks when run again.
|
|
200
|
-
|
|
201
|
-
## Related Workflows
|
|
202
|
-
|
|
203
|
-
- **create-story**: Creates the story specification (run by SM)
|
|
204
|
-
- **story-context**: Generates the context XML (run by SM)
|
|
205
|
-
- **code-review**: Validates implementation (run by SR/DEV)
|
|
206
|
-
- **correct-course**: Handles major issues or scope changes (run by SM)
|
|
@@ -1,262 +0,0 @@
|
|
|
1
|
-
# Develop Story - Workflow Instructions
|
|
2
|
-
|
|
3
|
-
```xml
|
|
4
|
-
<critical>The workflow execution engine is governed by: {project-root}/bmad/core/tasks/workflow.xml</critical>
|
|
5
|
-
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
|
6
|
-
<critical>Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}</critical>
|
|
7
|
-
<critical>Generate all documents in {document_output_language}</critical>
|
|
8
|
-
<critical>Only modify the story file in these areas: Tasks/Subtasks checkboxes, Dev Agent Record (Debug Log, Completion Notes), File List, Change Log, and Status</critical>
|
|
9
|
-
<critical>Execute ALL steps in exact order; do NOT skip steps</critical>
|
|
10
|
-
<critical>Absolutely DO NOT stop because of "milestones", "significant progress", or "session boundaries". Continue in a single execution until the story is COMPLETE (all ACs satisfied and all tasks/subtasks checked) UNLESS a HALT condition is triggered or the USER gives other instruction.</critical>
|
|
11
|
-
<critical>Do NOT schedule a "next session" or request review pauses unless a HALT condition applies. Only Step 6 decides completion.</critical>
|
|
12
|
-
|
|
13
|
-
<critical>User skill level ({user_skill_level}) affects conversation style ONLY, not code updates.</critical>
|
|
14
|
-
|
|
15
|
-
<workflow>
|
|
16
|
-
|
|
17
|
-
<step n="1" goal="Find next ready story and load it" tag="sprint-status">
|
|
18
|
-
<check if="{{story_path}} is provided">
|
|
19
|
-
<action>Use {{story_path}} directly</action>
|
|
20
|
-
<action>Read COMPLETE story file</action>
|
|
21
|
-
<action>Extract story_key from filename or metadata</action>
|
|
22
|
-
<goto>task_check</goto>
|
|
23
|
-
</check>
|
|
24
|
-
|
|
25
|
-
<critical>MUST read COMPLETE sprint-status.yaml file from start to end to preserve order</critical>
|
|
26
|
-
<action>Load the FULL file: {{output_folder}}/sprint-status.yaml</action>
|
|
27
|
-
<action>Read ALL lines from beginning to end - do not skip any content</action>
|
|
28
|
-
<action>Parse the development_status section completely to understand story order</action>
|
|
29
|
-
|
|
30
|
-
<action>Find the FIRST story (by reading in order from top to bottom) where:
|
|
31
|
-
- Key matches pattern: number-number-name (e.g., "1-2-user-auth")
|
|
32
|
-
- NOT an epic key (epic-X) or retrospective (epic-X-retrospective)
|
|
33
|
-
- Status value equals "ready-for-dev"
|
|
34
|
-
</action>
|
|
35
|
-
|
|
36
|
-
<check if="no ready-for-dev or in-progress story found">
|
|
37
|
-
<output>📋 No ready-for-dev stories found in sprint-status.yaml
|
|
38
|
-
**Options:**
|
|
39
|
-
1. Run `story-context` to generate context file and mark drafted stories as ready
|
|
40
|
-
2. Run `story-ready` to quickly mark drafted stories as ready without generating context
|
|
41
|
-
3. Run `create-story` if no incomplete stories are drafted yet
|
|
42
|
-
4. Check {output-folder}/sprint-status.yaml to see current sprint status
|
|
43
|
-
</output>
|
|
44
|
-
<action>HALT</action>
|
|
45
|
-
</check>
|
|
46
|
-
|
|
47
|
-
<action>Store the found story_key (e.g., "1-2-user-authentication") for later status updates</action>
|
|
48
|
-
<action>Find matching story file in {{story_dir}} using story_key pattern: {{story_key}}.md</action>
|
|
49
|
-
<action>Read COMPLETE story file from discovered path</action>
|
|
50
|
-
|
|
51
|
-
<anchor id="task_check" />
|
|
52
|
-
|
|
53
|
-
<action>Parse sections: Story, Acceptance Criteria, Tasks/Subtasks, Dev Notes, Dev Agent Record, File List, Change Log, Status</action>
|
|
54
|
-
|
|
55
|
-
<action>Check if context file exists at: {{story_dir}}/{{story_key}}.context.xml</action>
|
|
56
|
-
<check if="context file exists">
|
|
57
|
-
<action>Read COMPLETE context file</action>
|
|
58
|
-
<action>Parse all sections: story details, artifacts (docs, code, dependencies), interfaces, constraints, tests</action>
|
|
59
|
-
<action>Use this context to inform implementation decisions and approaches</action>
|
|
60
|
-
</check>
|
|
61
|
-
<check if="context file does NOT exist">
|
|
62
|
-
<output>ℹ️ No context file found for {{story_key}}
|
|
63
|
-
|
|
64
|
-
Proceeding with story file only. For better context, consider running `story-context` workflow first.
|
|
65
|
-
</output>
|
|
66
|
-
</check>
|
|
67
|
-
|
|
68
|
-
<action>Identify first incomplete task (unchecked [ ]) in Tasks/Subtasks</action>
|
|
69
|
-
|
|
70
|
-
<action if="no incomplete tasks"><goto step="6">Completion sequence</goto></action>
|
|
71
|
-
<action if="story file inaccessible">HALT: "Cannot develop story without access to story file"</action>
|
|
72
|
-
<action if="incomplete task or subtask requirements ambiguous">ASK user to clarify or HALT</action>
|
|
73
|
-
</step>
|
|
74
|
-
|
|
75
|
-
<step n="1.5" goal="Detect review continuation and extract review context">
|
|
76
|
-
<critical>Determine if this is a fresh start or continuation after code review</critical>
|
|
77
|
-
|
|
78
|
-
<action>Check if "Senior Developer Review (AI)" section exists in the story file</action>
|
|
79
|
-
<action>Check if "Review Follow-ups (AI)" subsection exists under Tasks/Subtasks</action>
|
|
80
|
-
|
|
81
|
-
<check if="Senior Developer Review section exists">
|
|
82
|
-
<action>Set review_continuation = true</action>
|
|
83
|
-
<action>Extract from "Senior Developer Review (AI)" section:
|
|
84
|
-
- Review outcome (Approve/Changes Requested/Blocked)
|
|
85
|
-
- Review date
|
|
86
|
-
- Total action items with checkboxes (count checked vs unchecked)
|
|
87
|
-
- Severity breakdown (High/Med/Low counts)
|
|
88
|
-
</action>
|
|
89
|
-
<action>Count unchecked [ ] review follow-up tasks in "Review Follow-ups (AI)" subsection</action>
|
|
90
|
-
<action>Store list of unchecked review items as {{pending_review_items}}</action>
|
|
91
|
-
|
|
92
|
-
<output>⏯️ **Resuming Story After Code Review** ({{review_date}})
|
|
93
|
-
|
|
94
|
-
**Review Outcome:** {{review_outcome}}
|
|
95
|
-
**Action Items:** {{unchecked_review_count}} remaining to address
|
|
96
|
-
**Priorities:** {{high_count}} High, {{med_count}} Medium, {{low_count}} Low
|
|
97
|
-
|
|
98
|
-
**Strategy:** Will prioritize review follow-up tasks (marked [AI-Review]) before continuing with regular tasks.
|
|
99
|
-
</output>
|
|
100
|
-
</check>
|
|
101
|
-
|
|
102
|
-
<check if="Senior Developer Review section does NOT exist">
|
|
103
|
-
<action>Set review_continuation = false</action>
|
|
104
|
-
<action>Set {{pending_review_items}} = empty</action>
|
|
105
|
-
|
|
106
|
-
<output>🚀 **Starting Fresh Implementation**
|
|
107
|
-
|
|
108
|
-
Story: {{story_key}}
|
|
109
|
-
Context file: {{context_available}}
|
|
110
|
-
First incomplete task: {{first_task_description}}
|
|
111
|
-
</output>
|
|
112
|
-
</check>
|
|
113
|
-
</step>
|
|
114
|
-
|
|
115
|
-
<step n="1.6" goal="Mark story in-progress" tag="sprint-status">
|
|
116
|
-
<action>Load the FULL file: {{output_folder}}/sprint-status.yaml</action>
|
|
117
|
-
<action>Read all development_status entries to find {{story_key}}</action>
|
|
118
|
-
<action>Get current status value for development_status[{{story_key}}]</action>
|
|
119
|
-
|
|
120
|
-
<check if="current status == 'ready-for-dev'">
|
|
121
|
-
<action>Update the story in the sprint status report to = "in-progress"</action>
|
|
122
|
-
<output>🚀 Starting work on story {{story_key}}
|
|
123
|
-
Status updated: ready-for-dev → in-progress
|
|
124
|
-
</output>
|
|
125
|
-
</check>
|
|
126
|
-
|
|
127
|
-
<check if="current status == 'in-progress'">
|
|
128
|
-
<output>⏯️ Resuming work on story {{story_key}}
|
|
129
|
-
Story is already marked in-progress
|
|
130
|
-
</output>
|
|
131
|
-
</check>
|
|
132
|
-
|
|
133
|
-
<check if="current status is neither ready-for-dev nor in-progress">
|
|
134
|
-
<output>⚠️ Unexpected story status: {{current_status}}
|
|
135
|
-
Expected ready-for-dev or in-progress. Continuing anyway...
|
|
136
|
-
</output>
|
|
137
|
-
</check>
|
|
138
|
-
</step>
|
|
139
|
-
|
|
140
|
-
<step n="2" goal="Plan and implement task">
|
|
141
|
-
<action>Review acceptance criteria and dev notes for the selected task</action>
|
|
142
|
-
<action>Plan implementation steps and edge cases; write down a brief plan in Dev Agent Record → Debug Log</action>
|
|
143
|
-
<action>Implement the task COMPLETELY including all subtasks, critically following best practices, coding patterns and coding standards in this repo you have learned about from the story and context file or your own critical agent instructions</action>
|
|
144
|
-
<action>Handle error conditions and edge cases appropriately</action>
|
|
145
|
-
<action if="new or different than what is documented dependencies are needed">ASK user for approval before adding</action>
|
|
146
|
-
<action if="3 consecutive implementation failures occur">HALT and request guidance</action>
|
|
147
|
-
<action if="required configuration is missing">HALT: "Cannot proceed without necessary configuration files"</action>
|
|
148
|
-
<critical>Do not stop after partial progress; continue iterating tasks until all ACs are satisfied and tested or a HALT condition triggers</critical>
|
|
149
|
-
<critical>Do NOT propose to pause for review, stand-ups, or validation until Step 6 gates are satisfied</critical>
|
|
150
|
-
</step>
|
|
151
|
-
|
|
152
|
-
<step n="3" goal="Author comprehensive tests">
|
|
153
|
-
<action>Create unit tests for business logic and core functionality introduced/changed by the task</action>
|
|
154
|
-
<action>Add integration tests for component interactions where desired by test plan or story notes</action>
|
|
155
|
-
<action>Include end-to-end tests for critical user flows where desired by test plan or story notes</action>
|
|
156
|
-
<action>Cover edge cases and error handling scenarios noted in the test plan or story notes</action>
|
|
157
|
-
</step>
|
|
158
|
-
|
|
159
|
-
<step n="4" goal="Run validations and tests">
|
|
160
|
-
<action>Determine how to run tests for this repo (infer or use {{run_tests_command}} if provided)</action>
|
|
161
|
-
<action>Run all existing tests to ensure no regressions</action>
|
|
162
|
-
<action>Run the new tests to verify implementation correctness</action>
|
|
163
|
-
<action>Run linting and code quality checks if configured</action>
|
|
164
|
-
<action>Validate implementation meets ALL story acceptance criteria; if ACs include quantitative thresholds (e.g., test pass rate), ensure they are met before marking complete</action>
|
|
165
|
-
<action if="regression tests fail">STOP and fix before continuing, consider how current changes made broke regression</action>
|
|
166
|
-
<action if="new tests fail">STOP and fix before continuing</action>
|
|
167
|
-
</step>
|
|
168
|
-
|
|
169
|
-
<step n="5" goal="Mark task complete, track review resolutions, and update story">
|
|
170
|
-
<critical>If task is a review follow-up, must mark BOTH the task checkbox AND the corresponding action item in the review section</critical>
|
|
171
|
-
|
|
172
|
-
<action>Check if completed task has [AI-Review] prefix (indicates review follow-up task)</action>
|
|
173
|
-
|
|
174
|
-
<check if="task is review follow-up">
|
|
175
|
-
<action>Extract review item details (severity, description, related AC/file)</action>
|
|
176
|
-
<action>Add to resolution tracking list: {{resolved_review_items}}</action>
|
|
177
|
-
|
|
178
|
-
<!-- Mark task in Review Follow-ups section -->
|
|
179
|
-
<action>Mark task checkbox [x] in "Tasks/Subtasks → Review Follow-ups (AI)" section</action>
|
|
180
|
-
|
|
181
|
-
<!-- CRITICAL: Also mark corresponding action item in review section -->
|
|
182
|
-
<action>Find matching action item in "Senior Developer Review (AI) → Action Items" section by matching description</action>
|
|
183
|
-
<action>Mark that action item checkbox [x] as resolved</action>
|
|
184
|
-
|
|
185
|
-
<action>Add to Dev Agent Record → Completion Notes: "✅ Resolved review finding [{{severity}}]: {{description}}"</action>
|
|
186
|
-
</check>
|
|
187
|
-
|
|
188
|
-
<action>ONLY mark the task (and subtasks) checkbox with [x] if ALL tests pass and validation succeeds</action>
|
|
189
|
-
<action>Update File List section with any new, modified, or deleted files (paths relative to repo root)</action>
|
|
190
|
-
<action>Add completion notes to Dev Agent Record if significant changes were made (summarize intent, approach, and any follow-ups)</action>
|
|
191
|
-
|
|
192
|
-
<check if="review_continuation == true and {{resolved_review_items}} is not empty">
|
|
193
|
-
<action>Count total resolved review items in this session</action>
|
|
194
|
-
<action>Add Change Log entry: "Addressed code review findings - {{resolved_count}} items resolved (Date: {{date}})"</action>
|
|
195
|
-
</check>
|
|
196
|
-
|
|
197
|
-
<action>Save the story file</action>
|
|
198
|
-
<action>Determine if more incomplete tasks remain</action>
|
|
199
|
-
<action if="more tasks remain"><goto step="2">Next task</goto></action>
|
|
200
|
-
<action if="no tasks remain"><goto step="6">Completion</goto></action>
|
|
201
|
-
</step>
|
|
202
|
-
|
|
203
|
-
<step n="6" goal="Story completion and mark for review" tag="sprint-status">
|
|
204
|
-
<action>Verify ALL tasks and subtasks are marked [x] (re-scan the story document now)</action>
|
|
205
|
-
<action>Run the full regression suite (do not skip)</action>
|
|
206
|
-
<action>Confirm File List includes every changed file</action>
|
|
207
|
-
<action>Execute story definition-of-done checklist, if the story includes one</action>
|
|
208
|
-
<action>Update the story Status to: review</action>
|
|
209
|
-
|
|
210
|
-
<!-- Mark story ready for review -->
|
|
211
|
-
<action>Load the FULL file: {{output_folder}}/sprint-status.yaml</action>
|
|
212
|
-
<action>Find development_status key matching {{story_key}}</action>
|
|
213
|
-
<action>Verify current status is "in-progress" (expected previous state)</action>
|
|
214
|
-
<action>Update development_status[{{story_key}}] = "review"</action>
|
|
215
|
-
<action>Save file, preserving ALL comments and structure including STATUS DEFINITIONS</action>
|
|
216
|
-
|
|
217
|
-
<check if="story key not found in file">
|
|
218
|
-
<output>⚠️ Story file updated, but sprint-status update failed: {{story_key}} not found
|
|
219
|
-
|
|
220
|
-
Story is marked Ready for Review in file, but sprint-status.yaml may be out of sync.
|
|
221
|
-
</output>
|
|
222
|
-
</check>
|
|
223
|
-
|
|
224
|
-
<action if="any task is incomplete">Return to step 1 to complete remaining work (Do NOT finish with partial progress)</action>
|
|
225
|
-
<action if="regression failures exist">STOP and resolve before completing</action>
|
|
226
|
-
<action if="File List is incomplete">Update it before completing</action>
|
|
227
|
-
</step>
|
|
228
|
-
|
|
229
|
-
<step n="7" goal="Completion communication and user support">
|
|
230
|
-
<action>Optionally run the workflow validation task against the story using {project-root}/bmad/core/tasks/validate-workflow.xml</action>
|
|
231
|
-
<action>Prepare a concise summary in Dev Agent Record → Completion Notes</action>
|
|
232
|
-
|
|
233
|
-
<action>Communicate to {user_name} that story implementation is complete and ready for review</action>
|
|
234
|
-
<action>Summarize key accomplishments: story ID, story key, title, key changes made, tests added, files modified</action>
|
|
235
|
-
<action>Provide the story file path and current status (now "review", was "in-progress")</action>
|
|
236
|
-
|
|
237
|
-
<action>Based on {user_skill_level}, ask if user needs any explanations about:
|
|
238
|
-
- What was implemented and how it works
|
|
239
|
-
- Why certain technical decisions were made
|
|
240
|
-
- How to test or verify the changes
|
|
241
|
-
- Any patterns, libraries, or approaches used
|
|
242
|
-
- Anything else they'd like clarified
|
|
243
|
-
</action>
|
|
244
|
-
|
|
245
|
-
<check if="user asks for explanations">
|
|
246
|
-
<action>Provide clear, contextual explanations tailored to {user_skill_level}</action>
|
|
247
|
-
<action>Use examples and references to specific code when helpful</action>
|
|
248
|
-
</check>
|
|
249
|
-
|
|
250
|
-
<action>Once explanations are complete (or user indicates no questions), suggest logical next steps</action>
|
|
251
|
-
<action>Common next steps to suggest (but allow user flexibility):
|
|
252
|
-
- Review the implemented story yourself and test the changes
|
|
253
|
-
- Verify all acceptance criteria are met
|
|
254
|
-
- Ensure deployment readiness if applicable
|
|
255
|
-
- Run `code-review` workflow for peer review
|
|
256
|
-
- Check sprint-status.yaml to see project progress
|
|
257
|
-
</action>
|
|
258
|
-
<action>Remain flexible - allow user to choose their own path or ask for other assistance</action>
|
|
259
|
-
</step>
|
|
260
|
-
|
|
261
|
-
</workflow>
|
|
262
|
-
```
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
# Technical Specification Workflow
|
|
2
|
-
|
|
3
|
-
## Overview
|
|
4
|
-
|
|
5
|
-
Generate a comprehensive Technical Specification for a single epic from PRD, Epics file and Architecture to produce a document with full acceptance criteria and traceability mapping. Creates detailed implementation guidance that bridges business requirements with technical execution.
|
|
6
|
-
|
|
7
|
-
## Key Features
|
|
8
|
-
|
|
9
|
-
- **PRD-Architecture Integration** - Synthesizes business requirements with technical constraints
|
|
10
|
-
- **Traceability Mapping** - Links acceptance criteria to technical components and tests
|
|
11
|
-
- **Multi-Input Support** - Leverages PRD, architecture, front-end specs, and brownfield notes
|
|
12
|
-
- **Implementation Focus** - Provides concrete technical guidance for development teams
|
|
13
|
-
- **Testing Integration** - Includes test strategy aligned with acceptance criteria
|
|
14
|
-
- **Validation Ready** - Generates specifications suitable for architectural review
|
|
15
|
-
|
|
16
|
-
## Usage
|
|
17
|
-
|
|
18
|
-
### Basic Invocation
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
workflow tech-spec
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### With Input Documents
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
# With specific PRD and architecture
|
|
28
|
-
workflow tech-spec --input PRD.md --input architecture.md
|
|
29
|
-
|
|
30
|
-
# With comprehensive inputs
|
|
31
|
-
workflow tech-spec --input PRD.md --input architecture.md --input front-end-spec.md
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### Configuration
|
|
35
|
-
|
|
36
|
-
- **output_folder**: Location for generated technical specification
|
|
37
|
-
- **epic_id**: Used in output filename (extracted from PRD or prompted)
|
|
38
|
-
- **recommended_inputs**: PRD, architecture, front-end spec, brownfield notes
|
|
39
|
-
|
|
40
|
-
## Workflow Structure
|
|
41
|
-
|
|
42
|
-
### Files Included
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
tech-spec/
|
|
46
|
-
├── workflow.yaml # Configuration and metadata
|
|
47
|
-
├── instructions.md # Step-by-step execution guide
|
|
48
|
-
├── template.md # Technical specification structure
|
|
49
|
-
├── checklist.md # Validation criteria
|
|
50
|
-
└── README.md # This file
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## Workflow Process
|
|
54
|
-
|
|
55
|
-
### Phase 1: Input Collection and Analysis (Steps 1-2)
|
|
56
|
-
|
|
57
|
-
- **Document Discovery**: Locates PRD and Architecture documents
|
|
58
|
-
- **Epic Extraction**: Identifies epic title and ID from PRD content
|
|
59
|
-
- **Template Initialization**: Creates tech-spec document from template
|
|
60
|
-
- **Context Analysis**: Reviews complete PRD and architecture for alignment
|
|
61
|
-
|
|
62
|
-
### Phase 2: Technical Design Specification (Step 3)
|
|
63
|
-
|
|
64
|
-
- **Service Architecture**: Defines services/modules with responsibilities and interfaces
|
|
65
|
-
- **Data Modeling**: Specifies entities, schemas, and relationships
|
|
66
|
-
- **API Design**: Documents endpoints, request/response models, and error handling
|
|
67
|
-
- **Workflow Definition**: Details sequence flows and data processing patterns
|
|
68
|
-
|
|
69
|
-
### Phase 3: Non-Functional Requirements (Step 4)
|
|
70
|
-
|
|
71
|
-
- **Performance Specs**: Defines measurable latency, throughput, and scalability targets
|
|
72
|
-
- **Security Requirements**: Specifies authentication, authorization, and data protection
|
|
73
|
-
- **Reliability Standards**: Documents availability, recovery, and degradation behavior
|
|
74
|
-
- **Observability Framework**: Defines logging, metrics, and tracing requirements
|
|
75
|
-
|
|
76
|
-
### Phase 4: Dependencies and Integration (Step 5)
|
|
77
|
-
|
|
78
|
-
- **Dependency Analysis**: Scans repository for package manifests and frameworks
|
|
79
|
-
- **Integration Mapping**: Identifies external systems and API dependencies
|
|
80
|
-
- **Version Management**: Documents version constraints and compatibility requirements
|
|
81
|
-
- **Infrastructure Needs**: Specifies deployment and runtime dependencies
|
|
82
|
-
|
|
83
|
-
### Phase 5: Acceptance and Testing (Step 6)
|
|
84
|
-
|
|
85
|
-
- **Criteria Normalization**: Extracts and refines acceptance criteria from PRD
|
|
86
|
-
- **Traceability Matrix**: Maps acceptance criteria to technical components
|
|
87
|
-
- **Test Strategy**: Defines testing approach for each acceptance criterion
|
|
88
|
-
- **Component Mapping**: Links requirements to specific APIs and modules
|
|
89
|
-
|
|
90
|
-
### Phase 6: Risk and Validation (Steps 7-8)
|
|
91
|
-
|
|
92
|
-
- **Risk Assessment**: Identifies technical risks, assumptions, and open questions
|
|
93
|
-
- **Mitigation Planning**: Provides strategies for addressing identified risks
|
|
94
|
-
- **Quality Validation**: Ensures specification meets completeness criteria
|
|
95
|
-
- **Checklist Verification**: Validates against workflow quality standards
|
|
96
|
-
|
|
97
|
-
## Output
|
|
98
|
-
|
|
99
|
-
### Generated Files
|
|
100
|
-
|
|
101
|
-
- **Primary output**: tech-spec-{epic_id}-{date}.md
|
|
102
|
-
- **Traceability data**: Embedded mapping tables linking requirements to implementation
|
|
103
|
-
|
|
104
|
-
### Output Structure
|
|
105
|
-
|
|
106
|
-
1. **Overview and Scope** - Project context and boundaries
|
|
107
|
-
2. **System Architecture Alignment** - Connection to architecture
|
|
108
|
-
3. **Detailed Design** - Services, data models, APIs, and workflows
|
|
109
|
-
4. **Non-Functional Requirements** - Performance, security, reliability, observability
|
|
110
|
-
5. **Dependencies and Integrations** - External systems and technical dependencies
|
|
111
|
-
6. **Acceptance Criteria** - Testable requirements from PRD
|
|
112
|
-
7. **Traceability Mapping** - Requirements-to-implementation mapping
|
|
113
|
-
8. **Test Strategy** - Testing approach and framework alignment
|
|
114
|
-
9. **Risks and Assumptions** - Technical risks and mitigation strategies
|
|
115
|
-
|
|
116
|
-
## Requirements
|
|
117
|
-
|
|
118
|
-
- **PRD Document**: Product Requirements Document with clear acceptance criteria
|
|
119
|
-
- **Architecture Document**: architecture or technical design
|
|
120
|
-
- **Repository Access**: For dependency analysis and framework detection
|
|
121
|
-
- **Epic Context**: Clear epic identification and scope definition
|
|
122
|
-
|
|
123
|
-
## Best Practices
|
|
124
|
-
|
|
125
|
-
### Before Starting
|
|
126
|
-
|
|
127
|
-
1. **Validate Inputs**: Ensure PRD and architecture documents are complete and current
|
|
128
|
-
2. **Review Requirements**: Confirm acceptance criteria are specific and testable
|
|
129
|
-
3. **Check Dependencies**: Verify repository structure supports automated dependency analysis
|
|
130
|
-
|
|
131
|
-
### During Execution
|
|
132
|
-
|
|
133
|
-
1. **Maintain Traceability**: Ensure every acceptance criterion maps to implementation
|
|
134
|
-
2. **Be Implementation-Specific**: Provide concrete technical guidance, not high-level concepts
|
|
135
|
-
3. **Consider Constraints**: Factor in existing system limitations and brownfield challenges
|
|
136
|
-
|
|
137
|
-
### After Completion
|
|
138
|
-
|
|
139
|
-
1. **Architect Review**: Have technical lead validate design decisions
|
|
140
|
-
2. **Developer Walkthrough**: Ensure implementation team understands specifications
|
|
141
|
-
3. **Test Planning**: Use traceability matrix for test case development
|
|
142
|
-
|
|
143
|
-
## Troubleshooting
|
|
144
|
-
|
|
145
|
-
### Common Issues
|
|
146
|
-
|
|
147
|
-
**Issue**: Missing or incomplete technical details
|
|
148
|
-
|
|
149
|
-
- **Solution**: Review architecture document for implementation specifics
|
|
150
|
-
- **Check**: Ensure PRD contains sufficient functional requirements detail
|
|
151
|
-
|
|
152
|
-
**Issue**: Acceptance criteria don't map cleanly to technical components
|
|
153
|
-
|
|
154
|
-
- **Solution**: Break down complex criteria into atomic, testable statements
|
|
155
|
-
- **Check**: Verify PRD acceptance criteria are properly structured
|
|
156
|
-
|
|
157
|
-
**Issue**: Dependency analysis fails or is incomplete
|
|
158
|
-
|
|
159
|
-
- **Solution**: Check repository structure and manifest file locations
|
|
160
|
-
- **Check**: Verify repository contains standard dependency files (package.json, etc.)
|
|
161
|
-
|
|
162
|
-
**Issue**: Non-functional requirements are too vague
|
|
163
|
-
|
|
164
|
-
- **Solution**: Extract specific performance and quality targets from architecture
|
|
165
|
-
- **Check**: Ensure architecture document contains measurable NFR specifications
|
|
166
|
-
|
|
167
|
-
## Customization
|
|
168
|
-
|
|
169
|
-
To customize this workflow:
|
|
170
|
-
|
|
171
|
-
1. **Modify Template**: Update template.md to match organizational technical spec standards
|
|
172
|
-
2. **Extend Dependencies**: Add support for additional package managers or frameworks
|
|
173
|
-
3. **Enhance Validation**: Extend checklist.md with company-specific technical criteria
|
|
174
|
-
4. **Add Sections**: Include additional technical concerns like DevOps or monitoring
|
|
175
|
-
|
|
176
|
-
## Version History
|
|
177
|
-
|
|
178
|
-
- **v6.0.0** - Comprehensive technical specification with traceability
|
|
179
|
-
- PRD-Architecture integration
|
|
180
|
-
- Automated dependency detection
|
|
181
|
-
- Traceability mapping
|
|
182
|
-
- Test strategy alignment
|
|
183
|
-
|
|
184
|
-
## Support
|
|
185
|
-
|
|
186
|
-
For issues or questions:
|
|
187
|
-
|
|
188
|
-
- Review the workflow creation guide at `/bmad/bmb/workflows/create-workflow/workflow-creation-guide.md`
|
|
189
|
-
- Validate output using `checklist.md`
|
|
190
|
-
- Ensure PRD and architecture documents are complete before starting
|
|
191
|
-
- Consult BMAD documentation for technical specification standards
|
|
192
|
-
|
|
193
|
-
---
|
|
194
|
-
|
|
195
|
-
_Part of the BMad Method v6 - BMM (Method) Module_
|