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/bmb/workflows/create-workflow/steps/{step-12-review.md → step-08-review.md}
RENAMED
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: 'step-
|
|
2
|
+
name: 'step-08-review'
|
|
3
3
|
description: 'Review the generated workflow and provide final validation and next steps'
|
|
4
4
|
|
|
5
5
|
# Path Definitions
|
|
6
6
|
workflow_path: '{project-root}/{bmad_folder}/bmb/workflows/create-workflow'
|
|
7
7
|
|
|
8
8
|
# File References
|
|
9
|
-
thisStepFile: '{workflow_path}/steps/step-
|
|
9
|
+
thisStepFile: '{workflow_path}/steps/step-08-review.md'
|
|
10
10
|
workflowFile: '{workflow_path}/workflow.md'
|
|
11
|
+
|
|
11
12
|
# Output files for workflow creation process
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
targetWorkflowPath: '{custom_stand_alone_location}/workflows/{new_workflow_name}'
|
|
14
|
+
workflowPlanFile: '{targetWorkflowPath}/workflow-plan-{new_workflow_name}.md'
|
|
14
15
|
|
|
15
16
|
# Task References
|
|
16
17
|
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
17
18
|
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
18
19
|
|
|
19
20
|
# Template References
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
# No review template needed - will append review summary directly to workflow plan
|
|
22
|
+
# No completion template needed - will append completion details directly
|
|
23
|
+
|
|
24
|
+
# Next step reference
|
|
25
|
+
nextStepFile: '{workflow_path}/steps/step-09-complete.md'
|
|
22
26
|
---
|
|
23
27
|
|
|
24
|
-
# Step
|
|
28
|
+
# Step 8: Workflow Review and Completion
|
|
25
29
|
|
|
26
30
|
## STEP GOAL:
|
|
27
31
|
|
|
@@ -55,7 +59,7 @@ To review the generated workflow for completeness, accuracy, and adherence to be
|
|
|
55
59
|
|
|
56
60
|
- 🎯 Conduct thorough review of generated workflow
|
|
57
61
|
- 💾 Document review findings and completion status
|
|
58
|
-
- 📖 Update frontmatter `stepsCompleted: [1, 2, 3, 4, 5]` and mark complete
|
|
62
|
+
- 📖 Update frontmatter `stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8]` and mark complete
|
|
59
63
|
- 🚫 This is the final step - no next step to load
|
|
60
64
|
|
|
61
65
|
## CONTEXT BOUNDARIES:
|
|
@@ -197,26 +201,36 @@ Provide specific recommendations:
|
|
|
197
201
|
|
|
198
202
|
After completing review, append to {workflowPlanFile}:
|
|
199
203
|
|
|
200
|
-
|
|
204
|
+
Append review findings to {workflowPlanFile}:
|
|
205
|
+
|
|
206
|
+
Create a review summary including:
|
|
207
|
+
|
|
208
|
+
- Completeness check results
|
|
209
|
+
- Accuracy validation
|
|
210
|
+
- Compliance with best practices
|
|
211
|
+
- Any issues found
|
|
212
|
+
|
|
213
|
+
Then append completion details:
|
|
201
214
|
|
|
202
|
-
|
|
215
|
+
- Final approval status
|
|
216
|
+
- Deployment recommendations
|
|
217
|
+
- Usage guidance
|
|
203
218
|
|
|
204
|
-
|
|
219
|
+
### 10. Present MENU OPTIONS
|
|
205
220
|
|
|
206
|
-
Display: **
|
|
221
|
+
Display: **Select an Option:** [C] Continue to Completion
|
|
207
222
|
|
|
208
223
|
#### EXECUTION RULES:
|
|
209
224
|
|
|
210
225
|
- ALWAYS halt and wait for user input after presenting menu
|
|
211
|
-
-
|
|
212
|
-
- After other menu items execution, return to this menu
|
|
226
|
+
- ONLY proceed to next step when user selects 'C'
|
|
213
227
|
- User can chat or ask questions - always respond and then end with display again of the menu options
|
|
214
228
|
- Use menu handling logic section below
|
|
215
229
|
|
|
216
230
|
#### Menu Handling Logic:
|
|
217
231
|
|
|
218
|
-
- IF C: Save
|
|
219
|
-
- IF Any other comments or queries: respond
|
|
232
|
+
- IF C: Save review to {workflowPlanFile}, update frontmatter, then load, read entire file, then execute {nextStepFile}
|
|
233
|
+
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#10-present-menu-options)
|
|
220
234
|
|
|
221
235
|
## COMPLIANCE CHECK INSTRUCTIONS
|
|
222
236
|
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'step-09-complete'
|
|
3
|
+
description: 'Final completion and wrap-up of workflow creation process'
|
|
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-09-complete.md'
|
|
10
|
+
workflowFile: '{workflow_path}/workflow.md'
|
|
11
|
+
# Output files for workflow creation process
|
|
12
|
+
targetWorkflowPath: '{custom_stand_alone_location}/workflows/{new_workflow_name}'
|
|
13
|
+
workflowPlanFile: '{targetWorkflowPath}/workflow-plan-{new_workflow_name}.md'
|
|
14
|
+
completionFile: '{targetWorkflowPath}/completion-summary-{new_workflow_name}.md'
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Step 9: Workflow Creation Complete
|
|
18
|
+
|
|
19
|
+
## STEP GOAL:
|
|
20
|
+
|
|
21
|
+
To complete the workflow creation process with a final summary, confirmation, and next steps for using the new workflow.
|
|
22
|
+
|
|
23
|
+
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
24
|
+
|
|
25
|
+
### Universal Rules:
|
|
26
|
+
|
|
27
|
+
- 🛑 NEVER generate content without user input
|
|
28
|
+
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
29
|
+
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
30
|
+
|
|
31
|
+
### Role Reinforcement:
|
|
32
|
+
|
|
33
|
+
- ✅ You are a workflow architect and systems designer
|
|
34
|
+
- ✅ If you already have been given communication or persona patterns, continue to use those while playing this new role
|
|
35
|
+
- ✅ We engage in collaborative dialogue, not command-response
|
|
36
|
+
- ✅ You bring expertise in workflow deployment and usage guidance
|
|
37
|
+
- ✅ User brings their specific workflow needs
|
|
38
|
+
|
|
39
|
+
### Step-Specific Rules:
|
|
40
|
+
|
|
41
|
+
- 🎯 Focus ONLY on completion and next steps
|
|
42
|
+
- 🚫 FORBIDDEN to modify the generated workflow
|
|
43
|
+
- 💬 Provide clear guidance on how to use the workflow
|
|
44
|
+
- 🚫 This is the final step - no next step to load
|
|
45
|
+
|
|
46
|
+
## EXECUTION PROTOCOLS:
|
|
47
|
+
|
|
48
|
+
- 🎯 Present completion summary
|
|
49
|
+
- 💾 Create final completion documentation
|
|
50
|
+
- 📖 Update plan frontmatter with completion status
|
|
51
|
+
- 🚫 This is the final step
|
|
52
|
+
|
|
53
|
+
## CONTEXT BOUNDARIES:
|
|
54
|
+
|
|
55
|
+
- All previous steps are complete
|
|
56
|
+
- Workflow has been generated and reviewed
|
|
57
|
+
- Focus ONLY on completion and next steps
|
|
58
|
+
- This step concludes the create-workflow process
|
|
59
|
+
|
|
60
|
+
## COMPLETION PROCESS:
|
|
61
|
+
|
|
62
|
+
### 1. Initialize Completion
|
|
63
|
+
|
|
64
|
+
"**Workflow Creation Complete!**
|
|
65
|
+
|
|
66
|
+
Congratulations! We've successfully created your new workflow. Let's finalize everything and ensure you have everything you need to start using it."
|
|
67
|
+
|
|
68
|
+
### 2. Final Summary
|
|
69
|
+
|
|
70
|
+
Present a complete summary of what was created:
|
|
71
|
+
|
|
72
|
+
**Workflow Created:** {new_workflow_name}
|
|
73
|
+
**Location:** {targetWorkflowPath}
|
|
74
|
+
**Files Generated:** [list from build step]
|
|
75
|
+
|
|
76
|
+
### 3. Create Completion Summary
|
|
77
|
+
|
|
78
|
+
Create {completionFile} with:
|
|
79
|
+
|
|
80
|
+
```markdown
|
|
81
|
+
---
|
|
82
|
+
workflowName: { new_workflow_name }
|
|
83
|
+
creationDate: [current date]
|
|
84
|
+
module: [module from plan]
|
|
85
|
+
status: COMPLETE
|
|
86
|
+
stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
# Workflow Creation Summary
|
|
90
|
+
|
|
91
|
+
## Workflow Information
|
|
92
|
+
|
|
93
|
+
- **Name:** {new_workflow_name}
|
|
94
|
+
- **Module:** [module]
|
|
95
|
+
- **Created:** [date]
|
|
96
|
+
- **Location:** {targetWorkflowPath}
|
|
97
|
+
|
|
98
|
+
## Generated Files
|
|
99
|
+
|
|
100
|
+
[List all files created]
|
|
101
|
+
|
|
102
|
+
## Quick Start Guide
|
|
103
|
+
|
|
104
|
+
[How to run the new workflow]
|
|
105
|
+
|
|
106
|
+
## Next Steps
|
|
107
|
+
|
|
108
|
+
[Post-creation recommendations]
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### 4. Usage Guidance
|
|
112
|
+
|
|
113
|
+
Provide clear instructions on how to use the new workflow:
|
|
114
|
+
|
|
115
|
+
**How to Use Your New Workflow:**
|
|
116
|
+
|
|
117
|
+
1. **Running the Workflow:**
|
|
118
|
+
- [Instructions based on workflow type]
|
|
119
|
+
- [Initial setup if needed]
|
|
120
|
+
|
|
121
|
+
2. **Common Use Cases:**
|
|
122
|
+
- [Typical scenarios for using the workflow]
|
|
123
|
+
- [Expected inputs and outputs]
|
|
124
|
+
|
|
125
|
+
3. **Tips for Success:**
|
|
126
|
+
- [Best practices for this specific workflow]
|
|
127
|
+
- [Common pitfalls to avoid]
|
|
128
|
+
|
|
129
|
+
### 5. Post-Creation Recommendations
|
|
130
|
+
|
|
131
|
+
"**Next Steps:**
|
|
132
|
+
|
|
133
|
+
1. **Test the Workflow:** Run it with sample data to ensure it works as expected
|
|
134
|
+
2. **Customize if Needed:** You can modify the workflow based on your specific needs
|
|
135
|
+
3. **Share with Team:** If others will use this workflow, provide them with the location and instructions
|
|
136
|
+
4. **Monitor Usage:** Keep track of how well the workflow meets your needs"
|
|
137
|
+
|
|
138
|
+
### 6. Final Confirmation
|
|
139
|
+
|
|
140
|
+
"**Is there anything else you need help with regarding your new workflow?**
|
|
141
|
+
|
|
142
|
+
- I can help you test it
|
|
143
|
+
- We can make adjustments if needed
|
|
144
|
+
- I can help you create documentation for users
|
|
145
|
+
- Or any other support you need"
|
|
146
|
+
|
|
147
|
+
### 7. Update Final Status
|
|
148
|
+
|
|
149
|
+
Update {workflowPlanFile} frontmatter:
|
|
150
|
+
|
|
151
|
+
- Set status to COMPLETE
|
|
152
|
+
- Set completion date
|
|
153
|
+
- Add stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
154
|
+
|
|
155
|
+
## MENU OPTIONS
|
|
156
|
+
|
|
157
|
+
Display: **Workflow Creation Complete!** [T] Test Workflow [M] Make Adjustments [D] Get Help
|
|
158
|
+
|
|
159
|
+
### Menu Handling Logic:
|
|
160
|
+
|
|
161
|
+
- IF T: Offer to run the newly created workflow with sample data
|
|
162
|
+
- IF M: Offer to make specific adjustments to the workflow
|
|
163
|
+
- IF D: Provide additional help and resources
|
|
164
|
+
- IF Any other: Respond to user needs
|
|
165
|
+
|
|
166
|
+
## CRITICAL STEP COMPLETION NOTE
|
|
167
|
+
|
|
168
|
+
This is the final step. When the user is satisfied, the workflow creation process is complete.
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
173
|
+
|
|
174
|
+
### ✅ SUCCESS:
|
|
175
|
+
|
|
176
|
+
- Workflow fully created and reviewed
|
|
177
|
+
- Completion summary generated
|
|
178
|
+
- User understands how to use the workflow
|
|
179
|
+
- All documentation is in place
|
|
180
|
+
|
|
181
|
+
### ❌ SYSTEM FAILURE:
|
|
182
|
+
|
|
183
|
+
- Not providing clear usage instructions
|
|
184
|
+
- Not creating completion summary
|
|
185
|
+
- Leaving user without next steps
|
|
186
|
+
|
|
187
|
+
**Master Rule:** Ensure the user has everything needed to successfully use their new workflow.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: create-workflow
|
|
3
3
|
description: Create structured standalone workflows using markdown-based step architecture
|
|
4
4
|
web_bundle: true
|
|
5
5
|
---
|
|
@@ -51,7 +51,7 @@ This uses **step-file architecture** for disciplined execution:
|
|
|
51
51
|
|
|
52
52
|
Load and read full config from {project-root}/{bmad_folder}/bmb/config.yaml and resolve:
|
|
53
53
|
|
|
54
|
-
- `project_name`, `output_folder`, `user_name`, `communication_language`, `document_output_language`, `
|
|
54
|
+
- `project_name`, `output_folder`, `user_name`, `communication_language`, `document_output_language`, `custom_stand_alone_location`
|
|
55
55
|
|
|
56
56
|
### 2. First Step EXECUTION
|
|
57
57
|
|
|
@@ -10,8 +10,8 @@ thisStepFile: '{workflow_path}/steps/step-01-discover-intent.md'
|
|
|
10
10
|
nextStepFile: '{workflow_path}/steps/step-02-analyze-agent.md'
|
|
11
11
|
|
|
12
12
|
# Task References
|
|
13
|
-
advancedElicitationTask: '{project-root}
|
|
14
|
-
partyModeWorkflow: '{project-root}
|
|
13
|
+
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
14
|
+
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
15
15
|
---
|
|
16
16
|
|
|
17
17
|
# Step 1: Discover Edit Intent
|
|
@@ -10,20 +10,20 @@ thisStepFile: '{workflow_path}/steps/step-02-analyze-agent.md'
|
|
|
10
10
|
nextStepFile: '{workflow_path}/steps/step-03-propose-changes.md'
|
|
11
11
|
|
|
12
12
|
# Task References
|
|
13
|
-
advancedElicitationTask: '{project-root}
|
|
14
|
-
partyModeWorkflow: '{project-root}
|
|
13
|
+
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
14
|
+
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
15
15
|
|
|
16
16
|
# Documentation References (load JIT based on user goals)
|
|
17
|
-
understanding_agent_types: '{project-root}
|
|
18
|
-
agent_compilation: '{project-root}
|
|
19
|
-
simple_architecture: '{project-root}
|
|
20
|
-
expert_architecture: '{project-root}
|
|
21
|
-
module_architecture: '{project-root}
|
|
22
|
-
menu_patterns: '{project-root}
|
|
23
|
-
communication_presets: '{project-root}
|
|
24
|
-
reference_simple_agent: '{project-root}
|
|
25
|
-
reference_expert_agent: '{project-root}
|
|
26
|
-
validation: '{project-root}
|
|
17
|
+
understanding_agent_types: '{project-root}/{bmad_folder}/bmb/docs/agents/understanding-agent-types.md'
|
|
18
|
+
agent_compilation: '{project-root}/{bmad_folder}/bmb/docs/agents/agent-compilation.md'
|
|
19
|
+
simple_architecture: '{project-root}/{bmad_folder}/bmb/docs/agents/simple-agent-architecture.md'
|
|
20
|
+
expert_architecture: '{project-root}/{bmad_folder}/bmb/docs/agents/expert-agent-architecture.md'
|
|
21
|
+
module_architecture: '{project-root}/{bmad_folder}/bmb/docs/agents/module-agent-architecture.md'
|
|
22
|
+
menu_patterns: '{project-root}/{bmad_folder}/bmb/docs/agents/agent-menu-patterns.md'
|
|
23
|
+
communication_presets: '{project-root}/{bmad_folder}/bmb/workflows/create-agent/data/communication-presets.csv'
|
|
24
|
+
reference_simple_agent: '{project-root}/{bmad_folder}/bmb/reference/agents/simple-examples/commit-poet.agent.yaml'
|
|
25
|
+
reference_expert_agent: '{project-root}/{bmad_folder}/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml'
|
|
26
|
+
validation: '{project-root}/{bmad_folder}/bmb/workflows/create-agent/data/agent-validation-checklist.md'
|
|
27
27
|
---
|
|
28
28
|
|
|
29
29
|
# Step 2: Analyze Agent
|
|
@@ -85,9 +85,9 @@ Load the agent file from the path provided in step 1:
|
|
|
85
85
|
|
|
86
86
|
- Load and read the .agent.yaml file from inside the folder
|
|
87
87
|
- Inventory all sidecar files in the folder:
|
|
88
|
-
- Templates (_.md
|
|
88
|
+
- Templates (`_.md`, `_.txt`)
|
|
89
89
|
- Documentation files
|
|
90
|
-
- Knowledge base files (_.csv
|
|
90
|
+
- Knowledge base files (`_.csv`, `_.json`, `*.yaml`)
|
|
91
91
|
- Any other resources referenced by the agent
|
|
92
92
|
- Note: Expert agent with sidecar structure
|
|
93
93
|
|
|
@@ -11,12 +11,12 @@ nextStepFile: '{workflow_path}/steps/step-04-apply-changes.md'
|
|
|
11
11
|
agentFile: '{{agent_path}}'
|
|
12
12
|
|
|
13
13
|
# Task References
|
|
14
|
-
advancedElicitationTask: '{project-root}
|
|
15
|
-
partyModeWorkflow: '{project-root}
|
|
14
|
+
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
15
|
+
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
16
16
|
|
|
17
17
|
# Documentation References (load JIT if needed)
|
|
18
|
-
communication_presets: '{project-root}
|
|
19
|
-
agent_compilation: '{project-root}
|
|
18
|
+
communication_presets: '{project-root}/{bmad_folder}/bmb/workflows/create-agent/data/communication-presets.csv'
|
|
19
|
+
agent_compilation: '{project-root}/{bmad_folder}/bmb/docs/agents/agent-compilation.md'
|
|
20
20
|
---
|
|
21
21
|
|
|
22
22
|
# Step 3: Propose Changes
|
|
@@ -11,8 +11,8 @@ agentFile: '{{agent_path}}'
|
|
|
11
11
|
nextStepFile: '{workflow_path}/steps/step-05-validate.md'
|
|
12
12
|
|
|
13
13
|
# Task References
|
|
14
|
-
advancedElicitationTask: '{project-root}
|
|
15
|
-
partyModeWorkflow: '{project-root}
|
|
14
|
+
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
15
|
+
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
16
16
|
---
|
|
17
17
|
|
|
18
18
|
# Step 4: Apply Changes
|
|
@@ -10,12 +10,12 @@ thisStepFile: '{workflow_path}/steps/step-05-validate.md'
|
|
|
10
10
|
agentFile: '{{agent_path}}'
|
|
11
11
|
|
|
12
12
|
# Task References
|
|
13
|
-
advancedElicitationTask: '{project-root}
|
|
14
|
-
partyModeWorkflow: '{project-root}
|
|
13
|
+
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
14
|
+
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
15
15
|
|
|
16
16
|
# Documentation References (load JIT)
|
|
17
|
-
validation: '{project-root}
|
|
18
|
-
agent_compilation: '{project-root}
|
|
17
|
+
validation: '{project-root}/{bmad_folder}/bmb/workflows/create-agent/data/agent-validation-checklist.md'
|
|
18
|
+
agent_compilation: '{project-root}/{bmad_folder}/bmb/docs/agents/agent-compilation.md'
|
|
19
19
|
---
|
|
20
20
|
|
|
21
21
|
# Step 5: Validate Changes
|
|
@@ -11,10 +11,6 @@ nextStepFile: '{workflow_path}/steps/step-02-discover.md'
|
|
|
11
11
|
workflowFile: '{workflow_path}/workflow.md'
|
|
12
12
|
outputFile: '{output_folder}/workflow-edit-{target_workflow_name}.md'
|
|
13
13
|
|
|
14
|
-
# Task References
|
|
15
|
-
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
16
|
-
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
17
|
-
|
|
18
14
|
# Template References
|
|
19
15
|
analysisTemplate: '{workflow_path}/templates/workflow-analysis.md'
|
|
20
16
|
---
|
|
@@ -134,8 +130,8 @@ Based on what the user wants to edit:
|
|
|
134
130
|
Load reference documentation as needed:
|
|
135
131
|
|
|
136
132
|
- `{project-root}/{bmad_folder}/bmb/docs/workflows/architecture.md`
|
|
137
|
-
- `{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md`
|
|
138
|
-
- `{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md`
|
|
133
|
+
- `{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md`
|
|
134
|
+
- `{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md`
|
|
139
135
|
|
|
140
136
|
Check against best practices:
|
|
141
137
|
|
|
@@ -69,8 +69,8 @@ To facilitate collaborative improvements to the workflow, working iteratively on
|
|
|
69
69
|
|
|
70
70
|
Load documentation as needed for specific improvements:
|
|
71
71
|
|
|
72
|
-
- `{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md`
|
|
73
|
-
- `{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md`
|
|
72
|
+
- `{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md`
|
|
73
|
+
- `{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md`
|
|
74
74
|
- `{project-root}/{bmad_folder}/bmb/docs/workflows/architecture.md`
|
|
75
75
|
|
|
76
76
|
### 2. Address Each Improvement Iteratively
|
|
@@ -152,7 +152,7 @@ Then load and append content from {completionTemplate}
|
|
|
152
152
|
|
|
153
153
|
Display: **Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Continue
|
|
154
154
|
|
|
155
|
-
|
|
155
|
+
### EXECUTION RULES:
|
|
156
156
|
|
|
157
157
|
- ALWAYS halt and wait for user input after presenting menu
|
|
158
158
|
- ONLY proceed to next step when user selects 'C'
|
|
@@ -15,8 +15,8 @@ complianceReportFile: '{output_folder}/workflow-compliance-report-{workflow_name
|
|
|
15
15
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
16
16
|
|
|
17
17
|
# Documentation References
|
|
18
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
19
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
18
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
19
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
20
20
|
---
|
|
21
21
|
|
|
22
22
|
# Step 1: Goal Confirmation and Workflow Target
|
package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md
CHANGED
|
@@ -16,8 +16,8 @@ targetWorkflowFile: '{target_workflow_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
---
|
|
22
22
|
|
|
23
23
|
# Step 2: Workflow.md Validation
|
|
@@ -132,10 +132,10 @@ For each deviation:
|
|
|
132
132
|
|
|
133
133
|
"**Initialization Validation:**"
|
|
134
134
|
|
|
135
|
-
- Configuration Loading uses correct path format: `{project-root}/{bmad_folder}/[module]/config.yaml` (variable substitution pattern)
|
|
135
|
+
- Configuration Loading uses correct path format: `{project-root}/{*bmad_folder*}/[module]/config.yaml` (variable substitution pattern)
|
|
136
136
|
- First step follows pattern: `step-01-init.md` OR documented deviation
|
|
137
137
|
- Required config variables properly listed
|
|
138
|
-
- Variables use proper substitution pattern: {project-root}, {
|
|
138
|
+
- Variables use proper substitution pattern: {project-root}, {_bmad_folder_}, {workflow_path}, etc.
|
|
139
139
|
|
|
140
140
|
For violations:
|
|
141
141
|
|
|
@@ -198,7 +198,7 @@ Append to {complianceReportFile}:
|
|
|
198
198
|
|
|
199
199
|
"**Phase 1 Complete:** Workflow.md validation finished with detailed violation analysis.
|
|
200
200
|
|
|
201
|
-
**Ready for Phase
|
|
201
|
+
**Ready for Phase 3:** Step-by-step validation against step-template.md
|
|
202
202
|
|
|
203
203
|
This will check each step file for:
|
|
204
204
|
|
package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md
CHANGED
|
@@ -16,8 +16,8 @@ targetWorkflowStepsPath: '{target_workflow_steps_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
---
|
|
22
22
|
|
|
23
23
|
# Step 3: Step-by-Step Validation
|
|
@@ -138,8 +138,8 @@ Check for proper references:
|
|
|
138
138
|
|
|
139
139
|
```yaml
|
|
140
140
|
# Task References
|
|
141
|
-
advancedElicitationTask: '{project-root}/{bmad_folder}/core/tasks/advanced-elicitation.xml'
|
|
142
|
-
partyModeWorkflow: '{project-root}/{bmad_folder}/core/workflows/party-mode/workflow.md'
|
|
141
|
+
advancedElicitationTask: '{project-root}/{*bmad_folder*}/core/tasks/advanced-elicitation.xml'
|
|
142
|
+
partyModeWorkflow: '{project-root}/{*bmad_folder*}/core/workflows/party-mode/workflow.md'
|
|
143
143
|
```
|
|
144
144
|
|
|
145
145
|
**Violations to document:**
|
|
@@ -186,7 +186,7 @@ For each step:
|
|
|
186
186
|
|
|
187
187
|
"**Path Variable Validation:**"
|
|
188
188
|
|
|
189
|
-
- Check format: `{project-root}/{bmad_folder}/bmb/...` vs `{project-root}/src/modules/bmb/...`
|
|
189
|
+
- Check format: `{project-root}/{*bmad_folder*}/bmb/...` vs `{project-root}/src/modules/bmb/...`
|
|
190
190
|
- Ensure consistent variable usage across all step files
|
|
191
191
|
- Validate relative vs absolute path usage
|
|
192
192
|
|
|
@@ -232,13 +232,13 @@ For each step file with violations:
|
|
|
232
232
|
2. [Second most frequent]
|
|
233
233
|
3. [Third most frequent]
|
|
234
234
|
|
|
235
|
-
**Ready for Phase
|
|
235
|
+
**Ready for Phase 4:** File Validation workflow analysis
|
|
236
236
|
|
|
237
237
|
- Flow optimization assessment
|
|
238
238
|
- Goal alignment verification
|
|
239
239
|
- Meta-workflow failure analysis
|
|
240
240
|
|
|
241
|
-
**Select an Option:** [C] Continue to
|
|
241
|
+
**Select an Option:** [C] Continue to File Validation [X] Exit"
|
|
242
242
|
|
|
243
243
|
## Menu Handling Logic:
|
|
244
244
|
|
package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md
CHANGED
|
@@ -16,8 +16,8 @@ targetWorkflowPath: '{target_workflow_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
csvStandards: '{project-root}/{bmad_folder}/bmb/docs/workflows/csv-data-file-standards.md'
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -253,7 +253,7 @@ For each file with issues:
|
|
|
253
253
|
- **Formatting Standards:** [summary of markdown compliance issues]
|
|
254
254
|
- **Data Validation:** [summary of CSV standards compliance]
|
|
255
255
|
|
|
256
|
-
**Ready for Phase 5:**
|
|
256
|
+
**Ready for Phase 5:** Intent Spectrum Validation analysis
|
|
257
257
|
|
|
258
258
|
- Flow validation and goal alignment
|
|
259
259
|
- Meta-workflow failure analysis
|
|
@@ -16,8 +16,8 @@ targetWorkflowPath: '{target_workflow_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
intentSpectrum: '{project-root}/{bmad_folder}/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md'
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -222,7 +222,7 @@ Append to {complianceReportFile}:
|
|
|
222
222
|
- **User Understanding:** Confirmed implications and benefits
|
|
223
223
|
- **Implementation Ready:** Guidance provided for maintaining position
|
|
224
224
|
|
|
225
|
-
**Ready for Phase 6:**
|
|
225
|
+
**Ready for Phase 6:** Web Subprocess Validation analysis
|
|
226
226
|
|
|
227
227
|
- Flow validation and completion paths
|
|
228
228
|
- Goal alignment and optimization assessment
|
|
@@ -16,8 +16,8 @@ targetWorkflowStepsPath: '{target_workflow_steps_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
intentSpectrum: '{project-root}/{bmad_folder}/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md'
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -315,7 +315,7 @@ Append to {complianceReportFile}:
|
|
|
315
315
|
- **Performance Impact:** [expected efficiency gains]
|
|
316
316
|
- **User Experience Benefits:** [specific improvements]
|
|
317
317
|
|
|
318
|
-
**Ready for Phase
|
|
318
|
+
**Ready for Phase 7:** Holistic workflow analysis
|
|
319
319
|
|
|
320
320
|
- Flow validation and completion paths
|
|
321
321
|
- Goal alignment with optimized resources
|
package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md
CHANGED
|
@@ -16,8 +16,8 @@ targetWorkflowFile: '{target_workflow_path}'
|
|
|
16
16
|
complianceReportTemplate: '{workflow_path}/templates/compliance-report.md'
|
|
17
17
|
|
|
18
18
|
# Documentation References
|
|
19
|
-
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/step-template.md'
|
|
20
|
-
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/workflow-template.md'
|
|
19
|
+
stepTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/step-template.md'
|
|
20
|
+
workflowTemplate: '{project-root}/{bmad_folder}/bmb/docs/workflows/templates/workflow-template.md'
|
|
21
21
|
intentSpectrum: '{project-root}/{bmad_folder}/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md'
|
|
22
22
|
---
|
|
23
23
|
|
|
@@ -215,7 +215,7 @@ Evaluate workflow from user perspective:
|
|
|
215
215
|
- **Optimization Opportunities:** [number key improvements identified]
|
|
216
216
|
- **Meta-Workflow Failures:** [number issues that should have been prevented]
|
|
217
217
|
|
|
218
|
-
**Ready for Phase
|
|
218
|
+
**Ready for Phase 8:** Comprehensive compliance report generation
|
|
219
219
|
|
|
220
220
|
- All findings compiled into structured report
|
|
221
221
|
- Severity-ranked violation list
|