bmad-method 6.0.0-alpha.9 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.augment/code_review_guidelines.yaml +271 -0
- package/.claude/skills/bmad-os-changelog-social/SKILL.md +178 -0
- package/.claude/skills/bmad-os-changelog-social/examples/discord-example.md +53 -0
- package/.claude/skills/bmad-os-changelog-social/examples/linkedin-example.md +49 -0
- package/.claude/skills/bmad-os-changelog-social/examples/twitter-example.md +55 -0
- package/.claude/skills/bmad-os-diataxis-style-fix/SKILL.md +7 -0
- package/.claude/skills/bmad-os-diataxis-style-fix/prompts/instructions.md +229 -0
- package/.claude/skills/bmad-os-draft-changelog/SKILL.md +7 -0
- package/.claude/skills/bmad-os-draft-changelog/prompts/instructions.md +82 -0
- package/.claude/skills/bmad-os-gh-triage/README.md +14 -0
- package/.claude/skills/bmad-os-gh-triage/SKILL.md +12 -0
- package/.claude/skills/bmad-os-gh-triage/prompts/agent-prompt.md +60 -0
- package/.claude/skills/bmad-os-gh-triage/prompts/instructions.md +74 -0
- package/.claude/skills/bmad-os-release-module/README.md +24 -0
- package/.claude/skills/bmad-os-release-module/SKILL.md +7 -0
- package/.claude/skills/bmad-os-release-module/prompts/instructions.md +53 -0
- package/.coderabbit.yaml +85 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
- package/.github/ISSUE_TEMPLATE/config.yaml +5 -2
- package/.github/ISSUE_TEMPLATE/documentation.yaml +55 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +22 -0
- package/.github/ISSUE_TEMPLATE/issue.md +32 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- package/.github/scripts/discord-helpers.sh +34 -0
- package/.github/workflows/coderabbit-review.yaml +22 -0
- package/.github/workflows/discord.yaml +82 -8
- package/.github/workflows/docs.yaml +64 -0
- package/.github/workflows/quality.yaml +40 -2
- package/.husky/pre-commit +13 -0
- package/.markdownlint-cli2.yaml +41 -0
- package/.prettierignore +7 -0
- package/.vscode/settings.json +4 -3
- package/CHANGELOG.md +1074 -674
- package/CNAME +1 -0
- package/CONTRIBUTING.md +97 -189
- package/CONTRIBUTORS.md +32 -0
- package/LICENSE +7 -3
- package/README.md +51 -396
- package/SECURITY.md +85 -0
- package/TRADEMARK.md +55 -0
- package/Wordmark.png +0 -0
- package/banner-bmad-method.png +0 -0
- package/docs/404.md +9 -0
- package/docs/_STYLE_GUIDE.md +370 -0
- package/docs/explanation/advanced-elicitation.md +49 -0
- package/docs/explanation/adversarial-review.md +59 -0
- package/docs/explanation/brainstorming.md +33 -0
- package/docs/explanation/established-projects-faq.md +50 -0
- package/docs/explanation/party-mode.md +59 -0
- package/docs/explanation/preventing-agent-conflicts.md +112 -0
- package/docs/explanation/project-context.md +157 -0
- package/docs/explanation/quick-flow.md +73 -0
- package/docs/explanation/why-solutioning-matters.md +77 -0
- package/docs/how-to/customize-bmad.md +172 -0
- package/docs/how-to/established-projects.md +105 -0
- package/docs/how-to/get-answers-about-bmad.md +103 -0
- package/docs/how-to/install-bmad.md +88 -0
- package/docs/how-to/non-interactive-installation.md +171 -0
- package/docs/how-to/project-context.md +136 -0
- package/docs/how-to/quick-fixes.md +123 -0
- package/docs/how-to/shard-large-documents.md +78 -0
- package/docs/how-to/upgrade-to-v6.md +97 -0
- package/docs/index.md +33 -206
- package/docs/reference/agents.md +28 -0
- package/docs/reference/commands.md +131 -0
- package/docs/reference/modules.md +76 -0
- package/docs/reference/testing.md +106 -0
- package/docs/reference/workflow-map.md +122 -0
- package/docs/tutorials/getting-started.md +219 -0
- package/eslint.config.mjs +26 -16
- package/package.json +35 -28
- package/src/bmm/agents/analyst.agent.yaml +43 -0
- package/src/bmm/agents/architect.agent.yaml +29 -0
- package/src/bmm/agents/dev.agent.yaml +38 -0
- package/src/bmm/agents/pm.agent.yaml +44 -0
- package/src/bmm/agents/qa.agent.yaml +58 -0
- package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
- package/src/bmm/agents/sm.agent.yaml +37 -0
- package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
- package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +46 -0
- package/src/bmm/agents/ux-designer.agent.yaml +27 -0
- package/src/bmm/data/project-context-template.md +26 -0
- package/src/bmm/module-help.csv +31 -0
- package/src/bmm/module.yaml +50 -0
- package/src/bmm/teams/default-party.csv +20 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +162 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +57 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
- package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +233 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
- package/src/bmm/workflows/1-analysis/research/workflow-domain-research.md +54 -0
- package/src/bmm/workflows/1-analysis/research/workflow-market-research.md +54 -0
- package/src/bmm/workflows/1-analysis/research/workflow-technical-research.md +54 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +15 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +197 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv +11 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01-init.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-01b-continue.md +153 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02-discovery.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md +154 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md +170 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md +213 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md +207 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md +231 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md +124 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01-discovery.md +247 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-02-review.md +249 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-03-edit.md +253 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-e/step-e-04-complete.md +168 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +174 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +263 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +231 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/templates/prd-template.md +10 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-create-prd.md +63 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-edit-prd.md +65 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +63 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +171 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +42 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +184 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +172 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +173 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +133 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +245 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +129 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +54 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +13 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +164 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +331 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +76 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +49 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +149 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
- package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
- package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
- package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +44 -0
- package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
- package/src/bmm/workflows/4-implementation/correct-course/instructions.md +207 -0
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +54 -0
- package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +346 -0
- package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +53 -0
- package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
- package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
- package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +21 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +53 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +226 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +47 -0
- package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -0
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +25 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +174 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +118 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +111 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +111 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +104 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +146 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +50 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +191 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +144 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +127 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +200 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
- package/src/bmm/workflows/document-project/checklist.md +245 -0
- package/src/bmm/workflows/document-project/instructions.md +130 -0
- package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/src/bmm/workflows/document-project/workflow.yaml +22 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
- package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
- package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
- package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
- package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
- package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
- package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
- package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
- package/src/bmm/workflows/qa/automate/checklist.md +33 -0
- package/src/bmm/workflows/qa/automate/instructions.md +110 -0
- package/src/bmm/workflows/qa/automate/workflow.yaml +44 -0
- package/src/core/agents/bmad-master.agent.yaml +12 -21
- package/src/core/module-help.csv +9 -0
- package/src/core/module.yaml +25 -0
- package/src/core/tasks/editorial-review-prose.xml +102 -0
- package/src/core/tasks/editorial-review-structure.xml +209 -0
- package/src/core/tasks/help.md +85 -0
- package/src/core/tasks/index-docs.xml +2 -2
- package/src/core/tasks/review-adversarial-general.xml +48 -0
- package/src/core/tasks/shard-doc.xml +108 -0
- package/src/core/tasks/workflow.xml +39 -74
- package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
- package/src/core/workflows/advanced-elicitation/workflow.xml +117 -0
- package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
- package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
- package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
- package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
- package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
- package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
- package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
- package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
- package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
- package/src/core/workflows/brainstorming/template.md +13 -104
- package/src/core/workflows/brainstorming/workflow.md +58 -0
- package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
- package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +168 -0
- package/src/core/workflows/party-mode/workflow.md +194 -0
- package/src/utility/agent-components/activation-rules.txt +6 -0
- package/src/utility/agent-components/activation-steps.txt +14 -0
- package/src/utility/agent-components/agent-command-header.md +1 -0
- package/src/utility/agent-components/agent.customize.template.yaml +41 -0
- package/src/utility/agent-components/handler-action.txt +4 -0
- package/src/utility/agent-components/handler-exec.txt +6 -0
- package/src/utility/agent-components/handler-multi.txt +14 -0
- package/src/utility/agent-components/handler-tmpl.txt +5 -0
- package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
- package/src/utility/agent-components/handler-workflow.txt +10 -0
- package/src/utility/agent-components/menu-handlers.txt +6 -0
- package/test/README.md +4 -4
- package/test/adversarial-review-tests/README.md +56 -0
- package/test/adversarial-review-tests/sample-content.md +46 -0
- package/test/adversarial-review-tests/test-cases.yaml +103 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +1 -1
- package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +1 -0
- package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +2 -3
- package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +2 -1
- package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +2 -1
- package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +2 -1
- package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
- package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +1 -0
- package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +1 -0
- package/test/fixtures/file-refs-csv/invalid/all-empty-workflow.csv +3 -0
- package/test/fixtures/file-refs-csv/invalid/empty-data.csv +1 -0
- package/test/fixtures/file-refs-csv/invalid/no-workflow-column.csv +3 -0
- package/test/fixtures/file-refs-csv/invalid/unresolvable-vars.csv +3 -0
- package/test/fixtures/file-refs-csv/valid/bmm-style.csv +3 -0
- package/test/fixtures/file-refs-csv/valid/core-style.csv +3 -0
- package/test/fixtures/file-refs-csv/valid/minimal.csv +2 -0
- package/test/test-agent-schema.js +4 -4
- package/test/test-file-refs-csv.js +133 -0
- package/test/test-installation-components.js +10 -12
- package/test/test-rehype-plugins.mjs +1050 -0
- package/test/unit-test-schema.js +2 -2
- package/tools/build-docs.mjs +463 -0
- package/tools/cli/README.md +41 -589
- package/tools/cli/bmad-cli.js +67 -1
- package/tools/cli/commands/install.js +42 -34
- package/tools/cli/commands/status.js +44 -26
- package/tools/cli/commands/uninstall.js +146 -23
- package/tools/cli/external-official-modules.yaml +53 -0
- package/tools/cli/installers/install-messages.yaml +39 -0
- package/tools/cli/installers/lib/core/config-collector.js +589 -95
- package/tools/cli/installers/lib/core/custom-module-cache.js +260 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +57 -39
- package/tools/cli/installers/lib/core/detector.js +19 -125
- package/tools/cli/installers/lib/core/ide-config-manager.js +12 -9
- package/tools/cli/installers/lib/core/installer.js +2075 -1161
- package/tools/cli/installers/lib/core/manifest-generator.js +494 -103
- package/tools/cli/installers/lib/core/manifest.js +544 -46
- package/tools/cli/installers/lib/custom/handler.js +358 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +83 -44
- package/tools/cli/installers/lib/ide/_config-driven.js +560 -0
- package/tools/cli/installers/lib/ide/codex.js +277 -54
- package/tools/cli/installers/lib/ide/github-copilot.js +607 -209
- package/tools/cli/installers/lib/ide/kilo.js +169 -75
- package/tools/cli/installers/lib/ide/manager.js +179 -48
- package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
- package/tools/cli/installers/lib/ide/platform-codes.yaml +227 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +95 -5
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +51 -20
- package/tools/cli/installers/lib/ide/shared/module-injections.js +6 -3
- package/tools/cli/installers/lib/ide/shared/path-utils.js +299 -0
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +262 -14
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +108 -27
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +2 -1
- package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +16 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-task.md +10 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +10 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +15 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +7 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +11 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +11 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +16 -0
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/kiro-agent.md +16 -0
- package/tools/cli/installers/lib/ide/templates/combined/kiro-task.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/kiro-tool.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +15 -0
- package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow.md +7 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +15 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +17 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +17 -0
- package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/trae.md +9 -0
- package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +10 -0
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +2 -1
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +6 -0
- package/tools/cli/installers/lib/message-loader.js +83 -0
- package/tools/cli/installers/lib/modules/external-manager.js +136 -0
- package/tools/cli/installers/lib/modules/manager.js +931 -207
- package/tools/cli/lib/activation-builder.js +13 -16
- package/tools/cli/lib/agent/compiler.js +525 -0
- package/tools/cli/lib/agent/installer.js +680 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/agent-analyzer.js +48 -20
- package/tools/cli/lib/agent-party-generator.js +5 -17
- package/tools/cli/lib/cli-utils.js +76 -104
- package/tools/cli/lib/config.js +4 -3
- package/tools/cli/lib/platform-codes.js +2 -2
- package/tools/cli/lib/project-root.js +6 -0
- package/tools/cli/lib/prompts.js +809 -0
- package/tools/cli/lib/ui.js +1600 -272
- package/tools/cli/lib/xml-handler.js +4 -55
- package/tools/cli/lib/yaml-format.js +4 -6
- package/tools/cli/lib/yaml-xml-builder.js +183 -61
- package/tools/docs/_prompt-external-modules-page.md +59 -0
- package/tools/docs/fix-refs.md +91 -0
- package/tools/fix-doc-links.js +285 -0
- package/tools/lib/xml-utils.js +13 -0
- package/tools/maintainer/review-pr-README.md +55 -0
- package/tools/maintainer/review-pr.md +242 -0
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/platform-codes.yaml +24 -0
- package/tools/schema/agent.js +306 -53
- package/tools/validate-agent-schema.js +3 -3
- package/tools/validate-doc-links.js +393 -0
- package/tools/validate-file-refs.js +554 -0
- package/tools/validate-svg-changes.sh +356 -0
- package/website/README.md +75 -0
- package/website/astro.config.mjs +135 -0
- package/website/public/favicon.ico +0 -0
- package/website/public/img/bmad-dark.png +0 -0
- package/website/public/img/bmad-light.png +0 -0
- package/website/public/workflow-map-diagram.html +361 -0
- package/website/src/components/Banner.astro +62 -0
- package/website/src/components/Header.astro +96 -0
- package/website/src/components/MobileMenuFooter.astro +33 -0
- package/website/src/content/config.ts +6 -0
- package/website/src/lib/site-url.mjs +25 -0
- package/website/src/pages/404.astro +11 -0
- package/website/src/pages/robots.txt.ts +48 -0
- package/website/src/rehype-base-paths.js +112 -0
- package/website/src/rehype-markdown-links.js +111 -0
- package/website/src/styles/custom.css +509 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
- package/.github/ISSUE_TEMPLATE/idea_submission.md +0 -109
- package/.github/workflows/bundle-latest.yaml +0 -277
- package/.github/workflows/manual-release.yaml +0 -212
- package/docs/BUNDLE_DISTRIBUTION_SETUP.md +0 -95
- package/docs/agent-customization-guide.md +0 -208
- package/docs/document-sharding-guide.md +0 -447
- package/docs/ide-info/auggie.md +0 -31
- package/docs/ide-info/claude-code.md +0 -25
- package/docs/ide-info/cline.md +0 -31
- package/docs/ide-info/codex.md +0 -21
- package/docs/ide-info/crush.md +0 -30
- package/docs/ide-info/cursor.md +0 -25
- package/docs/ide-info/gemini.md +0 -25
- package/docs/ide-info/github-copilot.md +0 -26
- package/docs/ide-info/iflow.md +0 -33
- package/docs/ide-info/kilo.md +0 -24
- package/docs/ide-info/opencode.md +0 -24
- package/docs/ide-info/qwen.md +0 -25
- package/docs/ide-info/roo.md +0 -27
- package/docs/ide-info/trae.md +0 -25
- package/docs/ide-info/windsurf.md +0 -22
- package/docs/installers-bundlers/ide-injections.md +0 -186
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -388
- package/docs/installers-bundlers/web-bundler-usage.md +0 -54
- package/docs/v4-to-v6-upgrade.md +0 -227
- package/docs/web-bundles-gemini-gpt-guide.md +0 -473
- package/src/core/_module-installer/install-config.yaml +0 -35
- package/src/core/_module-installer/installer.js +0 -60
- package/src/core/agents/bmad-web-orchestrator.agent.xml +0 -113
- package/src/core/tasks/adv-elicit-methods.csv +0 -39
- package/src/core/tasks/advanced-elicitation.xml +0 -106
- package/src/core/tasks/validate-workflow.xml +0 -89
- package/src/core/tools/shard-doc.xml +0 -109
- package/src/core/workflows/brainstorming/README.md +0 -261
- package/src/core/workflows/brainstorming/instructions.md +0 -315
- package/src/core/workflows/brainstorming/workflow.yaml +0 -43
- package/src/core/workflows/party-mode/instructions.md +0 -183
- package/src/core/workflows/party-mode/workflow.yaml +0 -27
- package/src/modules/bmb/README.md +0 -194
- package/src/modules/bmb/_module-installer/install-config.yaml +0 -31
- package/src/modules/bmb/agents/bmad-builder.agent.yaml +0 -59
- package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -142
- package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
- package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
- package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
- package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
- package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
- package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
- package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -34
- package/src/modules/bmb/workflows/create-agent/README.md +0 -203
- package/src/modules/bmb/workflows/create-agent/agent-architecture.md +0 -415
- package/src/modules/bmb/workflows/create-agent/agent-command-patterns.md +0 -759
- package/src/modules/bmb/workflows/create-agent/agent-types.md +0 -292
- package/src/modules/bmb/workflows/create-agent/brainstorm-context.md +0 -174
- package/src/modules/bmb/workflows/create-agent/checklist.md +0 -62
- package/src/modules/bmb/workflows/create-agent/communication-styles.md +0 -202
- package/src/modules/bmb/workflows/create-agent/instructions.md +0 -456
- package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -49
- package/src/modules/bmb/workflows/create-module/README.md +0 -229
- package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
- package/src/modules/bmb/workflows/create-module/checklist.md +0 -235
- package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
- package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
- package/src/modules/bmb/workflows/create-module/instructions.md +0 -576
- package/src/modules/bmb/workflows/create-module/module-structure.md +0 -400
- package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -44
- package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
- package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
- package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
- package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -724
- package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1306
- package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
- package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -13
- package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
- package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -65
- package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -42
- package/src/modules/bmb/workflows/edit-agent/README.md +0 -112
- package/src/modules/bmb/workflows/edit-agent/checklist.md +0 -112
- package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -290
- package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -35
- package/src/modules/bmb/workflows/edit-module/README.md +0 -187
- package/src/modules/bmb/workflows/edit-module/checklist.md +0 -165
- package/src/modules/bmb/workflows/edit-module/instructions.md +0 -339
- package/src/modules/bmb/workflows/edit-module/workflow.yaml +0 -36
- package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
- package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
- package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
- package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -29
- package/src/modules/bmb/workflows/module-brief/README.md +0 -264
- package/src/modules/bmb/workflows/module-brief/checklist.md +0 -116
- package/src/modules/bmb/workflows/module-brief/instructions.md +0 -267
- package/src/modules/bmb/workflows/module-brief/template.md +0 -275
- package/src/modules/bmb/workflows/module-brief/workflow.yaml +0 -31
- package/src/modules/bmb/workflows/redoc/README.md +0 -87
- package/src/modules/bmb/workflows/redoc/checklist.md +0 -99
- package/src/modules/bmb/workflows/redoc/instructions.md +0 -265
- package/src/modules/bmb/workflows/redoc/workflow.yaml +0 -34
- package/src/modules/bmgd/README.md +0 -208
- package/src/modules/bmgd/_module-installer/install-config.yaml +0 -54
- package/src/modules/bmgd/agents/game-architect.agent.yaml +0 -33
- package/src/modules/bmgd/agents/game-designer.agent.yaml +0 -40
- package/src/modules/bmgd/agents/game-dev.agent.yaml +0 -40
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +0 -75
- package/src/modules/bmgd/teams/default-party.csv +0 -10
- package/src/modules/bmgd/teams/team-gamedev.yaml +0 -18
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +0 -26
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/game-context.md +0 -115
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +0 -128
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +0 -41
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/checklist.md +0 -128
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/instructions.md +0 -371
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/template.md +0 -205
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +0 -44
- package/src/modules/bmgd/workflows/2-design/gdd/checklist.md +0 -148
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/action-platformer.md +0 -45
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/adventure.md +0 -84
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/card-game.md +0 -76
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/fighting.md +0 -89
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/horror.md +0 -86
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/idle-incremental.md +0 -78
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/metroidvania.md +0 -87
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/moba.md +0 -74
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/party-game.md +0 -79
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/puzzle.md +0 -58
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/racing.md +0 -88
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/rhythm.md +0 -79
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/roguelike.md +0 -69
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/rpg.md +0 -70
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/sandbox.md +0 -79
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/shooter.md +0 -62
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/simulation.md +0 -73
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/sports.md +0 -75
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/strategy.md +0 -71
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/survival.md +0 -79
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/text-based.md +0 -91
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/tower-defense.md +0 -79
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/turn-based-tactics.md +0 -88
- package/src/modules/bmgd/workflows/2-design/gdd/game-types/visual-novel.md +0 -89
- package/src/modules/bmgd/workflows/2-design/gdd/game-types.csv +0 -25
- package/src/modules/bmgd/workflows/2-design/gdd/gdd-template.md +0 -153
- package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -501
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +0 -81
- package/src/modules/bmgd/workflows/2-design/narrative/checklist.md +0 -139
- package/src/modules/bmgd/workflows/2-design/narrative/instructions-narrative.md +0 -603
- package/src/modules/bmgd/workflows/2-design/narrative/narrative-template.md +0 -195
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +0 -38
- package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +0 -321
- package/src/modules/bmgd/workflows/3-technical/game-architecture/architecture-template.md +0 -103
- package/src/modules/bmgd/workflows/3-technical/game-architecture/checklist.md +0 -240
- package/src/modules/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +0 -222
- package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +0 -699
- package/src/modules/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +0 -13
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +0 -67
- package/src/modules/bmgd/workflows/4-production/code-review/backlog_template.md +0 -12
- package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +0 -22
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -398
- package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +0 -57
- package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +0 -279
- package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +0 -206
- package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +0 -52
- package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +0 -240
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -256
- package/src/modules/bmgd/workflows/4-production/create-story/template.md +0 -51
- package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +0 -68
- package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +0 -38
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -267
- package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +0 -53
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -164
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -52
- package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +0 -1442
- package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +0 -52
- package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +0 -234
- package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +0 -55
- package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +0 -50
- package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
- package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
- package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -209
- package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -57
- package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
- package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -28
- package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
- package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -25
- package/src/modules/bmm/README.md +0 -128
- package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
- package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
- package/src/modules/bmm/_module-installer/install-config.yaml +0 -60
- package/src/modules/bmm/_module-installer/installer.js +0 -131
- package/src/modules/bmm/_module-installer/platform-specifics/claude-code.js +0 -35
- package/src/modules/bmm/_module-installer/platform-specifics/windsurf.js +0 -32
- package/src/modules/bmm/agents/analyst.agent.yaml +0 -48
- package/src/modules/bmm/agents/architect.agent.yaml +0 -42
- package/src/modules/bmm/agents/dev.agent.yaml +0 -40
- package/src/modules/bmm/agents/pm.agent.yaml +0 -61
- package/src/modules/bmm/agents/sm.agent.yaml +0 -72
- package/src/modules/bmm/agents/tea.agent.yaml +0 -65
- package/src/modules/bmm/agents/tech-writer.agent.yaml +0 -73
- package/src/modules/bmm/agents/ux-designer.agent.yaml +0 -38
- package/src/modules/bmm/docs/README.md +0 -235
- package/src/modules/bmm/docs/agents-guide.md +0 -1056
- package/src/modules/bmm/docs/brownfield-guide.md +0 -754
- package/src/modules/bmm/docs/enterprise-agentic-development.md +0 -680
- package/src/modules/bmm/docs/faq.md +0 -587
- package/src/modules/bmm/docs/glossary.md +0 -320
- package/src/modules/bmm/docs/party-mode.md +0 -224
- package/src/modules/bmm/docs/quick-spec-flow.md +0 -652
- package/src/modules/bmm/docs/quick-start.md +0 -366
- package/src/modules/bmm/docs/scale-adaptive-system.md +0 -599
- package/src/modules/bmm/docs/test-architecture.md +0 -394
- package/src/modules/bmm/docs/workflow-architecture-reference.md +0 -371
- package/src/modules/bmm/docs/workflow-document-project-reference.md +0 -487
- package/src/modules/bmm/docs/workflows-analysis.md +0 -370
- package/src/modules/bmm/docs/workflows-implementation.md +0 -284
- package/src/modules/bmm/docs/workflows-planning.md +0 -601
- package/src/modules/bmm/docs/workflows-solutioning.md +0 -501
- package/src/modules/bmm/teams/default-party.csv +0 -19
- package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +0 -675
- package/src/modules/bmm/testarch/knowledge/component-tdd.md +0 -486
- package/src/modules/bmm/testarch/knowledge/contract-testing.md +0 -957
- package/src/modules/bmm/testarch/knowledge/data-factories.md +0 -500
- package/src/modules/bmm/testarch/knowledge/email-auth.md +0 -721
- package/src/modules/bmm/testarch/knowledge/error-handling.md +0 -725
- package/src/modules/bmm/testarch/knowledge/feature-flags.md +0 -750
- package/src/modules/bmm/testarch/knowledge/fixture-architecture.md +0 -401
- package/src/modules/bmm/testarch/knowledge/network-first.md +0 -486
- package/src/modules/bmm/testarch/knowledge/nfr-criteria.md +0 -670
- package/src/modules/bmm/testarch/knowledge/playwright-config.md +0 -730
- package/src/modules/bmm/testarch/knowledge/probability-impact.md +0 -601
- package/src/modules/bmm/testarch/knowledge/risk-governance.md +0 -615
- package/src/modules/bmm/testarch/knowledge/selective-testing.md +0 -732
- package/src/modules/bmm/testarch/knowledge/selector-resilience.md +0 -527
- package/src/modules/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
- package/src/modules/bmm/testarch/knowledge/test-levels-framework.md +0 -473
- package/src/modules/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
- package/src/modules/bmm/testarch/knowledge/test-quality.md +0 -664
- package/src/modules/bmm/testarch/knowledge/timing-debugging.md +0 -372
- package/src/modules/bmm/testarch/knowledge/visual-debugging.md +0 -524
- package/src/modules/bmm/testarch/tea-index.csv +0 -22
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
- package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
- package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
- package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -56
- package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
- package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -522
- package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -65
- package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
- package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
- package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
- package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
- package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -437
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -674
- package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
- package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -533
- package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
- package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
- package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
- package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1306
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -99
- package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -346
- package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -80
- package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -292
- package/src/modules/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -53
- package/src/modules/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -525
- package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
- package/src/modules/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -76
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -217
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -74
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +0 -434
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -978
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -57
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -321
- package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
- package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -240
- package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
- package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -696
- package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -96
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -169
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -302
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -66
- package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
- package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
- package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -398
- package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +0 -57
- package/src/modules/bmm/workflows/4-implementation/correct-course/checklist.md +0 -279
- package/src/modules/bmm/workflows/4-implementation/correct-course/instructions.md +0 -206
- package/src/modules/bmm/workflows/4-implementation/correct-course/workflow.yaml +0 -52
- package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +0 -240
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -256
- package/src/modules/bmm/workflows/4-implementation/create-story/template.md +0 -51
- package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +0 -68
- package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +0 -38
- package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -267
- package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +0 -53
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -164
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
- package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -52
- package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +0 -1442
- package/src/modules/bmm/workflows/4-implementation/retrospective/workflow.yaml +0 -52
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/checklist.md +0 -33
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +0 -234
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +0 -55
- package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +0 -50
- package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
- package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
- package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -209
- package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -57
- package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
- package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -28
- package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
- package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
- package/src/modules/bmm/workflows/document-project/checklist.md +0 -245
- package/src/modules/bmm/workflows/document-project/instructions.md +0 -222
- package/src/modules/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
- package/src/modules/bmm/workflows/document-project/workflow.yaml +0 -36
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
- package/src/modules/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
- package/src/modules/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
- package/src/modules/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
- package/src/modules/bmm/workflows/techdoc/documentation-standards.md +0 -262
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
- package/src/modules/bmm/workflows/testarch/atdd/checklist.md +0 -373
- package/src/modules/bmm/workflows/testarch/atdd/instructions.md +0 -785
- package/src/modules/bmm/workflows/testarch/atdd/workflow.yaml +0 -54
- package/src/modules/bmm/workflows/testarch/automate/checklist.md +0 -580
- package/src/modules/bmm/workflows/testarch/automate/instructions.md +0 -1303
- package/src/modules/bmm/workflows/testarch/automate/workflow.yaml +0 -63
- package/src/modules/bmm/workflows/testarch/ci/checklist.md +0 -246
- package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
- package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
- package/src/modules/bmm/workflows/testarch/ci/instructions.md +0 -517
- package/src/modules/bmm/workflows/testarch/ci/workflow.yaml +0 -55
- package/src/modules/bmm/workflows/testarch/framework/checklist.md +0 -321
- package/src/modules/bmm/workflows/testarch/framework/instructions.md +0 -455
- package/src/modules/bmm/workflows/testarch/framework/workflow.yaml +0 -55
- package/src/modules/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
- package/src/modules/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
- package/src/modules/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
- package/src/modules/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -58
- package/src/modules/bmm/workflows/testarch/test-design/checklist.md +0 -234
- package/src/modules/bmm/workflows/testarch/test-design/instructions.md +0 -782
- package/src/modules/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
- package/src/modules/bmm/workflows/testarch/test-design/workflow.yaml +0 -58
- package/src/modules/bmm/workflows/testarch/test-review/checklist.md +0 -470
- package/src/modules/bmm/workflows/testarch/test-review/instructions.md +0 -608
- package/src/modules/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
- package/src/modules/bmm/workflows/testarch/test-review/workflow.yaml +0 -55
- package/src/modules/bmm/workflows/testarch/trace/checklist.md +0 -654
- package/src/modules/bmm/workflows/testarch/trace/instructions.md +0 -1045
- package/src/modules/bmm/workflows/testarch/trace/trace-template.md +0 -673
- package/src/modules/bmm/workflows/testarch/trace/workflow.yaml +0 -68
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +0 -823
- package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +0 -29
- package/src/modules/bmm/workflows/workflow-status/instructions.md +0 -387
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -120
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -108
- package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +0 -52
- package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -104
- package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -95
- package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
- package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
- package/src/modules/bmm/workflows/workflow-status/project-levels.yaml +0 -59
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -24
- package/src/modules/bmm/workflows/workflow-status/workflow.yaml +0 -30
- package/src/modules/cis/README.md +0 -153
- package/src/modules/cis/_module-installer/install-config.yaml +0 -16
- package/src/modules/cis/_module-installer/installer.js +0 -92
- package/src/modules/cis/agents/README.md +0 -104
- package/src/modules/cis/agents/brainstorming-coach.agent.yaml +0 -28
- package/src/modules/cis/agents/creative-problem-solver.agent.yaml +0 -28
- package/src/modules/cis/agents/design-thinking-coach.agent.yaml +0 -28
- package/src/modules/cis/agents/innovation-strategist.agent.yaml +0 -28
- package/src/modules/cis/agents/storyteller.agent.yaml +0 -28
- package/src/modules/cis/teams/creative-squad.yaml +0 -7
- package/src/modules/cis/teams/default-party.csv +0 -11
- package/src/modules/cis/workflows/README.md +0 -139
- package/src/modules/cis/workflows/design-thinking/README.md +0 -56
- package/src/modules/cis/workflows/design-thinking/design-methods.csv +0 -31
- package/src/modules/cis/workflows/design-thinking/instructions.md +0 -200
- package/src/modules/cis/workflows/design-thinking/template.md +0 -111
- package/src/modules/cis/workflows/design-thinking/workflow.yaml +0 -43
- package/src/modules/cis/workflows/innovation-strategy/README.md +0 -56
- package/src/modules/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
- package/src/modules/cis/workflows/innovation-strategy/instructions.md +0 -274
- package/src/modules/cis/workflows/innovation-strategy/template.md +0 -189
- package/src/modules/cis/workflows/innovation-strategy/workflow.yaml +0 -43
- package/src/modules/cis/workflows/problem-solving/README.md +0 -56
- package/src/modules/cis/workflows/problem-solving/instructions.md +0 -250
- package/src/modules/cis/workflows/problem-solving/solving-methods.csv +0 -31
- package/src/modules/cis/workflows/problem-solving/template.md +0 -165
- package/src/modules/cis/workflows/problem-solving/workflow.yaml +0 -43
- package/src/modules/cis/workflows/storytelling/README.md +0 -58
- package/src/modules/cis/workflows/storytelling/instructions.md +0 -291
- package/src/modules/cis/workflows/storytelling/story-types.csv +0 -26
- package/src/modules/cis/workflows/storytelling/template.md +0 -113
- package/src/modules/cis/workflows/storytelling/workflow.yaml +0 -43
- package/src/utility/models/agent-activation-ide.xml +0 -51
- package/src/utility/models/agent-activation-web.xml +0 -60
- package/src/utility/models/agent-command-header.md +0 -1
- package/src/utility/models/agent-config-template.md +0 -23
- package/src/utility/models/agent-in-team-activation.xml +0 -3
- package/src/utility/models/fragments/activation-rules.xml +0 -8
- package/src/utility/models/fragments/activation-steps.xml +0 -16
- package/src/utility/models/fragments/handler-action.xml +0 -4
- package/src/utility/models/fragments/handler-exec.xml +0 -5
- package/src/utility/models/fragments/handler-tmpl.xml +0 -5
- package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
- package/src/utility/models/fragments/handler-workflow.xml +0 -9
- package/src/utility/models/fragments/menu-handlers.xml +0 -6
- package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
- package/src/utility/templates/agent.customize.template.yaml +0 -42
- package/test/fixtures/agent-schema/invalid/metadata/core-agent-with-module.agent.yaml +0 -26
- package/test/fixtures/agent-schema/invalid/metadata/module-agent-missing-module.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/metadata/wrong-module-value.agent.yaml +0 -26
- package/tools/cli/bundlers/bundle-web.js +0 -179
- package/tools/cli/bundlers/test-analyst.js +0 -28
- package/tools/cli/bundlers/test-bundler.js +0 -118
- package/tools/cli/bundlers/web-bundler.js +0 -1667
- package/tools/cli/commands/build.js +0 -458
- package/tools/cli/commands/list.js +0 -28
- package/tools/cli/commands/update.js +0 -28
- package/tools/cli/installers/lib/ide/auggie.js +0 -179
- package/tools/cli/installers/lib/ide/claude-code.js +0 -471
- package/tools/cli/installers/lib/ide/cline.js +0 -220
- package/tools/cli/installers/lib/ide/crush.js +0 -240
- package/tools/cli/installers/lib/ide/cursor.js +0 -352
- package/tools/cli/installers/lib/ide/gemini.js +0 -206
- package/tools/cli/installers/lib/ide/iflow.js +0 -125
- package/tools/cli/installers/lib/ide/opencode.js +0 -212
- package/tools/cli/installers/lib/ide/qwen.js +0 -318
- package/tools/cli/installers/lib/ide/roo.js +0 -253
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
- package/tools/cli/installers/lib/ide/trae.js +0 -266
- package/tools/cli/installers/lib/ide/windsurf.js +0 -211
- package/tools/cli/lib/replace-project-root.js +0 -239
- package/tools/cli/regenerate-manifests.js +0 -28
- package/tools/cli/test-yaml-builder.js +0 -43
- package/tools/flattener/aggregate.js +0 -76
- package/tools/flattener/binary.js +0 -80
- package/tools/flattener/discovery.js +0 -71
- package/tools/flattener/files.js +0 -35
- package/tools/flattener/ignoreRules.js +0 -172
- package/tools/flattener/main.js +0 -483
- package/tools/flattener/projectRoot.js +0 -201
- package/tools/flattener/prompts.js +0 -44
- package/tools/flattener/stats.helpers.js +0 -368
- package/tools/flattener/stats.js +0 -75
- package/tools/flattener/test-matrix.js +0 -409
- package/tools/flattener/xml.js +0 -88
- package/tools/validate-bundles.js +0 -87
- package/v6-open-items.md +0 -17
- /package/src/{modules/bmm → bmm}/teams/team-fullstack.yaml +0 -0
- /package/src/{modules/bmgd/workflows/4-production → bmm/workflows/4-implementation}/sprint-planning/checklist.md +0 -0
- /package/src/{modules/bmm → bmm}/workflows/document-project/documentation-requirements.csv +0 -0
- /package/src/{modules/bmm → bmm}/workflows/document-project/templates/deep-dive-template.md +0 -0
- /package/src/{modules/bmm → bmm}/workflows/document-project/templates/index-template.md +0 -0
- /package/src/{modules/bmm → bmm}/workflows/document-project/templates/project-overview-template.md +0 -0
- /package/src/{modules/bmm → bmm}/workflows/document-project/templates/source-tree-template.md +0 -0
- /package/src/utility/{models/fragments/handler-data.xml → agent-components/handler-data.txt} +0 -0
- /package/{src/utility/models/action-command-header.md → tools/cli/installers/lib/ide/templates/split/.gitkeep} +0 -0
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# ReDoc - Reverse-Tree Documentation Engine
|
|
2
|
-
|
|
3
|
-
**Type:** Autonomous Action Workflow
|
|
4
|
-
**Module:** BMad Builder (bmb)
|
|
5
|
-
|
|
6
|
-
## Purpose
|
|
7
|
-
|
|
8
|
-
ReDoc is an intelligent documentation maintenance system for BMAD modules, workflows, and agents. It uses a reverse-tree approach (leaf folders first, then parent folders) to systematically generate and update README.md files with technical writer quality output.
|
|
9
|
-
|
|
10
|
-
The workflow understands BMAD conventions deeply and focuses documentation on distinctive features rather than explaining standard patterns, resulting in succinct, precise technical documentation.
|
|
11
|
-
|
|
12
|
-
## Key Features
|
|
13
|
-
|
|
14
|
-
- **Reverse-Tree Processing**: Documents from deepest folders up to module root, allowing child documentation to inform parent summaries
|
|
15
|
-
- **Convention-Aware**: Loads BMAD architecture patterns and only documents unique/distinctive aspects
|
|
16
|
-
- **Scalability**: Automatically creates catalog documents (WORKFLOWS-CATALOG.md, AGENTS-CATALOG.md) for massive folders (>10 items)
|
|
17
|
-
- **Diff-Aware**: Tracks `last-redoc-date` frontmatter to enable change detection since last run
|
|
18
|
-
- **Autonomous**: Runs without user checkpoints unless clarification is genuinely required
|
|
19
|
-
- **Comprehensive**: Reads ALL files completely before generating documentation (no partial reads)
|
|
20
|
-
|
|
21
|
-
## Usage
|
|
22
|
-
|
|
23
|
-
Invoke with a target path:
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
workflow redoc
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
When prompted, provide one of:
|
|
30
|
-
|
|
31
|
-
- **Module path**: `{bmad_folder}/bmm` (documents entire module: root, workflows, agents)
|
|
32
|
-
- **Workflows folder**: `{bmad_folder}/bmm/workflows` (documents all workflows)
|
|
33
|
-
- **Agents folder**: `{bmad_folder}/bmm/agents` (documents all agents)
|
|
34
|
-
- **Single workflow**: `{bmad_folder}/bmm/workflows/product-brief` (documents one workflow)
|
|
35
|
-
- **Single agent**: `{bmad_folder}/bmm/agents/prd-agent.md` (documents one agent)
|
|
36
|
-
|
|
37
|
-
## Inputs
|
|
38
|
-
|
|
39
|
-
### Required
|
|
40
|
-
|
|
41
|
-
- **target_path**: Path to module, folder, or specific component to document
|
|
42
|
-
|
|
43
|
-
### Knowledge Base (Auto-loaded)
|
|
44
|
-
|
|
45
|
-
- agent-architecture.md
|
|
46
|
-
- agent-command-patterns.md
|
|
47
|
-
- agent-types.md
|
|
48
|
-
- module-structure.md
|
|
49
|
-
- workflow-creation-guide.md
|
|
50
|
-
|
|
51
|
-
## Outputs
|
|
52
|
-
|
|
53
|
-
### Created/Updated Files
|
|
54
|
-
|
|
55
|
-
- **README.md**: At each documented level (workflow folders, agent folders, module root)
|
|
56
|
-
- **Catalog files**: WORKFLOWS-CATALOG.md, AGENTS-CATALOG.md (for massive folders)
|
|
57
|
-
- **Frontmatter**: All READMEs include `last-redoc-date: <timestamp>`
|
|
58
|
-
|
|
59
|
-
### Summary Report
|
|
60
|
-
|
|
61
|
-
- Documentation coverage statistics
|
|
62
|
-
- List of files created/updated
|
|
63
|
-
- Any items requiring manual review
|
|
64
|
-
|
|
65
|
-
## Workflow Steps
|
|
66
|
-
|
|
67
|
-
1. **Initialize**: Load BMAD conventions and validate target
|
|
68
|
-
2. **Analyze Structure**: Build reverse-tree execution plan
|
|
69
|
-
3. **Process Leaves**: Document individual workflows/agents (deepest first)
|
|
70
|
-
4. **Process Folders**: Document workflow/agent collections with categorization
|
|
71
|
-
5. **Process Root**: Document module overview with links and highlights
|
|
72
|
-
6. **Validate**: Verify completeness and generate report
|
|
73
|
-
7. **Diff Analysis** (optional): Show changes since last redoc
|
|
74
|
-
8. **Complete**: Report success and suggest next steps
|
|
75
|
-
|
|
76
|
-
## Technical Details
|
|
77
|
-
|
|
78
|
-
- **Execution**: Autonomous with minimal user interaction
|
|
79
|
-
- **Quality**: Technical writer standards - succinct, precise, professional
|
|
80
|
-
- **Context-Aware**: Uses BMAD convention knowledge to highlight only distinctive features
|
|
81
|
-
- **Scalable**: Handles folders of any size with intelligent catalog creation
|
|
82
|
-
|
|
83
|
-
## Next Steps After Running
|
|
84
|
-
|
|
85
|
-
1. Review generated documentation for accuracy
|
|
86
|
-
2. If documenting a subfolder, run redoc on parent module to update references
|
|
87
|
-
3. Commit documentation updates with meaningful message
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
# ReDoc Workflow Validation Checklist
|
|
2
|
-
|
|
3
|
-
## Initialization and Setup
|
|
4
|
-
|
|
5
|
-
- [ ] All BMAD convention documents loaded and understood
|
|
6
|
-
- [ ] Target path validated and exists
|
|
7
|
-
- [ ] Target type correctly identified (module/workflow/agent/folder)
|
|
8
|
-
- [ ] Documentation execution plan created with reverse-tree order
|
|
9
|
-
|
|
10
|
-
## File Analysis
|
|
11
|
-
|
|
12
|
-
- [ ] All files in target scope read completely (no offset/limit usage)
|
|
13
|
-
- [ ] Existing README.md files detected and last-redoc-date parsed
|
|
14
|
-
- [ ] Massive folders (>10 items) identified for catalog document creation
|
|
15
|
-
- [ ] Documentation depth levels calculated correctly
|
|
16
|
-
|
|
17
|
-
## Leaf-Level Documentation (Workflows)
|
|
18
|
-
|
|
19
|
-
- [ ] Each workflow's ALL files read: workflow.yaml, instructions.md, template.md, checklist.md
|
|
20
|
-
- [ ] README.md includes frontmatter with current last-redoc-date
|
|
21
|
-
- [ ] Description is 2-4 paragraphs of technical writer quality
|
|
22
|
-
- [ ] Focuses on DISTINCTIVE features, not BMAD boilerplate conventions
|
|
23
|
-
- [ ] Includes "Usage" section with invocation command
|
|
24
|
-
- [ ] Includes "Inputs" and "Outputs" sections where applicable
|
|
25
|
-
- [ ] Succinct and precise language used throughout
|
|
26
|
-
|
|
27
|
-
## Leaf-Level Documentation (Agents)
|
|
28
|
-
|
|
29
|
-
- [ ] Each agent file read completely including XML structure, commands, persona
|
|
30
|
-
- [ ] README.md includes frontmatter with current last-redoc-date
|
|
31
|
-
- [ ] Description is 1-3 paragraphs of technical writer quality
|
|
32
|
-
- [ ] Lists all available commands clearly
|
|
33
|
-
- [ ] Explains when to use this agent
|
|
34
|
-
- [ ] Highlights unique capabilities vs standard agent patterns
|
|
35
|
-
|
|
36
|
-
## Mid-Level Documentation (Folders)
|
|
37
|
-
|
|
38
|
-
- [ ] All child README.md files read before generating folder README
|
|
39
|
-
- [ ] Workflows categorized logically if massive folder (>10 items)
|
|
40
|
-
- [ ] Agents categorized by type if massive folder (>10 items)
|
|
41
|
-
- [ ] Catalog documents (WORKFLOWS-CATALOG.md, AGENTS-CATALOG.md) created for massive folders
|
|
42
|
-
- [ ] Catalog documents include frontmatter with last-redoc-date
|
|
43
|
-
- [ ] Folder README.md references catalog if one exists
|
|
44
|
-
- [ ] Folder README.md is succinct (1-2 paragraphs + listings/links)
|
|
45
|
-
- [ ] Notable/commonly-used items highlighted
|
|
46
|
-
|
|
47
|
-
## Root Module Documentation
|
|
48
|
-
|
|
49
|
-
- [ ] Module config.yaml read and understood
|
|
50
|
-
- [ ] Workflows and agents folder READMEs read before creating root README
|
|
51
|
-
- [ ] Root README includes frontmatter with current last-redoc-date
|
|
52
|
-
- [ ] Module purpose clearly stated in 2-3 sentences
|
|
53
|
-
- [ ] Links to /workflows/README.md and /agents/README.md included
|
|
54
|
-
- [ ] 2-3 key workflows mentioned with context
|
|
55
|
-
- [ ] 2-3 key agents mentioned with context
|
|
56
|
-
- [ ] Configuration section highlights UNIQUE settings only
|
|
57
|
-
- [ ] Usage section explains invocation patterns
|
|
58
|
-
- [ ] BMAD convention knowledge applied (describes only distinctive aspects)
|
|
59
|
-
|
|
60
|
-
## Quality Standards
|
|
61
|
-
|
|
62
|
-
- [ ] All documentation uses proper BMAD terminology
|
|
63
|
-
- [ ] Technical writer quality: clear, concise, professional
|
|
64
|
-
- [ ] No placeholder text or generic descriptions remain
|
|
65
|
-
- [ ] All links are valid and correctly formatted
|
|
66
|
-
- [ ] Frontmatter syntax is correct and dates are current
|
|
67
|
-
- [ ] No redundant explanation of standard BMAD patterns
|
|
68
|
-
|
|
69
|
-
## Validation and Reporting
|
|
70
|
-
|
|
71
|
-
- [ ] All planned documentation items created/updated
|
|
72
|
-
- [ ] Frontmatter dates verified as current across all files
|
|
73
|
-
- [ ] File paths and internal links validated
|
|
74
|
-
- [ ] Summary report generated with counts and coverage
|
|
75
|
-
- [ ] Files skipped (if any) documented with reasons
|
|
76
|
-
|
|
77
|
-
## Git Diff Analysis (Optional Step)
|
|
78
|
-
|
|
79
|
-
- [ ] last-redoc-date timestamps extracted correctly
|
|
80
|
-
- [ ] Git log queried for changes since last redoc
|
|
81
|
-
- [ ] Modified files identified and reported
|
|
82
|
-
- [ ] Findings presented clearly to user
|
|
83
|
-
|
|
84
|
-
## Final Validation
|
|
85
|
-
|
|
86
|
-
- [ ] Documentation Coverage
|
|
87
|
-
- All README.md files in scope created/updated
|
|
88
|
-
- Catalog documents created where needed
|
|
89
|
-
- No documentation gaps identified
|
|
90
|
-
|
|
91
|
-
- [ ] Execution Quality
|
|
92
|
-
- Reverse-tree order followed (leaf → root)
|
|
93
|
-
- Autonomous execution (minimal user prompts)
|
|
94
|
-
- Only clarification questions asked when truly necessary
|
|
95
|
-
|
|
96
|
-
- [ ] Output Quality
|
|
97
|
-
- Technical precision maintained throughout
|
|
98
|
-
- Succinct descriptions (no verbose explanations)
|
|
99
|
-
- Professional documentation standards met
|
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
# ReDoc Workflow Instructions
|
|
2
|
-
|
|
3
|
-
<critical>The workflow execution engine is governed by: {project-root}/{bmad_folder}/core/tasks/workflow.xml</critical>
|
|
4
|
-
<critical>You MUST have already loaded and processed: {project-root}/src/modules/bmb/workflows/redoc/workflow.yaml</critical>
|
|
5
|
-
<critical>Communicate in {communication_language} throughout the documentation process</critical>
|
|
6
|
-
<critical>This is an AUTONOMOUS workflow - minimize user interaction unless clarification is absolutely required</critical>
|
|
7
|
-
<critical>IMPORTANT: Process ONE document at a time to avoid token limits. Each README should be created individually, not batched.</critical>
|
|
8
|
-
<critical>When using Task tool with sub-agents: Only request ONE workflow or agent documentation per invocation to prevent token overflow.</critical>
|
|
9
|
-
|
|
10
|
-
<workflow>
|
|
11
|
-
|
|
12
|
-
<step n="1" goal="Load BMAD conventions and initialize">
|
|
13
|
-
<action>Load ALL BMAD convention documents from {bmad_conventions}:
|
|
14
|
-
- agent_architecture.md - Understand agent XML structure and patterns
|
|
15
|
-
- agent_command_patterns.md - Command syntax and activation patterns
|
|
16
|
-
- agent_types.md - Standard agent categories and purposes
|
|
17
|
-
- module_structure.md - Module organization and folder conventions
|
|
18
|
-
- workflow_guide.md - Workflow structure and best practices
|
|
19
|
-
</action>
|
|
20
|
-
|
|
21
|
-
<action>Internalize these conventions so you can:
|
|
22
|
-
|
|
23
|
-
- Recognize standard patterns vs unique implementations
|
|
24
|
-
- Describe only what's distinctive about each component
|
|
25
|
-
- Use proper terminology consistently
|
|
26
|
-
- Write with technical precision
|
|
27
|
-
</action>
|
|
28
|
-
|
|
29
|
-
<action>Get target path from user:
|
|
30
|
-
|
|
31
|
-
- Ask: "What do you want to document? (module path, workflow path, agent path, or folder path)"
|
|
32
|
-
- Store as {{target_path}}
|
|
33
|
-
</action>
|
|
34
|
-
|
|
35
|
-
<action>Validate target path exists and determine target type:
|
|
36
|
-
|
|
37
|
-
- Module root (contains config.yaml, /workflows, /agents folders)
|
|
38
|
-
- Workflows folder (contains multiple workflow folders)
|
|
39
|
-
- Agents folder (contains multiple agent .md files)
|
|
40
|
-
- Single workflow folder (contains workflow.yaml)
|
|
41
|
-
- Single agent file (.md)
|
|
42
|
-
</action>
|
|
43
|
-
|
|
44
|
-
<action>Store target type as {{target_type}} for conditional processing</action>
|
|
45
|
-
</step>
|
|
46
|
-
|
|
47
|
-
<step n="2" goal="Analyze directory structure and existing documentation">
|
|
48
|
-
<action>Build complete tree structure of {{target_path}} using Glob and file system tools</action>
|
|
49
|
-
|
|
50
|
-
<action>Identify all documentation points:
|
|
51
|
-
|
|
52
|
-
- List all folders requiring README.md files
|
|
53
|
-
- Detect existing README.md files
|
|
54
|
-
- Parse frontmatter from existing READMEs to extract last-redoc-date
|
|
55
|
-
- Calculate documentation depth (how many levels deep)
|
|
56
|
-
</action>
|
|
57
|
-
|
|
58
|
-
<action>Create documentation map with execution order (deepest → shallowest):
|
|
59
|
-
|
|
60
|
-
- Level 0 (deepest): Individual workflow folders, individual agent files
|
|
61
|
-
- Level 1: /workflows folder, /agents folder
|
|
62
|
-
- Level 2 (root): Module root README.md
|
|
63
|
-
</action>
|
|
64
|
-
|
|
65
|
-
<action>Detect "massive folders" requiring child catalog documents:
|
|
66
|
-
|
|
67
|
-
- Threshold: >10 items or complex categorization needed
|
|
68
|
-
- Mark folders for catalog document creation (e.g., WORKFLOWS-CATALOG.md, AGENTS-CATALOG.md)
|
|
69
|
-
</action>
|
|
70
|
-
|
|
71
|
-
<critical>Store execution order as {{doc_execution_plan}} - this ensures reverse-tree processing</critical>
|
|
72
|
-
</step>
|
|
73
|
-
|
|
74
|
-
<step n="3" goal="Process leaf-level documentation" repeat="for-each-leaf-item">
|
|
75
|
-
<critical>TOKEN LIMIT WARNING: Process ONE item at a time to prevent token overflow issues.</critical>
|
|
76
|
-
<critical>If using Task tool with sub-agents: NEVER batch multiple workflows/agents in a single invocation.</critical>
|
|
77
|
-
<critical>Each README creation should be a separate operation with its own file save.</critical>
|
|
78
|
-
<critical>Sequential processing is MANDATORY - do not attempt parallel documentation generation.</critical>
|
|
79
|
-
<action>For each individual workflow folder in execution plan (PROCESS ONE AT A TIME):
|
|
80
|
-
1. Read ALL files completely:
|
|
81
|
-
- workflow.yaml (metadata, purpose, configuration)
|
|
82
|
-
- instructions.md (step structure, goals)
|
|
83
|
-
- template.md (output structure) if exists
|
|
84
|
-
- checklist.md (validation criteria) if exists
|
|
85
|
-
- Any supporting data files
|
|
86
|
-
|
|
87
|
-
2. Synthesize understanding:
|
|
88
|
-
- Core purpose and use case
|
|
89
|
-
- Input requirements
|
|
90
|
-
- Output produced
|
|
91
|
-
- Unique characteristics (vs standard BMAD workflow patterns)
|
|
92
|
-
- Key steps or special features
|
|
93
|
-
|
|
94
|
-
3. Generate/update README.md:
|
|
95
|
-
- Add frontmatter: `---\nlast-redoc-date: {{date}}\n---\n`
|
|
96
|
-
- Write 2-4 paragraph technical description
|
|
97
|
-
- Include "Usage" section with invocation command
|
|
98
|
-
- Include "Inputs" section if applicable
|
|
99
|
-
- Include "Outputs" section
|
|
100
|
-
- Be succinct and precise - technical writer quality
|
|
101
|
-
- Focus on DISTINCTIVE features, not boilerplate
|
|
102
|
-
|
|
103
|
-
4. Save README.md to workflow folder
|
|
104
|
-
|
|
105
|
-
<critical>If multiple workflows need documentation, process them SEQUENTIALLY not in parallel. Each workflow gets its own complete processing cycle.</critical>
|
|
106
|
-
</action>
|
|
107
|
-
|
|
108
|
-
<action>For each individual agent file in execution plan (PROCESS ONE AT A TIME):
|
|
109
|
-
|
|
110
|
-
1. Read agent definition file completely:
|
|
111
|
-
- XML structure and metadata
|
|
112
|
-
- Commands and their purposes
|
|
113
|
-
- Activation patterns
|
|
114
|
-
- Persona and communication style
|
|
115
|
-
- Critical actions and workflows invoked
|
|
116
|
-
|
|
117
|
-
2. Synthesize understanding:
|
|
118
|
-
- Agent purpose and role
|
|
119
|
-
- Available commands
|
|
120
|
-
- When to use this agent
|
|
121
|
-
- Unique capabilities
|
|
122
|
-
|
|
123
|
-
3. Generate/update README.md (or agent-name-README.md if in shared folder):
|
|
124
|
-
- Add frontmatter: `---\nlast-redoc-date: {{date}}\n---\n`
|
|
125
|
-
- Write 1-3 paragraph technical description
|
|
126
|
-
- Include "Commands" section listing available commands
|
|
127
|
-
- Include "Usage" section
|
|
128
|
-
- Focus on distinctive features
|
|
129
|
-
|
|
130
|
-
4. Save README.md
|
|
131
|
-
</action>
|
|
132
|
-
|
|
133
|
-
<action if="clarification needed about purpose or unique features">Ask user briefly, then continue</action>
|
|
134
|
-
</step>
|
|
135
|
-
|
|
136
|
-
<step n="4" goal="Process mid-level folder documentation" if="target_type requires folder docs">
|
|
137
|
-
<action>For /workflows folder:
|
|
138
|
-
1. Read ALL workflow README.md files created in Step 3
|
|
139
|
-
2. Categorize workflows by purpose/type if folder is massive (>10 workflows):
|
|
140
|
-
- Document generation workflows
|
|
141
|
-
- Action workflows
|
|
142
|
-
- Meta-workflows
|
|
143
|
-
- Interactive workflows
|
|
144
|
-
|
|
145
|
-
3. If massive folder detected:
|
|
146
|
-
- Create WORKFLOWS-CATALOG.md with categorized listings
|
|
147
|
-
- Each entry: workflow name, 1-sentence description, link to folder
|
|
148
|
-
- Add frontmatter with last-redoc-date
|
|
149
|
-
|
|
150
|
-
4. Generate/update /workflows/README.md:
|
|
151
|
-
- Add frontmatter: `---\nlast-redoc-date: {{date}}\n---\n`
|
|
152
|
-
- High-level summary of workflow collection
|
|
153
|
-
- If catalog exists: reference it
|
|
154
|
-
- If not massive: list all workflows with brief descriptions and links
|
|
155
|
-
- Highlight notable or commonly-used workflows
|
|
156
|
-
- Keep succinct (1-2 paragraphs + list)
|
|
157
|
-
|
|
158
|
-
5. Save README.md
|
|
159
|
-
</action>
|
|
160
|
-
|
|
161
|
-
<action>For /agents folder:
|
|
162
|
-
|
|
163
|
-
1. Read ALL agent README.md files
|
|
164
|
-
2. Categorize agents by type if massive folder (>10 agents):
|
|
165
|
-
- Task agents
|
|
166
|
-
- Meta agents
|
|
167
|
-
- Specialized agents
|
|
168
|
-
- Utility agents
|
|
169
|
-
|
|
170
|
-
3. If massive folder detected:
|
|
171
|
-
- Create AGENTS-CATALOG.md with categorized listings
|
|
172
|
-
- Each entry: agent name, 1-sentence description, link
|
|
173
|
-
- Add frontmatter with last-redoc-date
|
|
174
|
-
|
|
175
|
-
4. Generate/update /agents/README.md:
|
|
176
|
-
- Add frontmatter: `---\nlast-redoc-date: {{date}}\n---\n`
|
|
177
|
-
- High-level summary of agent collection
|
|
178
|
-
- If catalog exists: reference it
|
|
179
|
-
- If not massive: list all agents with brief descriptions
|
|
180
|
-
- Highlight key agents and their purposes
|
|
181
|
-
- Keep succinct
|
|
182
|
-
|
|
183
|
-
5. Save README.md
|
|
184
|
-
</action>
|
|
185
|
-
</step>
|
|
186
|
-
|
|
187
|
-
<step n="5" goal="Process root module documentation" if="target_type is module root">
|
|
188
|
-
<action>For module root README.md:
|
|
189
|
-
1. Read module config.yaml for metadata and configuration
|
|
190
|
-
2. Read /workflows/README.md and /agents/README.md created in Step 4
|
|
191
|
-
3. Identify module's unique purpose within BMAD ecosystem
|
|
192
|
-
|
|
193
|
-
4. Generate/update module README.md:
|
|
194
|
-
- Add frontmatter: `---\nlast-redoc-date: {{date}}\n---\n`
|
|
195
|
-
|
|
196
|
-
Structure:
|
|
197
|
-
- # Module Name
|
|
198
|
-
- **Purpose**: 2-3 sentence high-level module purpose
|
|
199
|
-
- **Overview**: 1-2 paragraphs describing what this module provides
|
|
200
|
-
|
|
201
|
-
- ## Workflows
|
|
202
|
-
- Link to /workflows/README.md with 1-sentence summary
|
|
203
|
-
- Mention count and highlight 2-3 key workflows
|
|
204
|
-
|
|
205
|
-
- ## Agents
|
|
206
|
-
- Link to /agents/README.md with 1-sentence summary
|
|
207
|
-
- Mention count and highlight 2-3 key agents
|
|
208
|
-
|
|
209
|
-
- ## Configuration
|
|
210
|
-
- Notable config.yaml settings if unique/important
|
|
211
|
-
- Reference paths and conventions
|
|
212
|
-
|
|
213
|
-
- ## Usage
|
|
214
|
-
- How to invoke workflows or agents from this module
|
|
215
|
-
- Prerequisites if any
|
|
216
|
-
|
|
217
|
-
Focus on UNIQUE aspects using BMAD convention knowledge:
|
|
218
|
-
- Don't explain standard BMAD patterns
|
|
219
|
-
- Highlight what makes THIS module distinctive
|
|
220
|
-
- Use proper BMAD terminology
|
|
221
|
-
|
|
222
|
-
5. Save README.md to module root
|
|
223
|
-
</action>
|
|
224
|
-
</step>
|
|
225
|
-
|
|
226
|
-
<step n="6" goal="Validation and summary report">
|
|
227
|
-
<action>Verify all planned documentation was created/updated:
|
|
228
|
-
- Check each item in {{doc_execution_plan}}
|
|
229
|
-
- Confirm frontmatter dates are current
|
|
230
|
-
- Validate file paths and links
|
|
231
|
-
</action>
|
|
232
|
-
|
|
233
|
-
<action>Generate summary report showing:
|
|
234
|
-
|
|
235
|
-
- Target documented: {{target_path}}
|
|
236
|
-
- Target type: {{target_type}}
|
|
237
|
-
- Documentation files created/updated (count and list)
|
|
238
|
-
- Any catalog files created
|
|
239
|
-
- Files skipped or requiring manual review (if any)
|
|
240
|
-
- Coverage: X% of items documented
|
|
241
|
-
- Processing notes: Confirm sequential processing was used to avoid token limits
|
|
242
|
-
</action>
|
|
243
|
-
|
|
244
|
-
<action>Display summary to user</action>
|
|
245
|
-
</step>
|
|
246
|
-
|
|
247
|
-
<step n="7" goal="Optional git diff analysis" optional="true">
|
|
248
|
-
<ask>Would you like to see what changed since the last redoc run? [y/n]</ask>
|
|
249
|
-
|
|
250
|
-
<action if="user_response == 'y'">
|
|
251
|
-
For each README with last-redoc-date frontmatter:
|
|
252
|
-
1. Extract last-redoc-date timestamp
|
|
253
|
-
2. Use git log to find files modified since that date in the documented folder
|
|
254
|
-
3. Highlight files that changed but may need documentation updates
|
|
255
|
-
4. Report findings to user
|
|
256
|
-
</action>
|
|
257
|
-
</step>
|
|
258
|
-
|
|
259
|
-
<step n="8" goal="Completion">
|
|
260
|
-
<action>Confirm to {user_name} in {communication_language} that autonomous workflow execution is complete</action>
|
|
261
|
-
<action>Provide path to all updated documentation</action>
|
|
262
|
-
<action>Suggest next steps if needed</action>
|
|
263
|
-
</step>
|
|
264
|
-
|
|
265
|
-
</workflow>
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# ReDoc - Reverse-Tree Documentation Engine
|
|
2
|
-
name: "redoc"
|
|
3
|
-
description: "Autonomous documentation system that maintains module, workflow, and agent documentation using a reverse-tree approach (leaf folders first, then parents). Understands BMAD conventions and produces technical writer quality output."
|
|
4
|
-
author: "BMad"
|
|
5
|
-
|
|
6
|
-
# Critical variables
|
|
7
|
-
config_source: "{project-root}/{bmad_folder}/bmb/config.yaml"
|
|
8
|
-
user_name: "{config_source}:user_name"
|
|
9
|
-
communication_language: "{config_source}:communication_language"
|
|
10
|
-
|
|
11
|
-
# Required knowledge base - BMAD conventions and patterns
|
|
12
|
-
bmad_conventions:
|
|
13
|
-
agent_architecture: "{project-root}/src/modules/bmb/workflows/create-agent/agent-architecture.md"
|
|
14
|
-
agent_command_patterns: "{project-root}/src/modules/bmb/workflows/create-agent/agent-command-patterns.md"
|
|
15
|
-
agent_types: "{project-root}/src/modules/bmb/workflows/create-agent/agent-types.md"
|
|
16
|
-
module_structure: "{project-root}/src/modules/bmb/workflows/create-module/module-structure.md"
|
|
17
|
-
workflow_guide: "{project-root}/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md"
|
|
18
|
-
|
|
19
|
-
# Runtime inputs
|
|
20
|
-
target_path: "" # User specifies: module path, workflow path, agent path, or folder path
|
|
21
|
-
|
|
22
|
-
# Module path and component files
|
|
23
|
-
installed_path: "{project-root}/src/modules/bmb/workflows/redoc"
|
|
24
|
-
template: false # Action workflow - updates files in place
|
|
25
|
-
instructions: "{installed_path}/instructions.md"
|
|
26
|
-
validation: "{installed_path}/checklist.md"
|
|
27
|
-
|
|
28
|
-
# Configuration
|
|
29
|
-
autonomous: true # Runs without user checkpoints unless clarification needed
|
|
30
|
-
|
|
31
|
-
standalone: true
|
|
32
|
-
|
|
33
|
-
# Web bundle configuration
|
|
34
|
-
web_bundle: false # BMB workflows run locally in BMAD-METHOD project
|
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
# BMad Game Development (BMGD)
|
|
2
|
-
|
|
3
|
-
A comprehensive game development toolkit providing specialized agents and workflows for creating games from initial concept through production.
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
The BMGD module brings together game-specific development workflows organized around industry-standard development phases:
|
|
8
|
-
|
|
9
|
-
- **Preproduction** - Concept development, brainstorming, game brief creation
|
|
10
|
-
- **Design** - Game Design Document (GDD) and narrative design
|
|
11
|
-
- **Technical** - Game architecture and technical specifications
|
|
12
|
-
- **Production** - Sprint-based implementation using BMM workflows
|
|
13
|
-
|
|
14
|
-
## Installation
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
bmad install bmgd
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
During installation, you'll be asked to configure:
|
|
21
|
-
|
|
22
|
-
- Game project name
|
|
23
|
-
- Document storage locations
|
|
24
|
-
- Development experience level
|
|
25
|
-
- Primary target platform
|
|
26
|
-
|
|
27
|
-
## Components
|
|
28
|
-
|
|
29
|
-
### Agents (4)
|
|
30
|
-
|
|
31
|
-
**Game Designer** 🎨
|
|
32
|
-
Creative vision and game design documentation specialist. Creates compelling GDDs and defines game mechanics.
|
|
33
|
-
|
|
34
|
-
**Game Developer** 🕹️
|
|
35
|
-
Senior implementation specialist with expertise across Unity, Unreal, and custom engines. Handles gameplay programming, physics, AI, and optimization.
|
|
36
|
-
|
|
37
|
-
**Game Architect** 🏗️
|
|
38
|
-
Technical systems and infrastructure expert. Designs scalable game architecture and engine-level solutions.
|
|
39
|
-
|
|
40
|
-
**Game Dev Scrum Master** 🎯
|
|
41
|
-
Sprint orchestrator specialized in game development workflows. Coordinates multi-disciplinary teams and translates GDDs into actionable development stories.
|
|
42
|
-
|
|
43
|
-
### Team Bundle
|
|
44
|
-
|
|
45
|
-
**Team Game Development** 🎮
|
|
46
|
-
Pre-configured team including Game Designer, Game Developer, and Game Architect for comprehensive game projects.
|
|
47
|
-
|
|
48
|
-
### Workflows
|
|
49
|
-
|
|
50
|
-
#### Phase 1: Preproduction
|
|
51
|
-
|
|
52
|
-
- **brainstorm-game** - Interactive game concept brainstorming
|
|
53
|
-
- **game-brief** - Create focused game brief document
|
|
54
|
-
|
|
55
|
-
#### Phase 2: Design
|
|
56
|
-
|
|
57
|
-
- **gdd** - Generate comprehensive Game Design Document
|
|
58
|
-
- **narrative** - Design narrative structure and story elements
|
|
59
|
-
|
|
60
|
-
#### Phase 3: Technical
|
|
61
|
-
|
|
62
|
-
- **game-architecture** - Define technical architecture (adapted from BMM architecture workflow)
|
|
63
|
-
|
|
64
|
-
#### Phase 4: Production
|
|
65
|
-
|
|
66
|
-
Production workflows are provided by the BMM module and accessible through the Game Dev Scrum Master agent:
|
|
67
|
-
|
|
68
|
-
- Sprint planning
|
|
69
|
-
- Story creation and management
|
|
70
|
-
- Epic technical specifications
|
|
71
|
-
- Code review and retrospectives
|
|
72
|
-
|
|
73
|
-
## Quick Start
|
|
74
|
-
|
|
75
|
-
### 1. Start with Concept Development
|
|
76
|
-
|
|
77
|
-
```
|
|
78
|
-
Load agent: game-designer
|
|
79
|
-
Run workflow: brainstorm-game
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
### 2. Create Game Brief
|
|
83
|
-
|
|
84
|
-
```
|
|
85
|
-
Run workflow: game-brief
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
### 3. Develop Game Design Document
|
|
89
|
-
|
|
90
|
-
```
|
|
91
|
-
Run workflow: gdd
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### 4. Define Technical Architecture
|
|
95
|
-
|
|
96
|
-
```
|
|
97
|
-
Load agent: game-architect
|
|
98
|
-
Run workflow: game-architecture
|
|
99
|
-
```
|
|
100
|
-
|
|
101
|
-
### 5. Begin Production Sprints
|
|
102
|
-
|
|
103
|
-
```
|
|
104
|
-
Load agent: game-scrum-master
|
|
105
|
-
Run: *sprint-planning
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Module Structure
|
|
109
|
-
|
|
110
|
-
```
|
|
111
|
-
bmgd/
|
|
112
|
-
├── agents/
|
|
113
|
-
│ ├── game-designer.agent.yaml
|
|
114
|
-
│ ├── game-dev.agent.yaml
|
|
115
|
-
│ ├── game-architect.agent.yaml
|
|
116
|
-
│ └── game-scrum-master.agent.yaml
|
|
117
|
-
├── teams/
|
|
118
|
-
│ └── team-gamedev.yaml
|
|
119
|
-
├── workflows/
|
|
120
|
-
│ ├── 1-preproduction/
|
|
121
|
-
│ │ ├── brainstorm-game/
|
|
122
|
-
│ │ └── game-brief/
|
|
123
|
-
│ ├── 2-design/
|
|
124
|
-
│ │ ├── gdd/
|
|
125
|
-
│ │ └── narrative/
|
|
126
|
-
│ ├── 3-technical/
|
|
127
|
-
│ │ └── game-architecture/
|
|
128
|
-
│ └── 4-production/
|
|
129
|
-
│ (Uses BMM workflows via cross-module references)
|
|
130
|
-
├── templates/
|
|
131
|
-
├── data/
|
|
132
|
-
└── _module-installer/
|
|
133
|
-
└── install-config.yaml
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
## Configuration
|
|
137
|
-
|
|
138
|
-
After installation, configure the module in `{bmad_folder}/bmgd/config.yaml`
|
|
139
|
-
|
|
140
|
-
Key settings:
|
|
141
|
-
|
|
142
|
-
- **game_project_name** - Your game's working title
|
|
143
|
-
- **game_design_docs** - Location for GDD and design documents
|
|
144
|
-
- **game_tech_docs** - Location for technical documentation
|
|
145
|
-
- **game_story_location** - Location for development user stories
|
|
146
|
-
- **game_dev_experience** - Your experience level (affects agent communication)
|
|
147
|
-
- **primary_platform** - Target platform (PC, mobile, console, web, multi-platform)
|
|
148
|
-
|
|
149
|
-
## Workflow Integration
|
|
150
|
-
|
|
151
|
-
BMGD leverages the BMM module for production/implementation workflows. The Game Dev Scrum Master agent provides access to:
|
|
152
|
-
|
|
153
|
-
- Sprint planning and management
|
|
154
|
-
- Story creation from GDD specifications
|
|
155
|
-
- Epic technical context generation
|
|
156
|
-
- Code review workflows
|
|
157
|
-
- Retrospectives and course correction
|
|
158
|
-
|
|
159
|
-
This separation allows BMGD to focus on game-specific design and architecture while using battle-tested agile implementation workflows.
|
|
160
|
-
|
|
161
|
-
## Example: Creating a 2D Platformer
|
|
162
|
-
|
|
163
|
-
1. **Brainstorm** concepts with `brainstorm-game` workflow
|
|
164
|
-
2. **Define** the vision with `game-brief` workflow
|
|
165
|
-
3. **Design** mechanics and progression with `gdd` workflow
|
|
166
|
-
4. **Craft** character arcs and story with `narrative` workflow
|
|
167
|
-
5. **Architect** technical systems with `game-architecture` workflow
|
|
168
|
-
6. **Implement** via Game Dev Scrum Master sprint workflows
|
|
169
|
-
|
|
170
|
-
## Development Roadmap
|
|
171
|
-
|
|
172
|
-
### Phase 1: Core Enhancement
|
|
173
|
-
|
|
174
|
-
- [ ] Customize game-architecture workflow for game-specific patterns
|
|
175
|
-
- [ ] Add game-specific templates (level design, character sheets, etc.)
|
|
176
|
-
- [ ] Create asset pipeline workflows
|
|
177
|
-
|
|
178
|
-
### Phase 2: Expanded Features
|
|
179
|
-
|
|
180
|
-
- [ ] Add monetization planning workflows
|
|
181
|
-
- [ ] Create playtesting and feedback workflows
|
|
182
|
-
- [ ] Develop game balancing tools
|
|
183
|
-
|
|
184
|
-
### Phase 3: Platform Integration
|
|
185
|
-
|
|
186
|
-
- [ ] Add platform-specific deployment workflows
|
|
187
|
-
- [ ] Create build and release automation
|
|
188
|
-
- [ ] Develop live ops workflows
|
|
189
|
-
|
|
190
|
-
## Contributing
|
|
191
|
-
|
|
192
|
-
To extend this module:
|
|
193
|
-
|
|
194
|
-
1. Add new agents using `/bmad:bmb:workflows:create-agent`
|
|
195
|
-
2. Add new workflows using `/bmad:bmb:workflows:create-workflow`
|
|
196
|
-
3. Submit improvements via pull request
|
|
197
|
-
|
|
198
|
-
## Dependencies
|
|
199
|
-
|
|
200
|
-
- **BMM Module** - Required for production/implementation workflows
|
|
201
|
-
|
|
202
|
-
## Author
|
|
203
|
-
|
|
204
|
-
Extracted and refined from BMM module on 2025-11-05
|
|
205
|
-
|
|
206
|
-
## License
|
|
207
|
-
|
|
208
|
-
Part of the BMAD Method ecosystem
|