bmad-method 6.0.0-alpha.13 → 6.0.0-alpha.14
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/.github/ISSUE_TEMPLATE/idea_submission.md +1 -1
- package/.github/scripts/discord-helpers.sh +15 -0
- package/.github/workflows/discord.yaml +278 -8
- package/.github/workflows/quality.yaml +19 -0
- package/.markdownlint-cli2.yaml +42 -0
- package/.prettierignore +3 -0
- package/CHANGELOG.md +95 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/bmad-method-6.0.0-alpha.14.tgz +0 -0
- package/docs/agent-customization-guide.md +2 -2
- package/docs/custom-agent-installation.md +56 -102
- package/docs/document-sharding-guide.md +1 -1
- package/eslint.config.mjs +14 -0
- package/example-custom-content/README.md +4 -0
- package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/instructions.md +4 -4
- package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/memories.md +1 -1
- package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith.agent.yaml +17 -16
- package/example-custom-content/custom.yaml +3 -0
- package/example-custom-content/workflows/quiz-master/steps/step-01-init.md +168 -0
- package/example-custom-content/workflows/quiz-master/steps/step-02-q1.md +155 -0
- package/example-custom-content/workflows/quiz-master/steps/step-03-q2.md +89 -0
- package/example-custom-content/workflows/quiz-master/steps/step-04-q3.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-05-q4.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-06-q5.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-07-q6.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-08-q7.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-09-q8.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-10-q9.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-11-q10.md +36 -0
- package/example-custom-content/workflows/quiz-master/steps/step-12-results.md +150 -0
- package/example-custom-content/workflows/quiz-master/templates/csv-headers.template +1 -0
- package/example-custom-content/workflows/quiz-master/workflow-plan-quiz-master.md +269 -0
- package/example-custom-content/workflows/quiz-master/workflow.md +54 -0
- package/example-custom-content/workflows/wassup/workflow.md +26 -0
- package/example-custom-module/mwm/README.md +4 -0
- package/example-custom-module/mwm/_module-installer/install-config.yaml +27 -0
- package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/cognitive-distortions.md +47 -0
- package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/thought-records.md +17 -0
- package/example-custom-module/mwm/agents/cbt-coach/cbt-coach.agent.yaml +150 -0
- package/example-custom-module/mwm/agents/crisis-navigator.agent.yaml +137 -0
- package/example-custom-module/mwm/agents/meditation-guide.agent.yaml +137 -0
- package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/insights.md +13 -0
- package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/instructions.md +30 -0
- package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/memories.md +13 -0
- package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/patterns.md +17 -0
- package/example-custom-module/mwm/agents/wellness-companion/wellness-companion.agent.yaml +124 -0
- package/example-custom-module/mwm/workflows/cbt-thought-record/README.md +31 -0
- package/example-custom-module/mwm/workflows/cbt-thought-record/workflow.md +45 -0
- package/example-custom-module/mwm/workflows/crisis-support/README.md +31 -0
- package/example-custom-module/mwm/workflows/crisis-support/workflow.md +45 -0
- package/example-custom-module/mwm/workflows/daily-checkin/README.md +32 -0
- package/example-custom-module/mwm/workflows/daily-checkin/workflow.md +45 -0
- package/example-custom-module/mwm/workflows/guided-meditation/README.md +31 -0
- package/example-custom-module/mwm/workflows/guided-meditation/workflow.md +45 -0
- package/example-custom-module/mwm/workflows/wellness-journal/README.md +31 -0
- package/example-custom-module/mwm/workflows/wellness-journal/workflow.md +45 -0
- package/package.json +9 -4
- package/src/core/_module-installer/install-config.yaml +5 -1
- package/src/core/resources/excalidraw/library-loader.md +2 -2
- package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +1 -1
- package/src/core/workflows/brainstorming/workflow.md +1 -1
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +0 -1
- package/src/core/workflows/party-mode/workflow.md +2 -3
- package/src/modules/bmb/README.md +1 -1
- package/src/modules/bmb/_module-installer/install-config.yaml +4 -9
- package/src/modules/bmb/_module-installer/installer.js +76 -0
- package/src/modules/bmb/agents/bmad-builder.agent.yaml +32 -9
- package/src/modules/bmb/docs/agents/agent-menu-patterns.md +5 -5
- package/src/modules/bmb/docs/agents/expert-agent-architecture.md +20 -20
- package/src/modules/bmb/docs/agents/module-agent-architecture.md +45 -45
- package/src/modules/bmb/docs/agents/simple-agent-architecture.md +7 -3
- package/src/modules/bmb/docs/workflows/architecture.md +1 -1
- 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/{workflows/create-workflow → docs/workflows}/templates/step-file.md +4 -4
- package/src/modules/bmb/docs/workflows/{step-template.md → templates/step-template.md} +40 -33
- package/src/modules/bmb/docs/workflows/templates/workflow-template.md +104 -0
- package/src/modules/bmb/{workflows/create-workflow → docs/workflows}/templates/workflow.md +1 -1
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/README.md +4 -4
- package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +8 -8
- package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +6 -6
- package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +7 -7
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +2 -3
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +10 -40
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +1 -1
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +1 -0
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +2 -2
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +2 -2
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +2 -2
- package/src/modules/bmb/reference/workflows/meal-prep-nutrition/workflow.md +2 -2
- package/src/modules/bmb/workflows/create-agent/data/info-and-installation-guide.md +16 -4
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/README.md +4 -4
- package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +7 -7
- package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +1 -1
- package/src/modules/bmb/workflows/create-agent/data/validation-complete.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-02-discover.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-03-persona.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-04-commands.md +6 -6
- package/src/modules/bmb/workflows/create-agent/steps/step-05-name.md +2 -2
- package/src/modules/bmb/workflows/create-agent/steps/step-06-build.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-07-validate.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-08-setup.md +2 -2
- package/src/modules/bmb/workflows/create-agent/steps/step-09-customize.md +3 -3
- package/src/modules/bmb/workflows/create-agent/steps/step-10-build-tools.md +2 -2
- package/src/modules/bmb/workflows/create-agent/steps/step-11-celebrate.md +2 -2
- package/src/modules/bmb/workflows/create-agent/workflow.md +11 -11
- 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 +308 -0
- package/src/modules/bmb/workflows/create-module/steps/step-10-roadmap.md +336 -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 +317 -0
- package/src/modules/bmb/workflows/create-module/templates/install-config.template.yaml +53 -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/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 +45 -56
- package/src/modules/bmb/workflows/create-workflow/steps/step-02-gather.md +9 -31
- 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-09-design.md → step-06-design.md} +76 -44
- package/src/modules/bmb/workflows/create-workflow/steps/{step-11-build.md → step-07-build.md} +70 -24
- package/src/modules/bmb/workflows/create-workflow/steps/{step-12-review.md → step-08-review.md} +30 -16
- package/src/modules/bmb/workflows/create-workflow/steps/step-09-complete.md +187 -0
- package/src/modules/bmb/workflows/create-workflow/workflow.md +2 -2
- package/src/modules/bmb/workflows/edit-agent/steps/step-01-discover-intent.md +2 -2
- package/src/modules/bmb/workflows/edit-agent/steps/step-02-analyze-agent.md +14 -14
- package/src/modules/bmb/workflows/edit-agent/steps/step-03-propose-changes.md +4 -4
- package/src/modules/bmb/workflows/edit-agent/steps/step-04-apply-changes.md +2 -2
- package/src/modules/bmb/workflows/edit-agent/steps/step-05-validate.md +4 -4
- package/src/modules/bmb/workflows/edit-agent/workflow.md +1 -1
- package/src/modules/bmb/workflows/edit-workflow/steps/step-01-analyze.md +2 -6
- package/src/modules/bmb/workflows/edit-workflow/steps/step-03-improve.md +2 -2
- package/src/modules/bmb/workflows/edit-workflow/steps/step-04-validate.md +1 -1
- package/src/modules/bmb/workflows/edit-workflow/workflow.md +1 -1
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +2 -2
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +5 -5
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +7 -7
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +3 -3
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +3 -3
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +3 -3
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +3 -3
- package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +2 -2
- package/src/modules/bmb/workflows/workflow-compliance-check/workflow.md +1 -1
- package/src/modules/bmb/workflows-legacy/edit-module/checklist.md +0 -1
- package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +8 -8
- package/src/modules/bmm/_module-installer/install-config.yaml +1 -1
- package/src/modules/bmm/agents/analyst.agent.yaml +11 -8
- package/src/modules/bmm/agents/architect.agent.yaml +1 -5
- package/src/modules/bmm/agents/pm.agent.yaml +5 -5
- package/src/modules/bmm/docs/README.md +23 -1
- package/src/modules/bmm/docs/agents-guide.md +16 -35
- package/src/modules/bmm/docs/brownfield-guide.md +17 -30
- package/src/modules/bmm/docs/enterprise-agentic-development.md +2 -2
- package/src/modules/bmm/docs/faq.md +6 -39
- package/src/modules/bmm/docs/glossary.md +11 -24
- package/src/modules/bmm/docs/images/README.md +37 -0
- package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +62 -202
- package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +3 -1
- package/src/modules/bmm/docs/quick-spec-flow.md +652 -0
- package/src/modules/bmm/docs/quick-start.md +9 -25
- package/src/modules/bmm/docs/test-architecture.md +6 -6
- package/src/modules/bmm/docs/troubleshooting.md +680 -0
- package/src/modules/bmm/docs/workflow-document-project-reference.md +1 -1
- package/src/modules/bmm/docs/workflows-implementation.md +143 -3
- package/src/modules/bmm/docs/workflows-solutioning.md +2 -2
- package/src/modules/bmm/tasks/daily-standup.xml +85 -0
- package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +1 -1
- package/src/modules/bmm/testarch/knowledge/overview.md +1 -1
- package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-02-vision.md +2 -2
- package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-03-users.md +2 -2
- package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-04-metrics.md +2 -2
- package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-05-scope.md +2 -2
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.md +1 -1
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +8 -8
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +18 -18
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +18 -18
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +18 -18
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +17 -17
- package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +35 -36
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +5 -6
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +20 -19
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +21 -20
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +20 -19
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +21 -20
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +16 -15
- package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +36 -37
- package/src/modules/bmm/workflows/1-analysis/research/research.template.md +0 -1
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +8 -8
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +19 -18
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +20 -19
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +21 -20
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +19 -18
- package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +38 -39
- package/src/modules/bmm/workflows/1-analysis/research/workflow.md +14 -8
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +6 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +7 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +138 -56
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +93 -51
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +223 -78
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +20 -2
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +18 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +21 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +21 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +21 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +18 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +18 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +18 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +13 -0
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.md +2 -2
- package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-03-starter.md +14 -14
- package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-04-decisions.md +7 -7
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.md +2 -1
- 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/3-solutioning/implementation-readiness/steps/step-01-document-discovery.md +189 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-02-prd-analysis.md +177 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-03-epic-coverage-validation.md +178 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-04-ux-alignment.md +138 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-05-epic-quality-review.md +251 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-06-final-assessment.md +132 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/templates/readiness-report-template.md +4 -0
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.md +54 -0
- package/src/modules/{bmgd/workflows/4-production → bmm/workflows/4-implementation}/code-review/checklist.md +2 -1
- package/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +51 -3
- package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +1 -1
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.xml +32 -2
- package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +3 -3
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +19 -21
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +10 -10
- package/src/modules/bmm/workflows/4-implementation/sprint-status/instructions.md +174 -0
- package/src/modules/bmm/workflows/4-implementation/sprint-status/workflow.yaml +35 -0
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/instructions.md +104 -7
- package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.yaml +4 -0
- package/src/modules/bmm/workflows/document-project/instructions.md +1 -1
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +2 -2
- package/src/modules/bmm/workflows/generate-project-context/workflow.md +1 -1
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +1 -1
- package/src/modules/bmm/workflows/testarch/ci/checklist.md +1 -1
- 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 +2 -2
- package/src/modules/bmm/workflows/testarch/test-review/instructions.md +1 -1
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +1 -6
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +1 -6
- package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +1 -6
- package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +1 -7
- package/tools/cli/README.md +3 -3
- package/tools/cli/commands/build.js +9 -184
- package/tools/cli/commands/install.js +1 -6
- package/tools/cli/installers/lib/core/config-collector.js +70 -10
- package/tools/cli/installers/lib/core/installer.js +153 -388
- package/tools/cli/installers/lib/core/manifest-generator.js +91 -30
- package/tools/cli/installers/lib/core/post-install-sidecar-replacement.js +79 -0
- package/tools/cli/installers/lib/custom/handler.js +266 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +10 -0
- package/tools/cli/installers/lib/ide/auggie.js +19 -7
- package/tools/cli/installers/lib/ide/crush.js +19 -6
- package/tools/cli/installers/lib/ide/cursor.js +29 -13
- package/tools/cli/installers/lib/ide/gemini.js +49 -1
- package/tools/cli/installers/lib/ide/iflow.js +20 -1
- package/tools/cli/installers/lib/ide/kiro-cli.js +327 -0
- package/tools/cli/installers/lib/ide/opencode.js +3 -3
- package/tools/cli/installers/lib/ide/roo.js +120 -184
- package/tools/cli/installers/lib/ide/rovo-dev.js +1 -1
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +8 -2
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +34 -19
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +18 -14
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
- package/tools/cli/installers/lib/modules/manager.js +486 -53
- package/tools/cli/lib/agent/compiler.js +54 -5
- package/tools/cli/lib/agent/installer.js +127 -27
- package/tools/cli/lib/config.js +2 -1
- package/tools/cli/lib/ui.js +65 -4
- package/tools/cli/lib/yaml-xml-builder.js +0 -15
- package/tools/schema/agent.js +149 -89
- package/tools/validate-svg-changes.sh +356 -0
- package/custom/src/agents/commit-poet/installation-guide.md +0 -36
- package/custom/src/agents/toolsmith/installation-guide.md +0 -36
- package/src/modules/bmb/docs/workflows/workflow-template.md +0 -152
- package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-overview.md +0 -127
- package/src/modules/bmb/workflows/create-workflow/steps/step-04-core-tools.md +0 -145
- package/src/modules/bmb/workflows/create-workflow/steps/step-05-memory-requirements.md +0 -136
- package/src/modules/bmb/workflows/create-workflow/steps/step-06-external-tools.md +0 -154
- package/src/modules/bmb/workflows/create-workflow/steps/step-07-installation-guidance.md +0 -159
- package/src/modules/bmb/workflows/create-workflow/steps/step-08-tools-summary.md +0 -167
- package/src/modules/bmb/workflows/create-workflow/steps/step-10-plan-review.md +0 -215
- package/src/modules/bmb/workflows/create-workflow/templates/build-summary.md +0 -36
- package/src/modules/bmb/workflows/create-workflow/templates/completion-section.md +0 -39
- package/src/modules/bmb/workflows/create-workflow/templates/content-template.md +0 -21
- package/src/modules/bmb/workflows/create-workflow/templates/design-section.md +0 -53
- package/src/modules/bmb/workflows/create-workflow/templates/project-info.md +0 -18
- package/src/modules/bmb/workflows/create-workflow/templates/requirements-section.md +0 -47
- package/src/modules/bmb/workflows/create-workflow/templates/review-section.md +0 -56
- package/src/modules/bmb/workflows/create-workflow/templates/workflow-plan.md +0 -54
- package/src/modules/bmb/workflows-legacy/create-module/README.md +0 -229
- package/src/modules/bmb/workflows-legacy/create-module/brainstorm-context.md +0 -137
- package/src/modules/bmb/workflows-legacy/create-module/checklist.md +0 -235
- package/src/modules/bmb/workflows-legacy/create-module/installer-templates/install-config.yaml +0 -92
- package/src/modules/bmb/workflows-legacy/create-module/installer-templates/installer.js +0 -231
- package/src/modules/bmb/workflows-legacy/create-module/instructions.md +0 -577
- package/src/modules/bmb/workflows-legacy/create-module/module-structure.md +0 -400
- package/src/modules/bmb/workflows-legacy/create-module/workflow.yaml +0 -52
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/epics-template.md +0 -80
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/instructions.md +0 -387
- package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.yaml +0 -53
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/checklist.md +0 -169
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/instructions.md +0 -332
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/template.md +0 -146
- package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.yaml +0 -64
- package/tools/cli/commands/agent-install.js +0 -409
- package/tools/cli/commands/cleanup.js +0 -141
- /package/{custom/src → example-custom-content}/agents/commit-poet/commit-poet.agent.yaml +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +0 -0
- /package/{custom/src → example-custom-content}/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +0 -0
package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
- 📖 CRITICAL: ALWAYS read the complete step file before taking any action - partial understanding leads to incomplete decisions
|
|
8
8
|
- 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read and understood before proceeding
|
|
9
|
-
- ✅
|
|
9
|
+
- ✅ Search the web to verify and supplement your knowledge with current facts
|
|
10
10
|
- 📋 YOU ARE A TECHNICAL RESEARCH STRATEGIST, not content generator
|
|
11
11
|
- 💬 FOCUS on comprehensive technical synthesis and authoritative conclusions
|
|
12
|
-
- 🔍 WEB
|
|
12
|
+
- 🔍 WEB SEARCH REQUIRED - verify current facts against live sources
|
|
13
13
|
- 📄 PRODUCE COMPREHENSIVE DOCUMENT with narrative intro, TOC, and summary
|
|
14
14
|
|
|
15
15
|
## EXECUTION PROTOCOLS:
|
|
@@ -74,7 +74,7 @@ Produce a comprehensive, authoritative technical research document on **{{resear
|
|
|
74
74
|
- Set authoritative, technical expert tone
|
|
75
75
|
|
|
76
76
|
**Web Search for Technical Introduction Context:**
|
|
77
|
-
|
|
77
|
+
Search the web: "{{research_topic}} technical significance importance"
|
|
78
78
|
|
|
79
79
|
### 3. Synthesize All Technical Research Sections
|
|
80
80
|
|
|
@@ -95,7 +95,7 @@ Produce a comprehensive, authoritative technical research document on **{{resear
|
|
|
95
95
|
|
|
96
96
|
## Executive Summary
|
|
97
97
|
|
|
98
|
-
[2-3 paragraph compelling summary of the most critical technical findings and strategic implications for {{research_topic}} based on comprehensive
|
|
98
|
+
[2-3 paragraph compelling summary of the most critical technical findings and strategic implications for {{research_topic}} based on comprehensive current technical research]
|
|
99
99
|
|
|
100
100
|
**Key Technical Findings:**
|
|
101
101
|
|
|
@@ -127,10 +127,10 @@ Produce a comprehensive, authoritative technical research document on **{{resear
|
|
|
127
127
|
|
|
128
128
|
### Technical Research Significance
|
|
129
129
|
|
|
130
|
-
[Compelling technical narrative about why {{research_topic}} research is critical
|
|
131
|
-
_Technical Importance: [Strategic technical significance with
|
|
130
|
+
[Compelling technical narrative about why {{research_topic}} research is critical right now]
|
|
131
|
+
_Technical Importance: [Strategic technical significance with current context]_
|
|
132
132
|
_Business Impact: [Business implications of technical research]_
|
|
133
|
-
_Source: [URL
|
|
133
|
+
_Source: [URL]_
|
|
134
134
|
|
|
135
135
|
### Technical Research Methodology
|
|
136
136
|
|
|
@@ -139,7 +139,7 @@ _Source: [URL with {{current_year}} technical significance data]_
|
|
|
139
139
|
- **Technical Scope**: [Comprehensive technical coverage areas]
|
|
140
140
|
- **Data Sources**: [Authoritative technical sources and verification approach]
|
|
141
141
|
- **Analysis Framework**: [Structured technical analysis methodology]
|
|
142
|
-
- **Time Period**: [
|
|
142
|
+
- **Time Period**: [current focus and technical evolution context]
|
|
143
143
|
- **Technical Depth**: [Level of technical detail and analysis]
|
|
144
144
|
|
|
145
145
|
### Technical Research Goals and Objectives
|
|
@@ -156,11 +156,11 @@ _Source: [URL with {{current_year}} technical significance data]_
|
|
|
156
156
|
|
|
157
157
|
### Current Technical Architecture Patterns
|
|
158
158
|
|
|
159
|
-
[Comprehensive architectural analysis synthesized from step-03 with
|
|
159
|
+
[Comprehensive architectural analysis synthesized from step-03 with current context]
|
|
160
160
|
_Dominant Patterns: [Current architectural approaches]_
|
|
161
161
|
_Architectural Evolution: [Historical and current evolution patterns]_
|
|
162
162
|
_Architectural Trade-offs: [Key architectural decisions and implications]_
|
|
163
|
-
_Source: [URL
|
|
163
|
+
_Source: [URL]_
|
|
164
164
|
|
|
165
165
|
### System Design Principles and Best Practices
|
|
166
166
|
|
|
@@ -168,18 +168,18 @@ _Source: [URL with {{current_year}} architectural data]_
|
|
|
168
168
|
_Design Principles: [Core principles guiding {{research_topic}} implementations]_
|
|
169
169
|
_Best Practice Patterns: [Industry-standard approaches and methodologies]_
|
|
170
170
|
_Architectural Quality Attributes: [Performance, scalability, maintainability considerations]_
|
|
171
|
-
_Source: [URL
|
|
171
|
+
_Source: [URL]_
|
|
172
172
|
|
|
173
173
|
## 3. Implementation Approaches and Best Practices
|
|
174
174
|
|
|
175
175
|
### Current Implementation Methodologies
|
|
176
176
|
|
|
177
|
-
[Implementation analysis from step-04 with
|
|
177
|
+
[Implementation analysis from step-04 with current context]
|
|
178
178
|
_Development Approaches: [Current development methodologies and approaches]_
|
|
179
179
|
_Code Organization Patterns: [Structural patterns and organization strategies]_
|
|
180
180
|
_Quality Assurance Practices: [Testing, validation, and quality approaches]_
|
|
181
181
|
_Deployment Strategies: [Current deployment and operations practices]_
|
|
182
|
-
_Source: [URL
|
|
182
|
+
_Source: [URL]_
|
|
183
183
|
|
|
184
184
|
### Implementation Framework and Tooling
|
|
185
185
|
|
|
@@ -187,18 +187,18 @@ _Source: [URL with {{current_year}} implementation data]_
|
|
|
187
187
|
_Development Frameworks: [Popular frameworks and their characteristics]_
|
|
188
188
|
_Tool Ecosystem: [Development tools and platform considerations]_
|
|
189
189
|
_Build and Deployment Systems: [CI/CD and automation approaches]_
|
|
190
|
-
_Source: [URL
|
|
190
|
+
_Source: [URL]_
|
|
191
191
|
|
|
192
192
|
## 4. Technology Stack Evolution and Current Trends
|
|
193
193
|
|
|
194
194
|
### Current Technology Stack Landscape
|
|
195
195
|
|
|
196
|
-
[Technology stack analysis from step-02 with
|
|
196
|
+
[Technology stack analysis from step-02 with current updates]
|
|
197
197
|
_Programming Languages: [Current language trends and adoption patterns]_
|
|
198
198
|
_Frameworks and Libraries: [Popular frameworks and their use cases]_
|
|
199
199
|
_Database and Storage Technologies: [Current data storage and management trends]_
|
|
200
200
|
_API and Communication Technologies: [Integration and communication patterns]_
|
|
201
|
-
_Source: [URL
|
|
201
|
+
_Source: [URL]_
|
|
202
202
|
|
|
203
203
|
### Technology Adoption Patterns
|
|
204
204
|
|
|
@@ -206,17 +206,17 @@ _Source: [URL with {{current_year}} technology stack data]_
|
|
|
206
206
|
_Adoption Trends: [Technology adoption rates and patterns]_
|
|
207
207
|
_Migration Patterns: [Technology migration and evolution trends]_
|
|
208
208
|
_Emerging Technologies: [New technologies and their potential impact]_
|
|
209
|
-
_Source: [URL
|
|
209
|
+
_Source: [URL]_
|
|
210
210
|
|
|
211
211
|
## 5. Integration and Interoperability Patterns
|
|
212
212
|
|
|
213
213
|
### Current Integration Approaches
|
|
214
214
|
|
|
215
|
-
[Integration patterns analysis with
|
|
215
|
+
[Integration patterns analysis with current context]
|
|
216
216
|
_API Design Patterns: [Current API design and implementation patterns]_
|
|
217
217
|
_Service Integration: [Microservices and service integration approaches]_
|
|
218
218
|
_Data Integration: [Data exchange and integration patterns]_
|
|
219
|
-
_Source: [URL
|
|
219
|
+
_Source: [URL]_
|
|
220
220
|
|
|
221
221
|
### Interoperability Standards and Protocols
|
|
222
222
|
|
|
@@ -224,7 +224,7 @@ _Source: [URL with {{current_year}} integration data]_
|
|
|
224
224
|
_Standards Compliance: [Industry standards and compliance requirements]_
|
|
225
225
|
_Protocol Selection: [Communication protocols and selection criteria]_
|
|
226
226
|
_Integration Challenges: [Common integration challenges and solutions]_
|
|
227
|
-
_Source: [URL
|
|
227
|
+
_Source: [URL]_
|
|
228
228
|
|
|
229
229
|
## 6. Performance and Scalability Analysis
|
|
230
230
|
|
|
@@ -234,7 +234,7 @@ _Source: [URL with {{current_year}} interoperability data]_
|
|
|
234
234
|
_Performance Benchmarks: [Current performance characteristics and benchmarks]_
|
|
235
235
|
_Optimization Strategies: [Performance optimization approaches and techniques]_
|
|
236
236
|
_Monitoring and Measurement: [Performance monitoring and measurement practices]_
|
|
237
|
-
_Source: [URL
|
|
237
|
+
_Source: [URL]_
|
|
238
238
|
|
|
239
239
|
### Scalability Patterns and Approaches
|
|
240
240
|
|
|
@@ -242,17 +242,17 @@ _Source: [URL with {{current_year}} performance data]_
|
|
|
242
242
|
_Scalability Patterns: [Architectural and design patterns for scalability]_
|
|
243
243
|
_Capacity Planning: [Capacity planning and resource management approaches]_
|
|
244
244
|
_Elasticity and Auto-scaling: [Dynamic scaling approaches and implementations]_
|
|
245
|
-
_Source: [URL
|
|
245
|
+
_Source: [URL]_
|
|
246
246
|
|
|
247
247
|
## 7. Security and Compliance Considerations
|
|
248
248
|
|
|
249
249
|
### Security Best Practices and Frameworks
|
|
250
250
|
|
|
251
|
-
[Security analysis with
|
|
251
|
+
[Security analysis with current context]
|
|
252
252
|
_Security Frameworks: [Current security frameworks and best practices]_
|
|
253
253
|
_Threat Landscape: [Current security threats and mitigation approaches]_
|
|
254
254
|
_Secure Development Practices: [Secure coding and development lifecycle]_
|
|
255
|
-
_Source: [URL
|
|
255
|
+
_Source: [URL]_
|
|
256
256
|
|
|
257
257
|
### Compliance and Regulatory Considerations
|
|
258
258
|
|
|
@@ -260,7 +260,7 @@ _Source: [URL with {{current_year}} security data]_
|
|
|
260
260
|
_Industry Standards: [Relevant industry standards and compliance requirements]_
|
|
261
261
|
_Regulatory Compliance: [Legal and regulatory considerations for {{research_topic}}]_
|
|
262
262
|
_Audit and Governance: [Technical audit and governance practices]_
|
|
263
|
-
_Source: [URL
|
|
263
|
+
_Source: [URL]_
|
|
264
264
|
|
|
265
265
|
## 8. Strategic Technical Recommendations
|
|
266
266
|
|
|
@@ -270,7 +270,7 @@ _Source: [URL with {{current_year}} compliance data]_
|
|
|
270
270
|
_Architecture Recommendations: [Recommended architectural approaches and patterns]_
|
|
271
271
|
_Technology Selection: [Recommended technology stack and selection criteria]_
|
|
272
272
|
_Implementation Strategy: [Recommended implementation approaches and methodologies]_
|
|
273
|
-
_Source: [URL
|
|
273
|
+
_Source: [URL]_
|
|
274
274
|
|
|
275
275
|
### Competitive Technical Advantage
|
|
276
276
|
|
|
@@ -278,7 +278,7 @@ _Source: [URL with {{current_year}} technical strategy data]_
|
|
|
278
278
|
_Technology Differentiation: [Technical approaches that provide competitive advantage]_
|
|
279
279
|
_Innovation Opportunities: [Areas for technical innovation and differentiation]_
|
|
280
280
|
_Strategic Technology Investments: [Recommended technology investments and priorities]_
|
|
281
|
-
_Source: [URL
|
|
281
|
+
_Source: [URL]_
|
|
282
282
|
|
|
283
283
|
## 9. Implementation Roadmap and Risk Assessment
|
|
284
284
|
|
|
@@ -288,7 +288,7 @@ _Source: [URL with {{current_year}} competitive analysis data]_
|
|
|
288
288
|
_Implementation Phases: [Recommended phased implementation approach]_
|
|
289
289
|
_Technology Migration Strategy: [Approach for technology adoption and migration]_
|
|
290
290
|
_Resource Planning: [Technical resources and capabilities planning]_
|
|
291
|
-
_Source: [URL
|
|
291
|
+
_Source: [URL]_
|
|
292
292
|
|
|
293
293
|
### Technical Risk Management
|
|
294
294
|
|
|
@@ -296,7 +296,7 @@ _Source: [URL with {{current_year}} implementation planning data]_
|
|
|
296
296
|
_Technical Risks: [Major technical risks and mitigation strategies]_
|
|
297
297
|
_Implementation Risks: [Risks associated with implementation and deployment]_
|
|
298
298
|
_Business Impact Risks: [Technical risks and their business implications]_
|
|
299
|
-
_Source: [URL
|
|
299
|
+
_Source: [URL]_
|
|
300
300
|
|
|
301
301
|
## 10. Future Technical Outlook and Innovation Opportunities
|
|
302
302
|
|
|
@@ -306,7 +306,7 @@ _Source: [URL with {{current_year}} technical risk data]_
|
|
|
306
306
|
_Near-term Technical Evolution: [1-2 year technical development expectations]_
|
|
307
307
|
_Medium-term Technology Trends: [3-5 year expected technical developments]_
|
|
308
308
|
_Long-term Technical Vision: [5+ year technical outlook for {{research_topic}}]_
|
|
309
|
-
_Source: [URL
|
|
309
|
+
_Source: [URL]_
|
|
310
310
|
|
|
311
311
|
### Innovation and Research Opportunities
|
|
312
312
|
|
|
@@ -314,7 +314,7 @@ _Source: [URL with {{current_year}} future trends data]_
|
|
|
314
314
|
_Research Opportunities: [Areas for technical research and innovation]_
|
|
315
315
|
_Emerging Technology Adoption: [Potential new technologies and adoption timelines]_
|
|
316
316
|
_Innovation Framework: [Approach for fostering technical innovation]_
|
|
317
|
-
_Source: [URL
|
|
317
|
+
_Source: [URL]_
|
|
318
318
|
|
|
319
319
|
## 11. Technical Research Methodology and Source Verification
|
|
320
320
|
|
|
@@ -324,7 +324,6 @@ _Source: [URL with {{current_year}} innovation data]_
|
|
|
324
324
|
_Primary Technical Sources: [Key authoritative technical sources used]_
|
|
325
325
|
_Secondary Technical Sources: [Supporting technical research and analysis]_
|
|
326
326
|
_Technical Web Search Queries: [Complete list of technical search queries used]_
|
|
327
|
-
_Technical Data Currency: [All technical data verified for {{current_year}} currency]_
|
|
328
327
|
|
|
329
328
|
### Technical Research Quality Assurance
|
|
330
329
|
|
|
@@ -370,9 +369,9 @@ _Technical Communities: [Professional networks and technical communities]_
|
|
|
370
369
|
---
|
|
371
370
|
|
|
372
371
|
**Technical Research Completion Date:** {{date}}
|
|
373
|
-
**Research Period:**
|
|
372
|
+
**Research Period:** current comprehensive technical analysis
|
|
374
373
|
**Document Length:** As needed for comprehensive technical coverage
|
|
375
|
-
**Source Verification:** All technical facts cited with
|
|
374
|
+
**Source Verification:** All technical facts cited with current sources
|
|
376
375
|
**Technical Confidence Level:** High - based on multiple authoritative technical sources
|
|
377
376
|
|
|
378
377
|
_This comprehensive technical research document serves as an authoritative technical reference on {{research_topic}} and provides strategic technical insights for informed decision-making and implementation._
|
|
@@ -391,7 +390,7 @@ _This comprehensive technical research document serves as an authoritative techn
|
|
|
391
390
|
- **Exhaustive Technical Research Coverage**: All technical aspects of {{research_topic}} thoroughly analyzed
|
|
392
391
|
- **Executive Technical Summary**: Key technical findings and strategic implications highlighted
|
|
393
392
|
- **Strategic Technical Recommendations**: Actionable technical insights based on comprehensive research
|
|
394
|
-
- **Complete Technical Source Citations**: Every technical claim verified with
|
|
393
|
+
- **Complete Technical Source Citations**: Every technical claim verified with current sources
|
|
395
394
|
|
|
396
395
|
**Technical Research Completeness:**
|
|
397
396
|
|
|
@@ -407,7 +406,7 @@ _This comprehensive technical research document serves as an authoritative techn
|
|
|
407
406
|
- Professional technical structure and compelling narrative
|
|
408
407
|
- As long as needed for comprehensive technical coverage
|
|
409
408
|
- Multiple independent technical sources for all claims
|
|
410
|
-
-
|
|
409
|
+
- current technical data throughout with proper citations
|
|
411
410
|
|
|
412
411
|
**Ready to complete this comprehensive technical research document?**
|
|
413
412
|
[C] Complete Research - Save final comprehensive technical document
|
|
@@ -432,7 +431,7 @@ When user selects 'C', append the complete comprehensive technical research docu
|
|
|
432
431
|
✅ Exhaustive technical research coverage across all technical aspects
|
|
433
432
|
✅ Executive technical summary with key findings and strategic implications
|
|
434
433
|
✅ Strategic technical recommendations grounded in comprehensive research
|
|
435
|
-
✅ Complete technical source verification with
|
|
434
|
+
✅ Complete technical source verification with current citations
|
|
436
435
|
✅ Professional technical document structure and compelling narrative
|
|
437
436
|
✅ [C] complete option presented and handled correctly
|
|
438
437
|
✅ Technical research workflow completed with comprehensive document
|
|
@@ -444,7 +443,7 @@ When user selects 'C', append the complete comprehensive technical research docu
|
|
|
444
443
|
❌ Incomplete technical research coverage across technical aspects
|
|
445
444
|
❌ Not providing executive technical summary with key findings
|
|
446
445
|
❌ Missing strategic technical recommendations based on research
|
|
447
|
-
❌
|
|
446
|
+
❌ Relying solely on training data without web verification for current facts
|
|
448
447
|
❌ Producing technical document without professional structure
|
|
449
448
|
❌ Not presenting completion option for final technical document
|
|
450
449
|
|
|
@@ -481,6 +480,6 @@ Complete authoritative technical research document on {{research_topic}} that:
|
|
|
481
480
|
- Establishes technical credibility through comprehensive research
|
|
482
481
|
- Provides strategic technical insights for informed decision-making
|
|
483
482
|
- Serves as technical reference document for continued use
|
|
484
|
-
- Maintains highest technical research quality standards with
|
|
483
|
+
- Maintains highest technical research quality standards with current verification
|
|
485
484
|
|
|
486
485
|
Congratulations on completing comprehensive technical research with professional documentation! 🎉
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: research
|
|
3
3
|
description: Conduct comprehensive research across multiple domains using current web data and verified sources - Market, Technical, Domain and other research types.
|
|
4
|
+
web_bundle: true
|
|
4
5
|
---
|
|
5
6
|
|
|
6
7
|
# Research Workflow
|
|
@@ -10,7 +11,7 @@ description: Conduct comprehensive research across multiple domains using curren
|
|
|
10
11
|
**Document Standards:**
|
|
11
12
|
|
|
12
13
|
- **Comprehensive Coverage**: Exhaustive research with no critical gaps
|
|
13
|
-
- **Source Verification**: Every factual claim
|
|
14
|
+
- **Source Verification**: Every factual claim backed by web sources with URL citations
|
|
14
15
|
- **Document Length**: As long as needed to fully cover the research topic
|
|
15
16
|
- **Professional Structure**: Compelling narrative introduction, detailed TOC, and comprehensive summary
|
|
16
17
|
- **Authoritative Sources**: Multiple independent sources for all critical claims
|
|
@@ -45,7 +46,7 @@ Load config from `{project-root}/{bmad_folder}/bmm/config.yaml` and resolve:
|
|
|
45
46
|
|
|
46
47
|
- `project_name`, `output_folder`, `user_name`
|
|
47
48
|
- `communication_language`, `document_output_language`, `user_skill_level`
|
|
48
|
-
- `date
|
|
49
|
+
- `date` as a system-generated value
|
|
49
50
|
- `enable_web_research = true` (web research is default behavior)
|
|
50
51
|
|
|
51
52
|
### Paths
|
|
@@ -56,11 +57,17 @@ Load config from `{project-root}/{bmad_folder}/bmm/config.yaml` and resolve:
|
|
|
56
57
|
|
|
57
58
|
---
|
|
58
59
|
|
|
60
|
+
## PREREQUISITE
|
|
61
|
+
|
|
62
|
+
**⛔ Web search required.** If unavailable, abort and tell the user.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
59
66
|
## RESEARCH BEHAVIOR
|
|
60
67
|
|
|
61
68
|
### Web Research Standards
|
|
62
69
|
|
|
63
|
-
- **Current Data Only**:
|
|
70
|
+
- **Current Data Only**: Search the web to verify and supplement your knowledge with current facts
|
|
64
71
|
- **Source Verification**: Require citations for all factual claims
|
|
65
72
|
- **Anti-Hallucination Protocol**: Never present information without verified sources
|
|
66
73
|
- **Multiple Sources**: Require at least 2 independent sources for critical claims
|
|
@@ -87,7 +94,7 @@ Execute research type discovery and routing:
|
|
|
87
94
|
**Research Standards:**
|
|
88
95
|
|
|
89
96
|
- **Anti-Hallucination Protocol**: Never present information without verified sources
|
|
90
|
-
- **Current Data Only**:
|
|
97
|
+
- **Current Data Only**: Search the web to verify and supplement your knowledge with current facts
|
|
91
98
|
- **Source Citation**: Always include URLs for factual claims from web searches
|
|
92
99
|
- **Multiple Sources**: Require 2+ independent sources for critical claims
|
|
93
100
|
- **Conflict Resolution**: Present conflicting views and note discrepancies
|
|
@@ -95,7 +102,7 @@ Execute research type discovery and routing:
|
|
|
95
102
|
|
|
96
103
|
### Collaborative Research Discovery
|
|
97
104
|
|
|
98
|
-
"Welcome {{user_name}}! I'm excited to work with you as your research partner. I bring web research capabilities with
|
|
105
|
+
"Welcome {{user_name}}! I'm excited to work with you as your research partner. I bring web research capabilities with rigorous source verification, while you bring the domain expertise and research direction.
|
|
99
106
|
|
|
100
107
|
**Let me help you clarify what you'd like to research.**
|
|
101
108
|
|
|
@@ -189,10 +196,9 @@ research_topic: '{{research_topic}}'
|
|
|
189
196
|
research_goals: '{{research_goals}}'
|
|
190
197
|
user_name: '{{user_name}}'
|
|
191
198
|
date: '{{date}}'
|
|
192
|
-
current_year: '{{current_year}}'
|
|
193
199
|
web_research_enabled: true
|
|
194
200
|
source_verification: true
|
|
195
201
|
---
|
|
196
202
|
```
|
|
197
203
|
|
|
198
|
-
**Note:** All research workflows
|
|
204
|
+
**Note:** All research workflows require web search for current data and source verification.
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: create-ux-design
|
|
3
|
+
description: Work with a peer UX Design expert to plan your applications UX patterns, look and feel.
|
|
4
|
+
web_bundle: true
|
|
5
|
+
---
|
|
6
|
+
|
|
1
7
|
# Create UX Design Workflow
|
|
2
8
|
|
|
3
9
|
**Goal:** Create comprehensive UX design specifications through collaborative visual exploration and informed decision-making where you act as a UX facilitator working with a product stakeholder.
|