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
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-06-external-tools'
|
|
3
|
-
description: 'Configure MCP integrations and installation requirements'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/{bmad_folder}/bmb/workflows/create-workflow'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: '{workflow_path}/steps/step-06-external-tools.md'
|
|
10
|
-
nextStepFile: '{workflow_path}/steps/step-07-installation-guidance.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
workflowPlanFile: '{output_folder}/workflow-plan-{new_workflow_name}.md'
|
|
13
|
-
|
|
14
|
-
# Documentation References
|
|
15
|
-
commonToolsCsv: '{project-root}/{bmad_folder}/bmb/docs/workflows/common-workflow-tools.csv'
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
# Step 6: External Tools Configuration
|
|
19
|
-
|
|
20
|
-
## STEP GOAL:
|
|
21
|
-
|
|
22
|
-
Identify and configure MCP integrations and external tools that the workflow requires.
|
|
23
|
-
|
|
24
|
-
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
25
|
-
|
|
26
|
-
### Universal Rules:
|
|
27
|
-
|
|
28
|
-
- 🛑 NEVER generate content without user input
|
|
29
|
-
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
30
|
-
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
31
|
-
|
|
32
|
-
### Role Reinforcement:
|
|
33
|
-
|
|
34
|
-
- ✅ You are a workflow architect and integration specialist
|
|
35
|
-
- ✅ We engage in collaborative dialogue, not command-response
|
|
36
|
-
- ✅ You bring expertise in MCP integrations and external tools
|
|
37
|
-
|
|
38
|
-
## EXECUTION PROTOCOLS:
|
|
39
|
-
|
|
40
|
-
- 🎯 Load external tools from CSV
|
|
41
|
-
- 💾 Identify specific MCP needs for workflow
|
|
42
|
-
- 📖 Document which tools require installation
|
|
43
|
-
- 🚫 FORBIDDEN to proceed without confirming tool selections
|
|
44
|
-
|
|
45
|
-
## SEQUENCE OF INSTRUCTIONS:
|
|
46
|
-
|
|
47
|
-
### 1. Initialize External Tools Assessment
|
|
48
|
-
|
|
49
|
-
"Configuring **External Tools and MCP Integrations**
|
|
50
|
-
|
|
51
|
-
These tools extend workflow capabilities but typically require installation. Let's identify what your workflow actually needs."
|
|
52
|
-
|
|
53
|
-
### 2. Present External Tools from CSV
|
|
54
|
-
|
|
55
|
-
Load `{commonToolsCsv}` and filter for `propose='example'` and `type='mcp'`:
|
|
56
|
-
|
|
57
|
-
"**Available External Tools:**
|
|
58
|
-
|
|
59
|
-
**MCP Integrations (Require Installation):**
|
|
60
|
-
|
|
61
|
-
- [List MCP tools from CSV with URLs and descriptions]
|
|
62
|
-
|
|
63
|
-
**Example Workflows/Tasks:**
|
|
64
|
-
|
|
65
|
-
- [List example workflows/tasks from CSV with descriptions]
|
|
66
|
-
|
|
67
|
-
**Installation Note:** Tools marked with `requires_install=yes` will need setup steps."
|
|
68
|
-
|
|
69
|
-
### 3. Identify Specific Tool Needs
|
|
70
|
-
|
|
71
|
-
"**External Tool Requirements:**
|
|
72
|
-
|
|
73
|
-
Based on your workflow goals, which external tools do you need?
|
|
74
|
-
|
|
75
|
-
**Common MCP Needs:**
|
|
76
|
-
|
|
77
|
-
- **Documentation Access:** Context-7 for current API docs
|
|
78
|
-
- **Browser Automation:** Playwright for web interactions
|
|
79
|
-
- **Git Operations:** Direct version control integration
|
|
80
|
-
- **Database Access:** Multiple database connectivity
|
|
81
|
-
- **Custom Tools:** Any domain-specific MCPs you need
|
|
82
|
-
|
|
83
|
-
**Your Requirements:**
|
|
84
|
-
|
|
85
|
-
1. What external data or APIs will your workflow access?
|
|
86
|
-
2. Does your workflow need web browser automation?
|
|
87
|
-
3. Will it interact with version control systems?
|
|
88
|
-
4. Are database connections required?
|
|
89
|
-
5. Any custom MCPs you plan to use?"
|
|
90
|
-
|
|
91
|
-
### 4. Document External Tools Selection
|
|
92
|
-
|
|
93
|
-
Append to {workflowPlanFile}:
|
|
94
|
-
|
|
95
|
-
```markdown
|
|
96
|
-
## External Tools Configuration
|
|
97
|
-
|
|
98
|
-
### MCP Integrations
|
|
99
|
-
|
|
100
|
-
**Selected Tools:** [list from CSV]
|
|
101
|
-
**Purpose:** [how each MCP enhances workflow]
|
|
102
|
-
**Integration Points:** [where external tools are essential]
|
|
103
|
-
**Installation Required:** [yes/no, which tools]
|
|
104
|
-
|
|
105
|
-
### Example Workflows/Tasks
|
|
106
|
-
|
|
107
|
-
**Selected:** [list chosen workflows/tasks]
|
|
108
|
-
**Purpose:** [how they enhance workflow capabilities]
|
|
109
|
-
**Integration:** [where they fit in workflow flow]
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
### 5. Installation Assessment
|
|
113
|
-
|
|
114
|
-
"**Installation Requirements Assessment:**
|
|
115
|
-
|
|
116
|
-
**Tools Requiring Installation:** [list from CSV where requires_install=yes]
|
|
117
|
-
|
|
118
|
-
**Installation Guidance Options:**
|
|
119
|
-
|
|
120
|
-
1. Include detailed setup steps in workflow
|
|
121
|
-
2. Provide user installation checklist
|
|
122
|
-
3. Assume tools are pre-installed
|
|
123
|
-
|
|
124
|
-
**Your Preference:** [ask user how to handle installation]"
|
|
125
|
-
|
|
126
|
-
### 6. Menu Options
|
|
127
|
-
|
|
128
|
-
Display: **Select an Option:** [C] Continue to Installation Guidance [M] Modify External Tools
|
|
129
|
-
|
|
130
|
-
#### Menu Handling Logic:
|
|
131
|
-
|
|
132
|
-
- IF C: Append external tools configuration to {workflowPlanFile}, update frontmatter, then load {nextStepFile}
|
|
133
|
-
- IF M: Refine external tool requirements
|
|
134
|
-
|
|
135
|
-
## CRITICAL STEP COMPLETION NOTE
|
|
136
|
-
|
|
137
|
-
ONLY WHEN C is selected and external tools are documented will you load {nextStepFile} to configure installation guidance.
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
|
|
141
|
-
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
142
|
-
|
|
143
|
-
### ✅ SUCCESS:
|
|
144
|
-
|
|
145
|
-
- External tools presented from CSV with installation requirements
|
|
146
|
-
- User's specific tool needs identified and documented
|
|
147
|
-
- Installation requirements clearly marked
|
|
148
|
-
- User understands which tools need setup
|
|
149
|
-
|
|
150
|
-
### ❌ SYSTEM FAILURE:
|
|
151
|
-
|
|
152
|
-
- Not filtering CSV for relevant tool types
|
|
153
|
-
- Missing installation requirement information
|
|
154
|
-
- Proceeding without confirming tool selections
|
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-07-installation-guidance'
|
|
3
|
-
description: 'Configure installation guidance for tools that require setup'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/{bmad_folder}/bmb/workflows/create-workflow'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: '{workflow_path}/steps/step-07-installation-guidance.md'
|
|
10
|
-
nextStepFile: '{workflow_path}/steps/step-08-tools-summary.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
workflowPlanFile: '{output_folder}/workflow-plan-{new_workflow_name}.md'
|
|
13
|
-
|
|
14
|
-
# Documentation References
|
|
15
|
-
commonToolsCsv: '{project-root}/{bmad_folder}/bmb/docs/workflows/common-workflow-tools.csv'
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
# Step 7: Installation Guidance Configuration
|
|
19
|
-
|
|
20
|
-
## STEP GOAL:
|
|
21
|
-
|
|
22
|
-
Configure installation guidance for any selected tools that require setup, ensuring users can successfully prepare their environment.
|
|
23
|
-
|
|
24
|
-
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
25
|
-
|
|
26
|
-
### Universal Rules:
|
|
27
|
-
|
|
28
|
-
- 🛑 NEVER generate content without user input
|
|
29
|
-
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
30
|
-
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
31
|
-
|
|
32
|
-
### Role Reinforcement:
|
|
33
|
-
|
|
34
|
-
- ✅ You are a workflow architect and integration specialist
|
|
35
|
-
- ✅ We engage in collaborative dialogue, not command-response
|
|
36
|
-
- ✅ You bring expertise in tool installation and setup procedures
|
|
37
|
-
|
|
38
|
-
## EXECUTION PROTOCOLS:
|
|
39
|
-
|
|
40
|
-
- 🎯 Identify tools requiring installation from CSV
|
|
41
|
-
- 💾 Configure installation approach based on user preference
|
|
42
|
-
- 📖 Generate or skip installation guidance as appropriate
|
|
43
|
-
- 🚫 FORBIDDEN to proceed without confirming installation approach
|
|
44
|
-
|
|
45
|
-
## SEQUENCE OF INSTRUCTIONS:
|
|
46
|
-
|
|
47
|
-
### 1. Initialize Installation Guidance
|
|
48
|
-
|
|
49
|
-
"Configuring **Installation Guidance**
|
|
50
|
-
|
|
51
|
-
Let's ensure users can successfully set up any tools your workflow requires. This prevents runtime errors and improves user experience."
|
|
52
|
-
|
|
53
|
-
### 2. Identify Installation Requirements
|
|
54
|
-
|
|
55
|
-
Load `{commonToolsCsv}` and filter for selected tools with `requires_install=yes`:
|
|
56
|
-
|
|
57
|
-
"**Installation Requirements:**
|
|
58
|
-
|
|
59
|
-
**Tools Requiring Installation:**
|
|
60
|
-
|
|
61
|
-
- [List selected tools from CSV where requires_install=yes]
|
|
62
|
-
- [Include URLs from CSV for each tool]
|
|
63
|
-
|
|
64
|
-
**No Installation Required:**
|
|
65
|
-
|
|
66
|
-
- [List selected tools from CSV where requires_install=no]
|
|
67
|
-
- All BMAD core tools, LLM features, and sidecar file memory"
|
|
68
|
-
|
|
69
|
-
### 3. Installation Approach Options
|
|
70
|
-
|
|
71
|
-
"**Installation Guidance Options:**
|
|
72
|
-
|
|
73
|
-
Based on your selected tools, how should the workflow handle installation?
|
|
74
|
-
|
|
75
|
-
1. **Include Installation Steps** - Add detailed setup instructions in early workflow step
|
|
76
|
-
2. **User Instructions Only** - Provide guidance but don't embed in workflow
|
|
77
|
-
3. **Assume Pre-Installed** - Skip installation guidance (advanced users)
|
|
78
|
-
|
|
79
|
-
**Installation Prerequisites (if included):**
|
|
80
|
-
|
|
81
|
-
- Node.js 18+ (for Node.js-based MCPs)
|
|
82
|
-
- Python 3.8+ (for Python-based MCPs)
|
|
83
|
-
- Git for cloning repositories
|
|
84
|
-
- MCP-compatible AI client (Claude Desktop or similar)"
|
|
85
|
-
|
|
86
|
-
### 4. Configure Installation Guidance
|
|
87
|
-
|
|
88
|
-
If user chooses installation guidance:
|
|
89
|
-
|
|
90
|
-
"**Installation Step Configuration:**
|
|
91
|
-
|
|
92
|
-
For each tool requiring installation, the workflow will include:
|
|
93
|
-
|
|
94
|
-
- Clone/download instructions using URL from CSV
|
|
95
|
-
- Dependency installation commands
|
|
96
|
-
- Configuration file setup
|
|
97
|
-
- Server startup procedures
|
|
98
|
-
- Claude Desktop configuration steps
|
|
99
|
-
|
|
100
|
-
**Installation Checklist (if included):**
|
|
101
|
-
|
|
102
|
-
- [ ] Download and install Claude Desktop
|
|
103
|
-
- [ ] Clone MCP repositories
|
|
104
|
-
- [ ] Install required dependencies
|
|
105
|
-
- [ ] Configure MCP servers
|
|
106
|
-
- [ ] Add to Claude configuration
|
|
107
|
-
- [ ] Test connectivity
|
|
108
|
-
- [ ] Verify functionality"
|
|
109
|
-
|
|
110
|
-
### 5. Document Installation Configuration
|
|
111
|
-
|
|
112
|
-
Append to {workflowPlanFile}:
|
|
113
|
-
|
|
114
|
-
```markdown
|
|
115
|
-
## Installation Guidance Configuration
|
|
116
|
-
|
|
117
|
-
### Installation Approach
|
|
118
|
-
|
|
119
|
-
**Selected Approach:** [detailed steps/user instructions/assume pre-installed]
|
|
120
|
-
**Tools Requiring Installation:** [list with URLs]
|
|
121
|
-
**Installation Step Placement:** [early in workflow, after setup]
|
|
122
|
-
|
|
123
|
-
### Installation Content
|
|
124
|
-
|
|
125
|
-
**Prerequisites:** [system requirements]
|
|
126
|
-
**Setup Steps:** [commands and procedures]
|
|
127
|
-
**Verification:** [testing procedures]
|
|
128
|
-
**User Support:** [troubleshooting guidance]
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
### 6. Menu Options
|
|
132
|
-
|
|
133
|
-
Display: **Select an Option:** [C] Continue to Tools Summary [M] Modify Installation Approach
|
|
134
|
-
|
|
135
|
-
#### Menu Handling Logic:
|
|
136
|
-
|
|
137
|
-
- IF C: Append installation configuration to {workflowPlanFile}, update frontmatter, then load {nextStepFile}
|
|
138
|
-
- IF M: Refine installation approach
|
|
139
|
-
|
|
140
|
-
## CRITICAL STEP COMPLETION NOTE
|
|
141
|
-
|
|
142
|
-
ONLY WHEN C is selected and installation guidance is documented will you load {nextStepFile} to complete tools configuration.
|
|
143
|
-
|
|
144
|
-
---
|
|
145
|
-
|
|
146
|
-
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
147
|
-
|
|
148
|
-
### ✅ SUCCESS:
|
|
149
|
-
|
|
150
|
-
- Installation requirements clearly identified from CSV
|
|
151
|
-
- Installation approach configured based on user preference
|
|
152
|
-
- Documentation prepared for setup procedures
|
|
153
|
-
- User understands how tools will be installed
|
|
154
|
-
|
|
155
|
-
### ❌ SYSTEM FAILURE:
|
|
156
|
-
|
|
157
|
-
- Missing installation requirement assessment
|
|
158
|
-
- Not using URLs from CSV for installation guidance
|
|
159
|
-
- Proceeding without confirming installation approach
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-08-tools-summary'
|
|
3
|
-
description: 'Summarize tools configuration and proceed to workflow design'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/{bmad_folder}/bmb/workflows/create-workflow'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: '{workflow_path}/steps/step-08-tools-summary.md'
|
|
10
|
-
nextStepFile: '{workflow_path}/steps/step-09-design.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
workflowPlanFile: '{output_folder}/workflow-plan-{new_workflow_name}.md'
|
|
13
|
-
|
|
14
|
-
# Documentation References
|
|
15
|
-
commonToolsCsv: '{project-root}/{bmad_folder}/bmb/docs/workflows/common-workflow-tools.csv'
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
# Step 8: Tools Configuration Summary
|
|
19
|
-
|
|
20
|
-
## STEP GOAL:
|
|
21
|
-
|
|
22
|
-
Summarize the complete tools configuration and confirm readiness to proceed to workflow design.
|
|
23
|
-
|
|
24
|
-
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
25
|
-
|
|
26
|
-
### Universal Rules:
|
|
27
|
-
|
|
28
|
-
- 🛑 NEVER generate content without user input
|
|
29
|
-
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
30
|
-
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
31
|
-
|
|
32
|
-
### Role Reinforcement:
|
|
33
|
-
|
|
34
|
-
- ✅ You are a workflow architect and integration specialist
|
|
35
|
-
- ✅ We engage in collaborative dialogue, not command-response
|
|
36
|
-
- ✅ You bring expertise in tools integration and workflow optimization
|
|
37
|
-
|
|
38
|
-
## EXECUTION PROTOCOLS:
|
|
39
|
-
|
|
40
|
-
- 🎯 Compile complete tools configuration summary
|
|
41
|
-
- 💾 Present final configuration for user confirmation
|
|
42
|
-
- 📖 Update workflow plan with comprehensive summary
|
|
43
|
-
- 🚫 FORBIDDEN to proceed to design without user confirmation
|
|
44
|
-
|
|
45
|
-
## SEQUENCE OF INSTRUCTIONS:
|
|
46
|
-
|
|
47
|
-
### 1. Initialize Tools Summary
|
|
48
|
-
|
|
49
|
-
"**Tools Configuration Summary**
|
|
50
|
-
|
|
51
|
-
Let's review your complete tools configuration before proceeding to workflow design. This ensures all integrations are properly planned."
|
|
52
|
-
|
|
53
|
-
### 2. Present Complete Configuration
|
|
54
|
-
|
|
55
|
-
Load all previous configurations from {workflowPlanFile} and CSV:
|
|
56
|
-
|
|
57
|
-
"**Complete Tools Configuration:**
|
|
58
|
-
|
|
59
|
-
**Core BMAD Tools:**
|
|
60
|
-
|
|
61
|
-
- [List selected core tools with integration points]
|
|
62
|
-
- [Load descriptions from CSV for confirmation]
|
|
63
|
-
|
|
64
|
-
**LLM Tool Features:**
|
|
65
|
-
|
|
66
|
-
- [List selected LLM features with integration points]
|
|
67
|
-
- [Load descriptions from CSV for confirmation]
|
|
68
|
-
|
|
69
|
-
**Tool-Memory:**
|
|
70
|
-
|
|
71
|
-
- [Selected memory types with implementation details]
|
|
72
|
-
- [Load descriptions from CSV for confirmation]
|
|
73
|
-
|
|
74
|
-
**External Tools:**
|
|
75
|
-
|
|
76
|
-
- [List selected MCP integrations with URLs]
|
|
77
|
-
- [Load descriptions from CSV for confirmation]
|
|
78
|
-
- [Mark which require installation]
|
|
79
|
-
|
|
80
|
-
**Installation Guidance:**
|
|
81
|
-
|
|
82
|
-
- [Approach selected and tools included]
|
|
83
|
-
- [Setup steps configured as needed]
|
|
84
|
-
|
|
85
|
-
**Integration Strategy:**
|
|
86
|
-
|
|
87
|
-
- [How tools enhance rather than disrupt workflow]
|
|
88
|
-
- [Checkpoint approaches and user choice points]
|
|
89
|
-
- [Performance optimization opportunities]"
|
|
90
|
-
|
|
91
|
-
### 3. Final Configuration Confirmation
|
|
92
|
-
|
|
93
|
-
"**Final Configuration Review:**
|
|
94
|
-
|
|
95
|
-
**Your workflow will include:**
|
|
96
|
-
|
|
97
|
-
- **Total Tools:** [count of selected tools]
|
|
98
|
-
- **Core Tools:** [number selected]
|
|
99
|
-
- **External Tools:** [number selected]
|
|
100
|
-
- **Installation Required:** [yes/no, which tools]
|
|
101
|
-
|
|
102
|
-
**Key Integration Points:**
|
|
103
|
-
|
|
104
|
-
- [Major phases where tools enhance workflow]
|
|
105
|
-
- [User experience considerations]
|
|
106
|
-
- [Performance optimizations]
|
|
107
|
-
|
|
108
|
-
**Ready to proceed with this configuration?**"
|
|
109
|
-
|
|
110
|
-
### 4. Update Workflow Plan with Final Summary
|
|
111
|
-
|
|
112
|
-
Append to {workflowPlanFile}:
|
|
113
|
-
|
|
114
|
-
```markdown
|
|
115
|
-
## Final Tools Configuration Summary
|
|
116
|
-
|
|
117
|
-
### Tools Inventory
|
|
118
|
-
|
|
119
|
-
**Core BMAD Tools:** [count and list]
|
|
120
|
-
**LLM Features:** [count and list]
|
|
121
|
-
**Memory Implementation:** [type and use case]
|
|
122
|
-
**External Tools:** [count and list with URLs]
|
|
123
|
-
**Installation Required:** [tools and setup complexity]
|
|
124
|
-
|
|
125
|
-
### Integration Strategy
|
|
126
|
-
|
|
127
|
-
**User Experience:** [how tools enhance workflow]
|
|
128
|
-
**Checkpoint Approach:** [when tools are offered]
|
|
129
|
-
**Performance Optimization:** [efficiency improvements]
|
|
130
|
-
**Installation Strategy:** [how users prepare environment]
|
|
131
|
-
|
|
132
|
-
### Ready for Design
|
|
133
|
-
|
|
134
|
-
All tools configured and ready for workflow design phase.
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
### 5. Menu Options
|
|
138
|
-
|
|
139
|
-
Display: **Select an Option:** [C] Continue to Workflow Design [M] Modify Configuration
|
|
140
|
-
|
|
141
|
-
#### Menu Handling Logic:
|
|
142
|
-
|
|
143
|
-
- IF C: Save final summary, update frontmatter stepsCompleted: [3, 4, 5, 6, 7, 8], then load {nextStepFile}
|
|
144
|
-
- IF M: Return to specific configuration step
|
|
145
|
-
|
|
146
|
-
## CRITICAL STEP COMPLETION NOTE
|
|
147
|
-
|
|
148
|
-
ONLY WHEN C is selected and summary is saved will you load {nextStepFile} to begin workflow design phase.
|
|
149
|
-
|
|
150
|
-
---
|
|
151
|
-
|
|
152
|
-
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
153
|
-
|
|
154
|
-
### ✅ SUCCESS:
|
|
155
|
-
|
|
156
|
-
- Complete tools configuration summarized clearly
|
|
157
|
-
- All descriptions loaded from CSV (not duplicated)
|
|
158
|
-
- User confirms configuration before proceeding
|
|
159
|
-
- Frontmatter updated with completed steps
|
|
160
|
-
- Ready to proceed to workflow design
|
|
161
|
-
|
|
162
|
-
### ❌ SYSTEM FAILURE:
|
|
163
|
-
|
|
164
|
-
- Not presenting complete configuration summary
|
|
165
|
-
- Duplicating CSV content instead of referencing it
|
|
166
|
-
- Proceeding to design without user confirmation
|
|
167
|
-
- Not updating workflow plan with final summary
|
|
@@ -1,215 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-10-plan-review'
|
|
3
|
-
description: 'Review the complete workflow plan before generating files'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/{bmad_folder}/bmb/workflows/create-workflow'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: '{workflow_path}/steps/step-10-plan-review.md'
|
|
10
|
-
nextStepFile: '{workflow_path}/steps/step-11-build.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
# Output files for workflow creation process
|
|
13
|
-
workflowPlanFile: '{output_folder}/workflow-plan-{new_workflow_name}.md'
|
|
14
|
-
targetWorkflowPath: '{custom_workflow_location}/{new_workflow_name}'
|
|
15
|
-
|
|
16
|
-
# Task References
|
|
17
|
-
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
18
|
-
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
# Step 4: Workflow Plan Review
|
|
22
|
-
|
|
23
|
-
## STEP GOAL:
|
|
24
|
-
|
|
25
|
-
To present the complete workflow plan for user review and approval before generating the actual workflow files.
|
|
26
|
-
|
|
27
|
-
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
28
|
-
|
|
29
|
-
### Universal Rules:
|
|
30
|
-
|
|
31
|
-
- 🛑 NEVER generate content without user input
|
|
32
|
-
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
33
|
-
- 🔄 CRITICAL: Always read the complete step file before taking any action
|
|
34
|
-
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
35
|
-
|
|
36
|
-
### Role Reinforcement:
|
|
37
|
-
|
|
38
|
-
- ✅ You are a workflow architect and systems designer
|
|
39
|
-
- ✅ If you already have been given communication or persona patterns, continue to use those while playing this new role
|
|
40
|
-
- ✅ We engage in collaborative dialogue, not command-response
|
|
41
|
-
- ✅ You present the plan clearly and answer questions
|
|
42
|
-
- ✅ User provides approval or requests changes
|
|
43
|
-
|
|
44
|
-
### Step-Specific Rules:
|
|
45
|
-
|
|
46
|
-
- 🎯 Focus ONLY on reviewing the plan, not building yet
|
|
47
|
-
- 🚫 FORBIDDEN to generate any workflow files in this step
|
|
48
|
-
- 💬 Present the complete plan clearly and answer all questions
|
|
49
|
-
- 🚪 GET explicit approval before proceeding to build
|
|
50
|
-
|
|
51
|
-
## EXECUTION PROTOCOLS:
|
|
52
|
-
|
|
53
|
-
- 🎯 Present the complete workflow plan for review
|
|
54
|
-
- 💾 Update plan frontmatter with review status
|
|
55
|
-
- 📖 Only proceed to build step with explicit user approval
|
|
56
|
-
- 🚫 FORBIDDEN to skip review or proceed without consent
|
|
57
|
-
|
|
58
|
-
## CONTEXT BOUNDARIES:
|
|
59
|
-
|
|
60
|
-
- Requirements and design from previous steps are in the plan
|
|
61
|
-
- Focus ONLY on review and approval
|
|
62
|
-
- Don't modify the design significantly here
|
|
63
|
-
- This is the final checkpoint before file generation
|
|
64
|
-
|
|
65
|
-
## REVIEW REFERENCE MATERIALS:
|
|
66
|
-
|
|
67
|
-
When reviewing, you may load for comparison:
|
|
68
|
-
|
|
69
|
-
- Example workflow: `{project-root}/{bmad_folder}/bmb/reference/workflows/meal-prep-nutrition/workflow.md`
|
|
70
|
-
- Step examples from same workflow's steps folder
|
|
71
|
-
- Architecture guide: `{project-root}/{bmad_folder}/bmb/docs/workflows/architecture.md`
|
|
72
|
-
|
|
73
|
-
## PLAN REVIEW PROCESS:
|
|
74
|
-
|
|
75
|
-
### 1. Present the Complete Plan
|
|
76
|
-
|
|
77
|
-
Read the entire {workflowPlanFile} and present it to the user:
|
|
78
|
-
|
|
79
|
-
- Executive Summary
|
|
80
|
-
- Requirements Analysis
|
|
81
|
-
- Detailed Design
|
|
82
|
-
- Implementation Plan
|
|
83
|
-
- Target Location and file structure
|
|
84
|
-
|
|
85
|
-
### 2. Analyze Plan for Gaps and Issues
|
|
86
|
-
|
|
87
|
-
Perform systematic analysis of the loaded plan:
|
|
88
|
-
|
|
89
|
-
**Logical Flow Check:**
|
|
90
|
-
|
|
91
|
-
- Do requirements align with proposed solution?
|
|
92
|
-
- Are tools appropriate for the workflow type?
|
|
93
|
-
- Is step sequence logical and complete?
|
|
94
|
-
- Are there missing transitions between steps?
|
|
95
|
-
|
|
96
|
-
**Completeness Review:**
|
|
97
|
-
|
|
98
|
-
- All requirements captured and addressed?
|
|
99
|
-
- Design covers all user scenarios?
|
|
100
|
-
- Implementation plan includes all necessary files?
|
|
101
|
-
- Are there unclear or ambiguous specifications?
|
|
102
|
-
|
|
103
|
-
**Architecture Validation:**
|
|
104
|
-
|
|
105
|
-
- Follows BMAD step-file architecture?
|
|
106
|
-
- Proper use of template patterns?
|
|
107
|
-
- Menu flow is logical and complete?
|
|
108
|
-
- Variable naming is consistent?
|
|
109
|
-
|
|
110
|
-
**Issue Identification:**
|
|
111
|
-
If gaps or issues found:
|
|
112
|
-
|
|
113
|
-
- Clearly identify each issue
|
|
114
|
-
- Propose specific solutions
|
|
115
|
-
- Ask for user input on resolution approach
|
|
116
|
-
|
|
117
|
-
### 3. Present Menu for Plan Approval
|
|
118
|
-
|
|
119
|
-
Display: **Plan Review Complete - Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Continue to Build
|
|
120
|
-
|
|
121
|
-
### 4. Address Questions and Concerns
|
|
122
|
-
|
|
123
|
-
Ask for specific feedback:
|
|
124
|
-
|
|
125
|
-
- Does this plan fully address your requirements?
|
|
126
|
-
- Are there any missing aspects?
|
|
127
|
-
- Would you like any changes to the design?
|
|
128
|
-
- Are you satisfied with the proposed structure?
|
|
129
|
-
|
|
130
|
-
### 5. Confirm or Revise
|
|
131
|
-
|
|
132
|
-
Based on feedback:
|
|
133
|
-
|
|
134
|
-
- If approved: Proceed to build step
|
|
135
|
-
- If changes needed: Go back to design step with specific feedback
|
|
136
|
-
- If major revisions: Consider going back to requirements step
|
|
137
|
-
|
|
138
|
-
## REVIEW CHECKPOINTS:
|
|
139
|
-
|
|
140
|
-
### Requirements Coverage
|
|
141
|
-
|
|
142
|
-
- [ ] All user requirements addressed
|
|
143
|
-
- [ ] Success criteria defined
|
|
144
|
-
- [ ] Technical constraints considered
|
|
145
|
-
- [ ] User interaction level appropriate
|
|
146
|
-
|
|
147
|
-
### Design Quality
|
|
148
|
-
|
|
149
|
-
- [ ] Step flow is logical
|
|
150
|
-
- [ ] Instruction style chosen appropriately
|
|
151
|
-
- [ ] Menu systems designed properly
|
|
152
|
-
- [ ] Error handling included
|
|
153
|
-
|
|
154
|
-
### Implementation Feasibility
|
|
155
|
-
|
|
156
|
-
- [ ] File structure is clear
|
|
157
|
-
- [ ] Target location confirmed
|
|
158
|
-
- [ ] Templates identified correctly
|
|
159
|
-
- [ ] Dependencies documented
|
|
160
|
-
|
|
161
|
-
## PLAN APPROVAL:
|
|
162
|
-
|
|
163
|
-
### Explicit Confirmation Required
|
|
164
|
-
|
|
165
|
-
Before proceeding to build, get explicit confirmation:
|
|
166
|
-
"Based on this plan, I will generate:
|
|
167
|
-
|
|
168
|
-
- [List of files]
|
|
169
|
-
in [target location]"
|
|
170
|
-
|
|
171
|
-
Ready to proceed when you are! Select your option below to build or modify the plan.
|
|
172
|
-
|
|
173
|
-
### 6. Present MENU OPTIONS
|
|
174
|
-
|
|
175
|
-
Display: **Review Complete - Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Continue to Build
|
|
176
|
-
|
|
177
|
-
#### EXECUTION RULES:
|
|
178
|
-
|
|
179
|
-
- ALWAYS halt and wait for user input after presenting menu
|
|
180
|
-
- ONLY proceed to build step with explicit 'C' selection AND approval
|
|
181
|
-
- After other menu items execution, return to this menu
|
|
182
|
-
- User can chat or ask questions - always respond and then end with display again of the menu options
|
|
183
|
-
- Use menu handling logic section below
|
|
184
|
-
|
|
185
|
-
#### Menu Handling Logic:
|
|
186
|
-
|
|
187
|
-
- IF A: Execute {advancedElicitationTask}
|
|
188
|
-
- IF P: Execute {partyModeWorkflow}
|
|
189
|
-
- IF C: AND user has approved the plan, update plan frontmatter, then load, read entire file, then execute {nextStepFile}
|
|
190
|
-
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#6-present-menu-options)
|
|
191
|
-
|
|
192
|
-
## CRITICAL STEP COMPLETION NOTE
|
|
193
|
-
|
|
194
|
-
ONLY WHEN C is selected AND user has explicitly approved the plan, will you then update the plan frontmatter and load, read entire file, then execute {nextStepFile} to execute and begin workflow file generation step.
|
|
195
|
-
|
|
196
|
-
---
|
|
197
|
-
|
|
198
|
-
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
199
|
-
|
|
200
|
-
### ✅ SUCCESS:
|
|
201
|
-
|
|
202
|
-
- Complete plan presented clearly
|
|
203
|
-
- All user questions answered
|
|
204
|
-
- Feedback collected and documented
|
|
205
|
-
- Explicit approval received (or revisions planned)
|
|
206
|
-
- Plan ready for implementation
|
|
207
|
-
|
|
208
|
-
### ❌ SYSTEM FAILURE:
|
|
209
|
-
|
|
210
|
-
- Skipping the review presentation
|
|
211
|
-
- Proceeding without explicit approval
|
|
212
|
-
- Not answering user questions
|
|
213
|
-
- Rushing through the review process
|
|
214
|
-
|
|
215
|
-
**Master Rule:** Skipping steps, optimizing sequences, or not following exact instructions is FORBIDDEN and constitutes SYSTEM FAILURE.
|