mdan-cli 2.5.1 → 2.5.2
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-audit-file-refs/SKILL.md +6 -0
- package/.claude/skills/bmad-os-audit-file-refs/prompts/instructions.md +59 -0
- package/.claude/skills/bmad-os-changelog-social/SKILL.md +177 -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 +6 -0
- package/.claude/skills/bmad-os-diataxis-style-fix/prompts/instructions.md +229 -0
- package/.claude/skills/bmad-os-draft-changelog/SKILL.md +6 -0
- package/.claude/skills/bmad-os-draft-changelog/prompts/instructions.md +82 -0
- package/.claude/skills/bmad-os-gh-triage/SKILL.md +6 -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/SKILL.md +6 -0
- package/.claude/skills/bmad-os-release-module/prompts/instructions.md +53 -0
- package/.claude/skills/bmad-os-review-pr/SKILL.md +6 -0
- package/.claude/skills/bmad-os-review-pr/prompts/instructions.md +231 -0
- package/.claude/skills/bmad-os-root-cause-analysis/SKILL.md +12 -0
- package/.claude/skills/bmad-os-root-cause-analysis/prompts/instructions.md +74 -0
- package/.coderabbit.yaml +85 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/FUNDING.yaml +15 -0
- package/.github/ISSUE_TEMPLATE/bug-report.yaml +124 -0
- package/.github/ISSUE_TEMPLATE/config.yaml +8 -0
- 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 +90 -0
- package/.github/workflows/docs.yaml +64 -0
- package/.github/workflows/quality.yaml +116 -0
- package/.husky/pre-commit +20 -0
- package/.markdownlint-cli2.yaml +41 -0
- package/.nvmrc +1 -0
- package/.prettierignore +12 -0
- package/.vscode/settings.json +96 -0
- package/AGENTS.md +227 -165
- package/AGENTS_LIST.md +946 -0
- package/ARCHITECTURE.md +590 -0
- package/CHANGELOG.md +1770 -0
- package/CNAME +1 -0
- package/CONTRIBUTING.md +512 -0
- package/CONTRIBUTORS.md +32 -0
- package/INSTALL.md +246 -0
- package/LICENSE +30 -0
- package/README.md +133 -194
- package/RELEASE_NOTES.md +246 -0
- package/SECURITY.md +85 -0
- package/TRADEMARK.md +55 -0
- package/USAGE.md +368 -0
- package/Wordmark.png +0 -0
- package/app/__init__.py +5 -0
- package/app/cis/agents/__init__.py +31 -0
- package/app/cis/agents/brainstorming-coach/__init__.py +3 -0
- package/app/cis/agents/brainstorming-coach/agent.py +162 -0
- package/app/cis/agents/brainstorming-coach/prompt.yaml +53 -0
- package/app/cis/agents/creative-problem-solver/__init__.py +3 -0
- package/app/cis/agents/creative-problem-solver/agent.py +233 -0
- package/app/cis/agents/creative-problem-solver/prompt.yaml +74 -0
- package/app/cis/agents/design-thinking-coach/__init__.py +3 -0
- package/app/cis/agents/design-thinking-coach/agent.py +241 -0
- package/app/cis/agents/design-thinking-coach/prompt.yaml +77 -0
- package/app/cis/agents/innovation-strategist/__init__.py +3 -0
- package/app/cis/agents/innovation-strategist/agent.py +271 -0
- package/app/cis/agents/innovation-strategist/prompt.yaml +70 -0
- package/app/cis/agents/presentation-master/__init__.py +3 -0
- package/app/cis/agents/presentation-master/agent.py +420 -0
- package/app/cis/agents/presentation-master/prompt.yaml +62 -0
- package/app/cis/agents/storyteller/__init__.py +3 -0
- package/app/cis/agents/storyteller/agent.py +303 -0
- package/app/cis/agents/storyteller/prompt.yaml +99 -0
- package/app/core/__init__.py +5 -0
- package/app/core/agents/__init__.py +5 -0
- package/app/core/agents/mdan-master/__init__.py +7 -0
- package/app/core/agents/mdan-master/agent.py +302 -0
- package/app/core/agents/mdan-master/prompt.yaml +105 -0
- package/app/mmb/agents/__init__.py +24 -0
- package/app/mmb/agents/agent-builder/__init__.py +5 -0
- package/app/mmb/agents/agent-builder/agent.py +261 -0
- package/app/mmb/agents/agent-builder/prompt.yaml +48 -0
- package/app/mmb/agents/module-builder/__init__.py +5 -0
- package/app/mmb/agents/module-builder/agent.py +299 -0
- package/app/mmb/agents/module-builder/prompt.yaml +50 -0
- package/app/mmb/agents/workflow-builder/__init__.py +5 -0
- package/app/mmb/agents/workflow-builder/agent.py +318 -0
- package/app/mmb/agents/workflow-builder/prompt.yaml +52 -0
- package/app/mmm/agents/__init__.py +48 -0
- package/app/mmm/agents/analyst/__init__.py +7 -0
- package/app/mmm/agents/analyst/agent.py +384 -0
- package/app/mmm/agents/analyst/prompt.yaml +62 -0
- package/app/mmm/agents/architect/__init__.py +7 -0
- package/app/mmm/agents/architect/agent.py +300 -0
- package/app/mmm/agents/architect/prompt.yaml +66 -0
- package/app/mmm/agents/dev/__init__.py +7 -0
- package/app/mmm/agents/dev/agent.py +285 -0
- package/app/mmm/agents/dev/prompt.yaml +62 -0
- package/app/mmm/agents/pm/__init__.py +7 -0
- package/app/mmm/agents/pm/agent.py +417 -0
- package/app/mmm/agents/pm/prompt.yaml +64 -0
- package/app/mmm/agents/qa/__init__.py +7 -0
- package/app/mmm/agents/qa/agent.py +267 -0
- package/app/mmm/agents/qa/prompt.yaml +67 -0
- package/app/mmm/agents/quick-flow-solo-dev/__init__.py +7 -0
- package/app/mmm/agents/quick-flow-solo-dev/agent.py +319 -0
- package/app/mmm/agents/quick-flow-solo-dev/prompt.yaml +60 -0
- package/app/mmm/agents/sm/__init__.py +7 -0
- package/app/mmm/agents/sm/agent.py +357 -0
- package/app/mmm/agents/sm/prompt.yaml +61 -0
- package/app/mmm/agents/tech-writer/__init__.py +7 -0
- package/app/mmm/agents/tech-writer/agent.py +420 -0
- package/app/mmm/agents/tech-writer/prompt.yaml +70 -0
- package/app/mmm/agents/ux-designer/__init__.py +14 -0
- package/app/mmm/agents/ux-designer/agent.py +412 -0
- package/app/mmm/agents/ux-designer/prompt.yaml +37 -0
- package/app/packs/__init__.py +32 -0
- package/app/packs/db-optimization/__init__.py +13 -0
- package/app/packs/db-optimization/agents/__init__.py +11 -0
- package/app/packs/db-optimization/agents/db-performance-analyst/__init__.py +5 -0
- package/app/packs/db-optimization/agents/db-performance-analyst/agent.py +559 -0
- package/app/packs/db-optimization/agents/db-performance-analyst/prompt.yaml +63 -0
- package/app/packs/db-optimization/agents/indexing-specialist/__init__.py +5 -0
- package/app/packs/db-optimization/agents/indexing-specialist/agent.py +713 -0
- package/app/packs/db-optimization/agents/indexing-specialist/prompt.yaml +92 -0
- package/app/packs/db-optimization/agents/query-optimizer/__init__.py +5 -0
- package/app/packs/db-optimization/agents/query-optimizer/agent.py +566 -0
- package/app/packs/db-optimization/agents/query-optimizer/prompt.yaml +74 -0
- package/app/packs/devops-azure/__init__.py +13 -0
- package/app/packs/devops-azure/agents/__init__.py +11 -0
- package/app/packs/devops-azure/agents/azure-specialist/__init__.py +5 -0
- package/app/packs/devops-azure/agents/azure-specialist/agent.py +584 -0
- package/app/packs/devops-azure/agents/azure-specialist/prompt.yaml +301 -0
- package/app/packs/devops-azure/agents/cicd-architect/__init__.py +5 -0
- package/app/packs/devops-azure/agents/cicd-architect/agent.py +665 -0
- package/app/packs/devops-azure/agents/cicd-architect/prompt.yaml +409 -0
- package/app/packs/devops-azure/agents/devops-engineer/__init__.py +5 -0
- package/app/packs/devops-azure/agents/devops-engineer/agent.py +545 -0
- package/app/packs/devops-azure/agents/devops-engineer/prompt.yaml +263 -0
- package/app/packs/fintech/__init__.py +13 -0
- package/app/packs/fintech/agents/__init__.py +11 -0
- package/app/packs/fintech/agents/compliance-officer/__init__.py +5 -0
- package/app/packs/fintech/agents/compliance-officer/agent.py +449 -0
- package/app/packs/fintech/agents/compliance-officer/prompt.yaml +135 -0
- package/app/packs/fintech/agents/financial-analyst/__init__.py +5 -0
- package/app/packs/fintech/agents/financial-analyst/agent.py +392 -0
- package/app/packs/fintech/agents/financial-analyst/prompt.yaml +143 -0
- package/app/packs/fintech/agents/risk-manager/__init__.py +5 -0
- package/app/packs/fintech/agents/risk-manager/agent.py +664 -0
- package/app/packs/fintech/agents/risk-manager/prompt.yaml +240 -0
- package/app/tea/agents/tea/__init__.py +9 -0
- package/app/tea/agents/tea/agent.py +689 -0
- package/app/tea/agents/tea/prompt.yaml +100 -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 +117 -0
- package/docs/how-to/get-answers-about-bmad.md +134 -0
- package/docs/how-to/install-bmad.md +97 -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 +59 -0
- package/docs/reference/agents.md +28 -0
- package/docs/reference/commands.md +151 -0
- package/docs/reference/modules.md +76 -0
- package/docs/reference/testing.md +106 -0
- package/docs/reference/workflow-map.md +89 -0
- package/docs/roadmap.mdx +136 -0
- package/docs/tutorials/getting-started.md +286 -0
- package/eslint.config.mjs +141 -0
- package/package.json +106 -37
- package/prettier.config.mjs +32 -0
- package/prompts/cis/brainstorming-coach.yaml +53 -0
- package/prompts/cis/creative-problem-solver.yaml +74 -0
- package/prompts/cis/design-thinking-coach.yaml +77 -0
- package/prompts/cis/innovation-strategist.yaml +70 -0
- package/prompts/cis/presentation-master.yaml +62 -0
- package/prompts/cis/storyteller.yaml +99 -0
- package/prompts/core/mdan-master.yaml +105 -0
- package/prompts/mmb/agent-builder.yaml +48 -0
- package/prompts/mmb/module-builder.yaml +50 -0
- package/prompts/mmb/workflow-builder.yaml +52 -0
- package/prompts/mmm/analyst.yaml +62 -0
- package/prompts/mmm/architect.yaml +66 -0
- package/prompts/mmm/dev.yaml +62 -0
- package/prompts/mmm/pm.yaml +64 -0
- package/prompts/mmm/qa.yaml +67 -0
- package/prompts/mmm/quick-flow-solo-dev.yaml +60 -0
- package/prompts/mmm/sm.yaml +61 -0
- package/prompts/mmm/tech-writer.yaml +70 -0
- package/prompts/mmm/ux-designer.yaml +33 -0
- package/prompts/packs/db-optimization/db-performance-analyst.yaml +63 -0
- package/prompts/packs/db-optimization/indexing-specialist.yaml +92 -0
- package/prompts/packs/db-optimization/query-optimizer.yaml +74 -0
- package/prompts/packs/devops-azure/azure-specialist.yaml +301 -0
- package/prompts/packs/devops-azure/cicd-architect.yaml +409 -0
- package/prompts/packs/devops-azure/devops-engineer.yaml +263 -0
- package/prompts/packs/fintech/compliance-officer.yaml +135 -0
- package/prompts/packs/fintech/financial-analyst.yaml +143 -0
- package/prompts/packs/fintech/risk-manager.yaml +240 -0
- package/prompts/tea/tea.yaml +100 -0
- package/prompts.json +237 -0
- 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/teams/team-fullstack.yaml +12 -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 +444 -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 +476 -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 +487 -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 +152 -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 +173 -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 +329 -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 +43 -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 +53 -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 +52 -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 +20 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +52 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -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 +189 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +143 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +126 -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/documentation-requirements.csv +12 -0
- package/src/bmm/workflows/document-project/instructions.md +130 -0
- package/src/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
- package/src/bmm/workflows/document-project/templates/index-template.md +169 -0
- package/src/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
- package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/src/bmm/workflows/document-project/templates/source-tree-template.md +135 -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-generate-e2e-tests/checklist.md +33 -0
- package/src/bmm/workflows/qa-generate-e2e-tests/instructions.md +110 -0
- package/src/bmm/workflows/qa-generate-e2e-tests/workflow.yaml +42 -0
- package/src/core/agents/bmad-master.agent.yaml +30 -0
- 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 +208 -0
- package/src/core/tasks/help.md +86 -0
- package/src/core/tasks/index-docs.xml +65 -0
- package/src/core/tasks/review-adversarial-general.xml +49 -0
- package/src/core/tasks/shard-doc.xml +108 -0
- package/src/core/tasks/workflow.xml +235 -0
- package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
- package/src/core/workflows/advanced-elicitation/workflow.xml +118 -0
- package/src/core/workflows/brainstorming/brain-methods.csv +62 -0
- 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 +15 -0
- 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-data.txt +5 -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 +295 -0
- 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 +27 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
- package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
- package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -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 +31 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
- package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
- package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
- package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
- package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
- package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -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 +34 -0
- 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 +24 -0
- package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
- 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 +24 -0
- package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
- package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -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 +387 -0
- package/test/test-cli-integration.sh +159 -0
- package/test/test-file-refs-csv.js +133 -0
- package/test/test-installation-components.js +212 -0
- package/test/test-rehype-plugins.mjs +1050 -0
- package/test/unit-test-schema.js +133 -0
- package/tests/run_all_tests.py +80 -0
- package/tests/scenarios/cis/brainstorming-coach.test.py +150 -0
- package/tests/scenarios/cis/creative-problem-solver.test.py +167 -0
- package/tests/scenarios/cis/design-thinking-coach.test.py +177 -0
- package/tests/scenarios/cis/innovation-strategist.test.py +191 -0
- package/tests/scenarios/cis/presentation-master.test.py +240 -0
- package/tests/scenarios/cis/storyteller.test.py +324 -0
- package/tests/scenarios/core/mdan-master.test.py +281 -0
- package/tests/scenarios/mmb/agent-builder.test.py +124 -0
- package/tests/scenarios/mmb/module-builder.test.py +124 -0
- package/tests/scenarios/mmb/workflow-builder.test.py +124 -0
- package/tests/scenarios/mmm/analyst.test.py +138 -0
- package/tests/scenarios/mmm/architect.test.py +138 -0
- package/tests/scenarios/mmm/dev.test.py +138 -0
- package/tests/scenarios/mmm/pm.test.py +138 -0
- package/tests/scenarios/mmm/qa.test.py +138 -0
- package/tests/scenarios/mmm/quick-flow-solo-dev.test.py +138 -0
- package/tests/scenarios/mmm/sm.test.py +138 -0
- package/tests/scenarios/mmm/tech-writer.test.py +138 -0
- package/tests/scenarios/mmm/ux-designer.test.py +294 -0
- package/tests/scenarios/packs/db-optimization/db-performance-analyst.test.py +108 -0
- package/tests/scenarios/packs/db-optimization/indexing-specialist.test.py +108 -0
- package/tests/scenarios/packs/db-optimization/query-optimizer.test.py +106 -0
- package/tests/scenarios/packs/devops-azure/azure-specialist.test.py +125 -0
- package/tests/scenarios/packs/devops-azure/cicd-architect.test.py +122 -0
- package/tests/scenarios/packs/devops-azure/devops-engineer.test.py +128 -0
- package/tests/scenarios/packs/fintech/compliance-officer.test.py +165 -0
- package/tests/scenarios/packs/fintech/financial-analyst.test.py +184 -0
- package/tests/scenarios/packs/fintech/risk-manager.test.py +171 -0
- package/tests/scenarios/tea/tea.test.py +346 -0
- package/tests/simple_cis_test.py +285 -0
- package/tests/simple_db_optimization_test.py +199 -0
- package/tests/simple_devops_test.py +193 -0
- package/tests/simple_fintech_test.py +205 -0
- package/tests/simple_mmb_test.py +103 -0
- package/tests/simple_mmm_test.py +159 -0
- package/tests/simple_tea_test.py +80 -0
- package/tests/simple_test.py +111 -0
- package/tests/simple_ux_designer_test.py +144 -0
- package/tests/validate_yaml.py +86 -0
- package/tools/bmad-npx-wrapper.js +38 -0
- package/tools/build-docs.mjs +463 -0
- package/tools/cli/README.md +60 -0
- package/tools/cli/bmad-cli.js +106 -0
- package/tools/cli/commands/install.js +87 -0
- package/tools/cli/commands/status.js +65 -0
- package/tools/cli/commands/uninstall.js +167 -0
- 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 +1285 -0
- package/tools/cli/installers/lib/core/custom-module-cache.js +260 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +743 -0
- package/tools/cli/installers/lib/core/detector.js +223 -0
- package/tools/cli/installers/lib/core/ide-config-manager.js +157 -0
- package/tools/cli/installers/lib/core/installer.js +3162 -0
- package/tools/cli/installers/lib/core/manifest-generator.js +1081 -0
- package/tools/cli/installers/lib/core/manifest.js +1038 -0
- package/tools/cli/installers/lib/custom/handler.js +358 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +665 -0
- package/tools/cli/installers/lib/ide/_config-driven.js +634 -0
- package/tools/cli/installers/lib/ide/codex.js +440 -0
- package/tools/cli/installers/lib/ide/github-copilot.js +699 -0
- package/tools/cli/installers/lib/ide/kilo.js +269 -0
- package/tools/cli/installers/lib/ide/manager.js +342 -0
- package/tools/cli/installers/lib/ide/platform-codes.js +100 -0
- package/tools/cli/installers/lib/ide/platform-codes.yaml +243 -0
- package/tools/cli/installers/lib/ide/rovodev.js +257 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +180 -0
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +174 -0
- package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
- package/tools/cli/installers/lib/ide/shared/path-utils.js +299 -0
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +366 -0
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +318 -0
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +8 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +15 -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 +14 -0
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +6 -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 +13 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +13 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +16 -0
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +16 -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/split/.gitkeep +0 -0
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +13 -0
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
- package/tools/cli/installers/lib/message-loader.js +83 -0
- package/tools/cli/installers/lib/modules/external-manager.js +136 -0
- package/tools/cli/installers/lib/modules/manager.js +1498 -0
- package/tools/cli/lib/activation-builder.js +165 -0
- 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 +109 -0
- package/tools/cli/lib/agent-party-generator.js +194 -0
- package/tools/cli/lib/cli-utils.js +182 -0
- package/tools/cli/lib/config.js +213 -0
- package/tools/cli/lib/file-ops.js +204 -0
- package/tools/cli/lib/platform-codes.js +116 -0
- package/tools/cli/lib/project-root.js +77 -0
- package/tools/cli/lib/prompts.js +809 -0
- package/tools/cli/lib/ui.js +1936 -0
- package/tools/cli/lib/xml-handler.js +177 -0
- package/tools/cli/lib/xml-to-markdown.js +82 -0
- package/tools/cli/lib/yaml-format.js +245 -0
- package/tools/cli/lib/yaml-xml-builder.js +587 -0
- 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/format-workflow-md.js +263 -0
- package/tools/lib/xml-utils.js +13 -0
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/platform-codes.yaml +157 -0
- package/tools/schema/agent.js +491 -0
- package/tools/validate-agent-schema.js +110 -0
- package/tools/validate-doc-links.js +407 -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 +136 -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 +119 -0
- package/website/src/styles/custom.css +805 -0
- package/.mcp.json +0 -46
- package/agents/AGENTS-REGISTRY.md +0 -215
- package/agents/architect.md +0 -160
- package/agents/dev.md +0 -166
- package/agents/devops.md +0 -230
- package/agents/doc.md +0 -189
- package/agents/learn.md +0 -377
- package/agents/product.md +0 -124
- package/agents/security.md +0 -168
- package/agents/test.md +0 -209
- package/agents/ux.md +0 -207
- package/cli/mdan.js +0 -628
- package/cli/mdan.py +0 -316
- package/cli/mdan.sh +0 -724
- package/cli/postinstall.js +0 -4
- package/core/orchestrator.md +0 -238
- package/core/universal-envelope.md +0 -160
- package/install.sh +0 -91
- package/integrations/all-integrations.md +0 -300
- package/integrations/claude.md +0 -46
- package/integrations/cursor.md +0 -74
- package/integrations/mcp.md +0 -153
- package/integrations/windsurf.md +0 -48
- package/memory/MDAN-STATE.template.json +0 -44
- package/memory/MEMORY-SYSTEM.md +0 -197
- package/phases/01-discover.md +0 -136
- package/phases/02-design.md +0 -147
- package/phases/03-build.md +0 -113
- package/phases/04-verify.md +0 -107
- package/phases/05-ship.md +0 -156
- package/skills/find-skills/skill.md +0 -133
- package/templates/ARCHITECTURE.md +0 -186
- package/templates/CHANGELOG.md +0 -41
- package/templates/MDAN-KNOWLEDGE.md +0 -73
- package/templates/PRD.md +0 -120
- package/templates/SECURITY-REVIEW.md +0 -99
- package/templates/TEST-PLAN.md +0 -97
- package/templates/prompts/README.md +0 -108
- package/templates/prompts/dev-agent.yaml +0 -85
- package/templates/prompts/orchestrator.yaml +0 -97
- package/templates/prompts.json +0 -81
- package/templates/tests/evaluations/README.md +0 -80
- package/templates/tests/evaluations/classification_eval.md +0 -136
- package/templates/tests/evaluations/rag_eval.md +0 -116
- package/templates/tests/scenarios/README.md +0 -62
- package/templates/tests/scenarios/basic_authentication.test.md +0 -82
- package/templates/tests/scenarios/user_registration.test.md +0 -107
|
@@ -0,0 +1,713 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Indexing Specialist Agent
|
|
3
|
+
|
|
4
|
+
Specialized agent for database index design, optimization, and maintenance strategies.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from typing import Dict, Any, List, Optional
|
|
8
|
+
from dataclasses import dataclass
|
|
9
|
+
import asyncio
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@dataclass
|
|
13
|
+
class IndexingRequest:
|
|
14
|
+
"""Request data structure for the Indexing Specialist agent."""
|
|
15
|
+
|
|
16
|
+
action: str
|
|
17
|
+
db_type: Optional[str] = None
|
|
18
|
+
table_name: Optional[str] = None
|
|
19
|
+
query_patterns: Optional[List[str]] = None
|
|
20
|
+
schema_info: Optional[Dict[str, Any]] = None
|
|
21
|
+
current_indexes: Optional[List[Dict[str, Any]]] = None
|
|
22
|
+
workload_type: Optional[str] = None
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class IndexingSpecialistAgent:
|
|
26
|
+
"""
|
|
27
|
+
Indexing Specialist - Expert in database index design and optimization.
|
|
28
|
+
|
|
29
|
+
Specialized in designing optimal indexing strategies, analyzing index usage,
|
|
30
|
+
and providing index maintenance recommendations. Expert in various index types,
|
|
31
|
+
covering indexes, partial indexes, and index optimization techniques.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
def __init__(self):
|
|
35
|
+
"""Initialize the Indexing Specialist agent."""
|
|
36
|
+
self.name = "Indexing Specialist"
|
|
37
|
+
self.title = "Database Index Design and Optimization Expert"
|
|
38
|
+
self.icon = "📑"
|
|
39
|
+
self.capabilities = [
|
|
40
|
+
"Index design and strategy",
|
|
41
|
+
"Index type selection (B-tree, Hash, GIN, GiST, etc.)",
|
|
42
|
+
"Covering index design",
|
|
43
|
+
"Partial index optimization",
|
|
44
|
+
"Composite index ordering",
|
|
45
|
+
"Index usage analysis",
|
|
46
|
+
"Index maintenance strategies",
|
|
47
|
+
"Index fragmentation management",
|
|
48
|
+
"Index size optimization",
|
|
49
|
+
"Index performance monitoring",
|
|
50
|
+
]
|
|
51
|
+
self.role = "Indexing Expert"
|
|
52
|
+
self.identity = (
|
|
53
|
+
"Expert indexing specialist with deep knowledge of database index "
|
|
54
|
+
"structures, query optimization, and index maintenance strategies. "
|
|
55
|
+
"Specialized in designing efficient indexing solutions for various "
|
|
56
|
+
"workloads and database systems."
|
|
57
|
+
)
|
|
58
|
+
self.communication_style = (
|
|
59
|
+
"Strategic and analytical, focusing on index design principles, "
|
|
60
|
+
"query patterns, and performance trade-offs. Provides specific "
|
|
61
|
+
"index definitions with explanations of their purpose and impact."
|
|
62
|
+
)
|
|
63
|
+
self.principles = [
|
|
64
|
+
"Design indexes based on actual query patterns",
|
|
65
|
+
"Prioritize indexes for the most frequent and expensive queries",
|
|
66
|
+
"Consider the write vs. read trade-off",
|
|
67
|
+
"Use appropriate index types for the data and queries",
|
|
68
|
+
"Avoid over-indexing to minimize write overhead",
|
|
69
|
+
"Monitor index usage and remove unused indexes",
|
|
70
|
+
"Regularly maintain indexes to prevent fragmentation",
|
|
71
|
+
"Consider index size and memory requirements",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
async def process(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
75
|
+
"""
|
|
76
|
+
Process the indexing request and return a response.
|
|
77
|
+
|
|
78
|
+
Args:
|
|
79
|
+
request: The indexing request to process
|
|
80
|
+
|
|
81
|
+
Returns:
|
|
82
|
+
A dictionary containing the indexing analysis and recommendations
|
|
83
|
+
"""
|
|
84
|
+
action = request.action.lower()
|
|
85
|
+
|
|
86
|
+
if action == "design":
|
|
87
|
+
return await self._design_indexes(request)
|
|
88
|
+
elif action == "analyze":
|
|
89
|
+
return await self._analyze_indexes(request)
|
|
90
|
+
elif action == "optimize":
|
|
91
|
+
return await self._optimize_indexes(request)
|
|
92
|
+
elif action == "maintain":
|
|
93
|
+
return await self._maintain_indexes(request)
|
|
94
|
+
elif action == "recommend":
|
|
95
|
+
return await self._recommend_strategy(request)
|
|
96
|
+
else:
|
|
97
|
+
return await self._handle_unknown_action(request)
|
|
98
|
+
|
|
99
|
+
async def _design_indexes(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
100
|
+
"""
|
|
101
|
+
Design indexes for tables.
|
|
102
|
+
|
|
103
|
+
Args:
|
|
104
|
+
request: The request to process
|
|
105
|
+
|
|
106
|
+
Returns:
|
|
107
|
+
Index design recommendations
|
|
108
|
+
"""
|
|
109
|
+
db_type = request.db_type or "PostgreSQL"
|
|
110
|
+
table_name = request.table_name or "users"
|
|
111
|
+
query_patterns = request.query_patterns or []
|
|
112
|
+
schema_info = request.schema_info or {}
|
|
113
|
+
|
|
114
|
+
design = {
|
|
115
|
+
"status": "success",
|
|
116
|
+
"action": "design",
|
|
117
|
+
"db_type": db_type,
|
|
118
|
+
"table_name": table_name,
|
|
119
|
+
"recommended_indexes": self._generate_index_recommendations(
|
|
120
|
+
table_name, query_patterns, schema_info, db_type
|
|
121
|
+
),
|
|
122
|
+
"index_types": self._recommend_index_types(query_patterns, db_type),
|
|
123
|
+
"index_ordering": self._recommend_column_ordering(query_patterns, db_type),
|
|
124
|
+
"covering_indexes": self._design_covering_indexes(
|
|
125
|
+
query_patterns, schema_info, db_type
|
|
126
|
+
),
|
|
127
|
+
"partial_indexes": self._design_partial_indexes(query_patterns, db_type),
|
|
128
|
+
"expected_impact": self._estimate_index_impact(query_patterns, db_type),
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
return design
|
|
132
|
+
|
|
133
|
+
async def _analyze_indexes(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
134
|
+
"""
|
|
135
|
+
Analyze existing indexes.
|
|
136
|
+
|
|
137
|
+
Args:
|
|
138
|
+
request: The request to process
|
|
139
|
+
|
|
140
|
+
Returns:
|
|
141
|
+
Index analysis results
|
|
142
|
+
"""
|
|
143
|
+
db_type = request.db_type or "PostgreSQL"
|
|
144
|
+
current_indexes = request.current_indexes or []
|
|
145
|
+
query_patterns = request.query_patterns or []
|
|
146
|
+
|
|
147
|
+
analysis = {
|
|
148
|
+
"status": "success",
|
|
149
|
+
"action": "analyze",
|
|
150
|
+
"db_type": db_type,
|
|
151
|
+
"current_indexes": current_indexes,
|
|
152
|
+
"index_usage": self._analyze_index_usage(current_indexes, query_patterns),
|
|
153
|
+
"unused_indexes": self._identify_unused_indexes(
|
|
154
|
+
current_indexes, query_patterns
|
|
155
|
+
),
|
|
156
|
+
"duplicate_indexes": self._identify_duplicate_indexes(current_indexes),
|
|
157
|
+
"inefficient_indexes": self._identify_inefficient_indexes(
|
|
158
|
+
current_indexes, query_patterns
|
|
159
|
+
),
|
|
160
|
+
"missing_indexes": self._identify_missing_indexes(
|
|
161
|
+
current_indexes, query_patterns
|
|
162
|
+
),
|
|
163
|
+
"recommendations": self._generate_analysis_recommendations(
|
|
164
|
+
current_indexes, query_patterns
|
|
165
|
+
),
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return analysis
|
|
169
|
+
|
|
170
|
+
async def _optimize_indexes(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
171
|
+
"""
|
|
172
|
+
Optimize existing indexes.
|
|
173
|
+
|
|
174
|
+
Args:
|
|
175
|
+
request: The request to process
|
|
176
|
+
|
|
177
|
+
Returns:
|
|
178
|
+
Index optimization recommendations
|
|
179
|
+
"""
|
|
180
|
+
db_type = request.db_type or "PostgreSQL"
|
|
181
|
+
current_indexes = request.current_indexes or []
|
|
182
|
+
query_patterns = request.query_patterns or []
|
|
183
|
+
|
|
184
|
+
optimization = {
|
|
185
|
+
"status": "success",
|
|
186
|
+
"action": "optimize",
|
|
187
|
+
"db_type": db_type,
|
|
188
|
+
"indexes_to_remove": self._recommend_index_removal(
|
|
189
|
+
current_indexes, query_patterns
|
|
190
|
+
),
|
|
191
|
+
"indexes_to_modify": self._recommend_index_modifications(
|
|
192
|
+
current_indexes, query_patterns
|
|
193
|
+
),
|
|
194
|
+
"indexes_to_add": self._recommend_new_indexes(
|
|
195
|
+
current_indexes, query_patterns
|
|
196
|
+
),
|
|
197
|
+
"rebuild_strategy": self._recommend_rebuild_strategy(db_type),
|
|
198
|
+
"expected_improvement": self._estimate_optimization_improvement(db_type),
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
return optimization
|
|
202
|
+
|
|
203
|
+
async def _maintain_indexes(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
204
|
+
"""
|
|
205
|
+
Provide index maintenance recommendations.
|
|
206
|
+
|
|
207
|
+
Args:
|
|
208
|
+
request: The request to process
|
|
209
|
+
|
|
210
|
+
Returns:
|
|
211
|
+
Index maintenance recommendations
|
|
212
|
+
"""
|
|
213
|
+
db_type = request.db_type or "PostgreSQL"
|
|
214
|
+
|
|
215
|
+
maintenance = {
|
|
216
|
+
"status": "success",
|
|
217
|
+
"action": "maintain",
|
|
218
|
+
"db_type": db_type,
|
|
219
|
+
"maintenance_tasks": self._get_maintenance_tasks(db_type),
|
|
220
|
+
"rebuild_schedule": self._recommend_rebuild_schedule(db_type),
|
|
221
|
+
"fragmentation_management": self._manage_fragmentation(db_type),
|
|
222
|
+
"statistics_update": self._update_statistics(db_type),
|
|
223
|
+
"monitoring": self._setup_index_monitoring(db_type),
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
return maintenance
|
|
227
|
+
|
|
228
|
+
async def _recommend_strategy(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
229
|
+
"""
|
|
230
|
+
Recommend overall indexing strategy.
|
|
231
|
+
|
|
232
|
+
Args:
|
|
233
|
+
request: The request to process
|
|
234
|
+
|
|
235
|
+
Returns:
|
|
236
|
+
Indexing strategy recommendations
|
|
237
|
+
"""
|
|
238
|
+
db_type = request.db_type or "PostgreSQL"
|
|
239
|
+
workload_type = request.workload_type or "mixed"
|
|
240
|
+
query_patterns = request.query_patterns or []
|
|
241
|
+
|
|
242
|
+
strategy = {
|
|
243
|
+
"status": "success",
|
|
244
|
+
"action": "recommend",
|
|
245
|
+
"db_type": db_type,
|
|
246
|
+
"workload_type": workload_type,
|
|
247
|
+
"overall_strategy": self._develop_indexing_strategy(workload_type, db_type),
|
|
248
|
+
"indexing_principles": self._define_indexing_principles(workload_type),
|
|
249
|
+
"implementation_phases": self._plan_implementation(workload_type, db_type),
|
|
250
|
+
"monitoring_plan": self._create_monitoring_plan(db_type),
|
|
251
|
+
"success_metrics": self._define_success_metrics(workload_type),
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
return strategy
|
|
255
|
+
|
|
256
|
+
async def _handle_unknown_action(self, request: IndexingRequest) -> Dict[str, Any]:
|
|
257
|
+
"""
|
|
258
|
+
Handle unknown action.
|
|
259
|
+
|
|
260
|
+
Args:
|
|
261
|
+
request: The request to process
|
|
262
|
+
|
|
263
|
+
Returns:
|
|
264
|
+
Error response
|
|
265
|
+
"""
|
|
266
|
+
return {
|
|
267
|
+
"status": "error",
|
|
268
|
+
"action": request.action,
|
|
269
|
+
"message": f"Unknown action: {request.action}",
|
|
270
|
+
"available_actions": [
|
|
271
|
+
"design",
|
|
272
|
+
"analyze",
|
|
273
|
+
"optimize",
|
|
274
|
+
"maintain",
|
|
275
|
+
"recommend",
|
|
276
|
+
],
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
def _generate_index_recommendations(
|
|
280
|
+
self,
|
|
281
|
+
table_name: str,
|
|
282
|
+
query_patterns: List[str],
|
|
283
|
+
schema_info: Dict[str, Any],
|
|
284
|
+
db_type: str,
|
|
285
|
+
) -> List[Dict[str, Any]]:
|
|
286
|
+
"""Generate index recommendations."""
|
|
287
|
+
recommendations = []
|
|
288
|
+
|
|
289
|
+
# Primary key index
|
|
290
|
+
recommendations.append(
|
|
291
|
+
{
|
|
292
|
+
"name": f"pk_{table_name}",
|
|
293
|
+
"table": table_name,
|
|
294
|
+
"columns": ["id"],
|
|
295
|
+
"type": "btree",
|
|
296
|
+
"unique": True,
|
|
297
|
+
"primary": True,
|
|
298
|
+
"reason": "Primary key for unique identification",
|
|
299
|
+
}
|
|
300
|
+
)
|
|
301
|
+
|
|
302
|
+
# Common query pattern indexes
|
|
303
|
+
if any("WHERE email" in q for q in query_patterns):
|
|
304
|
+
recommendations.append(
|
|
305
|
+
{
|
|
306
|
+
"name": f"idx_{table_name}_email",
|
|
307
|
+
"table": table_name,
|
|
308
|
+
"columns": ["email"],
|
|
309
|
+
"type": "btree",
|
|
310
|
+
"unique": True,
|
|
311
|
+
"reason": "Frequent lookups by email",
|
|
312
|
+
}
|
|
313
|
+
)
|
|
314
|
+
|
|
315
|
+
if any("WHERE user_id" in q for q in query_patterns):
|
|
316
|
+
recommendations.append(
|
|
317
|
+
{
|
|
318
|
+
"name": f"idx_{table_name}_user_id",
|
|
319
|
+
"table": table_name,
|
|
320
|
+
"columns": ["user_id"],
|
|
321
|
+
"type": "btree",
|
|
322
|
+
"reason": "Foreign key for user relationships",
|
|
323
|
+
}
|
|
324
|
+
)
|
|
325
|
+
|
|
326
|
+
if any("ORDER BY created_at" in q for q in query_patterns):
|
|
327
|
+
recommendations.append(
|
|
328
|
+
{
|
|
329
|
+
"name": f"idx_{table_name}_created_at",
|
|
330
|
+
"table": table_name,
|
|
331
|
+
"columns": ["created_at"],
|
|
332
|
+
"type": "btree",
|
|
333
|
+
"reason": "Frequent sorting by creation date",
|
|
334
|
+
}
|
|
335
|
+
)
|
|
336
|
+
|
|
337
|
+
return recommendations
|
|
338
|
+
|
|
339
|
+
def _recommend_index_types(
|
|
340
|
+
self, query_patterns: List[str], db_type: str
|
|
341
|
+
) -> List[Dict[str, Any]]:
|
|
342
|
+
"""Recommend index types."""
|
|
343
|
+
return [
|
|
344
|
+
{
|
|
345
|
+
"type": "btree",
|
|
346
|
+
"use_case": "Equality and range queries, ORDER BY",
|
|
347
|
+
"when_to_use": "Most common index type, good for general purpose",
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"type": "hash",
|
|
351
|
+
"use_case": "Equality queries only",
|
|
352
|
+
"when_to_use": "When only equality comparisons are needed",
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"type": "gin",
|
|
356
|
+
"use_case": "JSONB, arrays, full-text search",
|
|
357
|
+
"when_to_use": "For composite data types and containment queries",
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "gist",
|
|
361
|
+
"use_case": "Geometric data, ranges",
|
|
362
|
+
"when_to_use": "For spatial and range queries",
|
|
363
|
+
},
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
def _recommend_column_ordering(
|
|
367
|
+
self, query_patterns: List[str], db_type: str
|
|
368
|
+
) -> List[str]:
|
|
369
|
+
"""Recommend column ordering in composite indexes."""
|
|
370
|
+
return [
|
|
371
|
+
"Most selective column first",
|
|
372
|
+
"Equality columns before range columns",
|
|
373
|
+
"Columns used in WHERE before ORDER BY",
|
|
374
|
+
"Consider query frequency and selectivity",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
def _design_covering_indexes(
|
|
378
|
+
self, query_patterns: List[str], schema_info: Dict[str, Any], db_type: str
|
|
379
|
+
) -> List[Dict[str, Any]]:
|
|
380
|
+
"""Design covering indexes."""
|
|
381
|
+
return [
|
|
382
|
+
{
|
|
383
|
+
"name": "idx_covering_user_orders",
|
|
384
|
+
"table": "orders",
|
|
385
|
+
"columns": ["user_id", "status", "created_at", "total"],
|
|
386
|
+
"type": "btree",
|
|
387
|
+
"reason": "Covering index for user order queries - enables index-only scan",
|
|
388
|
+
"benefit": "Eliminates table access, improves query performance",
|
|
389
|
+
},
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
def _design_partial_indexes(
|
|
393
|
+
self, query_patterns: List[str], db_type: str
|
|
394
|
+
) -> List[Dict[str, Any]]:
|
|
395
|
+
"""Design partial indexes."""
|
|
396
|
+
return [
|
|
397
|
+
{
|
|
398
|
+
"name": "idx_active_users",
|
|
399
|
+
"table": "users",
|
|
400
|
+
"columns": ["email"],
|
|
401
|
+
"type": "btree",
|
|
402
|
+
"where": "active = true",
|
|
403
|
+
"reason": "Index only active users, smaller and faster",
|
|
404
|
+
"benefit": "Reduced index size, faster queries on active users",
|
|
405
|
+
},
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
def _estimate_index_impact(
|
|
409
|
+
self, query_patterns: List[str], db_type: str
|
|
410
|
+
) -> Dict[str, str]:
|
|
411
|
+
"""Estimate index impact."""
|
|
412
|
+
return {
|
|
413
|
+
"query_performance": "50-90% improvement for indexed queries",
|
|
414
|
+
"write_performance": "10-30% slowdown for INSERT/UPDATE/DELETE",
|
|
415
|
+
"storage_overhead": "20-50% of table size",
|
|
416
|
+
"memory_usage": "Indexes cached in memory for faster access",
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
def _analyze_index_usage(
|
|
420
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
421
|
+
) -> Dict[str, Any]:
|
|
422
|
+
"""Analyze index usage."""
|
|
423
|
+
return {
|
|
424
|
+
"total_indexes": len(current_indexes),
|
|
425
|
+
"frequently_used": len(current_indexes) // 2,
|
|
426
|
+
"rarely_used": len(current_indexes) // 4,
|
|
427
|
+
"unused": len(current_indexes) // 4,
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
def _identify_unused_indexes(
|
|
431
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
432
|
+
) -> List[Dict[str, Any]]:
|
|
433
|
+
"""Identify unused indexes."""
|
|
434
|
+
return [
|
|
435
|
+
{
|
|
436
|
+
"name": "idx_unused_column",
|
|
437
|
+
"table": "users",
|
|
438
|
+
"reason": "No queries use this index",
|
|
439
|
+
"recommendation": "Consider dropping to reduce write overhead",
|
|
440
|
+
},
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
def _identify_duplicate_indexes(
|
|
444
|
+
self, current_indexes: List[Dict[str, Any]]
|
|
445
|
+
) -> List[Dict[str, Any]]:
|
|
446
|
+
"""Identify duplicate indexes."""
|
|
447
|
+
return [
|
|
448
|
+
{
|
|
449
|
+
"duplicate_1": "idx_users_email",
|
|
450
|
+
"duplicate_2": "idx_users_email_unique",
|
|
451
|
+
"reason": "Both indexes on same column",
|
|
452
|
+
"recommendation": "Keep only the unique index",
|
|
453
|
+
},
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
def _identify_inefficient_indexes(
|
|
457
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
458
|
+
) -> List[Dict[str, Any]]:
|
|
459
|
+
"""Identify inefficient indexes."""
|
|
460
|
+
return [
|
|
461
|
+
{
|
|
462
|
+
"name": "idx_inefficient",
|
|
463
|
+
"table": "users",
|
|
464
|
+
"issue": "Low selectivity column",
|
|
465
|
+
"reason": "Column has few distinct values",
|
|
466
|
+
"recommendation": "Consider removing or using partial index",
|
|
467
|
+
},
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
def _identify_missing_indexes(
|
|
471
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
472
|
+
) -> List[Dict[str, Any]]:
|
|
473
|
+
"""Identify missing indexes."""
|
|
474
|
+
return [
|
|
475
|
+
{
|
|
476
|
+
"table": "orders",
|
|
477
|
+
"columns": ["user_id", "created_at"],
|
|
478
|
+
"reason": "Frequent query pattern not covered",
|
|
479
|
+
"priority": "high",
|
|
480
|
+
},
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
def _generate_analysis_recommendations(
|
|
484
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
485
|
+
) -> List[Dict[str, Any]]:
|
|
486
|
+
"""Generate analysis recommendations."""
|
|
487
|
+
return [
|
|
488
|
+
{
|
|
489
|
+
"action": "drop_unused",
|
|
490
|
+
"indexes": ["idx_unused_column"],
|
|
491
|
+
"benefit": "Reduce write overhead and storage",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"action": "add_missing",
|
|
495
|
+
"indexes": ["idx_orders_user_created"],
|
|
496
|
+
"benefit": "Improve query performance",
|
|
497
|
+
},
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
def _recommend_index_removal(
|
|
501
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
502
|
+
) -> List[Dict[str, Any]]:
|
|
503
|
+
"""Recommend index removal."""
|
|
504
|
+
return [
|
|
505
|
+
{
|
|
506
|
+
"name": "idx_unused_column",
|
|
507
|
+
"reason": "Unused index",
|
|
508
|
+
"impact": "Reduces write overhead",
|
|
509
|
+
},
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
def _recommend_index_modifications(
|
|
513
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
514
|
+
) -> List[Dict[str, Any]]:
|
|
515
|
+
"""Recommend index modifications."""
|
|
516
|
+
return [
|
|
517
|
+
{
|
|
518
|
+
"name": "idx_users_email",
|
|
519
|
+
"modification": "Add INCLUDE clause for covering",
|
|
520
|
+
"reason": "Enable index-only scan",
|
|
521
|
+
},
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
def _recommend_new_indexes(
|
|
525
|
+
self, current_indexes: List[Dict[str, Any]], query_patterns: List[str]
|
|
526
|
+
) -> List[Dict[str, Any]]:
|
|
527
|
+
"""Recommend new indexes."""
|
|
528
|
+
return [
|
|
529
|
+
{
|
|
530
|
+
"name": "idx_orders_user_created",
|
|
531
|
+
"table": "orders",
|
|
532
|
+
"columns": ["user_id", "created_at"],
|
|
533
|
+
"type": "btree",
|
|
534
|
+
"reason": "Support frequent query pattern",
|
|
535
|
+
},
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
def _recommend_rebuild_strategy(self, db_type: str) -> Dict[str, Any]:
|
|
539
|
+
"""Recommend rebuild strategy."""
|
|
540
|
+
return {
|
|
541
|
+
"frequency": "monthly",
|
|
542
|
+
"method": "REINDEX CONCURRENTLY",
|
|
543
|
+
"maintenance_window": "low-traffic period",
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
def _estimate_optimization_improvement(self, db_type: str) -> Dict[str, str]:
|
|
547
|
+
"""Estimate optimization improvement."""
|
|
548
|
+
return {
|
|
549
|
+
"query_performance": "20-40% improvement",
|
|
550
|
+
"storage": "10-20% reduction",
|
|
551
|
+
"write_performance": "10-15% improvement",
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
def _get_maintenance_tasks(self, db_type: str) -> List[Dict[str, Any]]:
|
|
555
|
+
"""Get maintenance tasks."""
|
|
556
|
+
return [
|
|
557
|
+
{
|
|
558
|
+
"task": "REINDEX",
|
|
559
|
+
"frequency": "monthly",
|
|
560
|
+
"purpose": "Rebuild fragmented indexes",
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"task": "ANALYZE",
|
|
564
|
+
"frequency": "weekly",
|
|
565
|
+
"purpose": "Update statistics for query planner",
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"task": "VACUUM",
|
|
569
|
+
"frequency": "daily",
|
|
570
|
+
"purpose": "Reclaim space and update statistics",
|
|
571
|
+
},
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
def _recommend_rebuild_schedule(self, db_type: str) -> Dict[str, Any]:
|
|
575
|
+
"""Recommend rebuild schedule."""
|
|
576
|
+
return {
|
|
577
|
+
"full_rebuild": "monthly",
|
|
578
|
+
"partial_rebuild": "weekly",
|
|
579
|
+
"maintenance_window": "2:00 AM - 4:00 AM",
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
def _manage_fragmentation(self, db_type: str) -> List[str]:
|
|
583
|
+
"""Manage fragmentation."""
|
|
584
|
+
return [
|
|
585
|
+
"Monitor index fragmentation levels",
|
|
586
|
+
"Rebuild indexes when fragmentation > 30%",
|
|
587
|
+
"Use FILLFACTOR to reduce fragmentation",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
def _update_statistics(self, db_type: str) -> List[str]:
|
|
591
|
+
"""Update statistics."""
|
|
592
|
+
return [
|
|
593
|
+
"Run ANALYZE after significant data changes",
|
|
594
|
+
"Schedule automatic statistics updates",
|
|
595
|
+
"Monitor statistics accuracy",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
def _setup_index_monitoring(self, db_type: str) -> Dict[str, Any]:
|
|
599
|
+
"""Set up index monitoring."""
|
|
600
|
+
return {
|
|
601
|
+
"metrics": [
|
|
602
|
+
"index usage count",
|
|
603
|
+
"index size",
|
|
604
|
+
"index scan time",
|
|
605
|
+
"index hit ratio",
|
|
606
|
+
],
|
|
607
|
+
"alerts": [
|
|
608
|
+
"Unused index detected",
|
|
609
|
+
"Index fragmentation high",
|
|
610
|
+
"Index size growing rapidly",
|
|
611
|
+
],
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
def _develop_indexing_strategy(
|
|
615
|
+
self, workload_type: str, db_type: str
|
|
616
|
+
) -> Dict[str, Any]:
|
|
617
|
+
"""Develop indexing strategy."""
|
|
618
|
+
strategies = {
|
|
619
|
+
"read_heavy": {
|
|
620
|
+
"approach": "Aggressive indexing",
|
|
621
|
+
"focus": "Optimize for query performance",
|
|
622
|
+
"trade_off": "Accept higher write overhead",
|
|
623
|
+
},
|
|
624
|
+
"write_heavy": {
|
|
625
|
+
"approach": "Conservative indexing",
|
|
626
|
+
"focus": "Minimize write impact",
|
|
627
|
+
"trade_off": "Accept slower queries",
|
|
628
|
+
},
|
|
629
|
+
"mixed": {
|
|
630
|
+
"approach": "Balanced indexing",
|
|
631
|
+
"focus": "Optimize for most frequent queries",
|
|
632
|
+
"trade_off": "Balance read and write performance",
|
|
633
|
+
},
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
return strategies.get(workload_type, strategies["mixed"])
|
|
637
|
+
|
|
638
|
+
def _define_indexing_principles(self, workload_type: str) -> List[str]:
|
|
639
|
+
"""Define indexing principles."""
|
|
640
|
+
return [
|
|
641
|
+
"Index based on actual query patterns",
|
|
642
|
+
"Prioritize high-impact indexes",
|
|
643
|
+
"Monitor and adjust regularly",
|
|
644
|
+
"Consider the full lifecycle of indexes",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
def _plan_implementation(
|
|
648
|
+
self, workload_type: str, db_type: str
|
|
649
|
+
) -> List[Dict[str, Any]]:
|
|
650
|
+
"""Plan implementation phases."""
|
|
651
|
+
return [
|
|
652
|
+
{
|
|
653
|
+
"phase": 1,
|
|
654
|
+
"description": "Add high-priority indexes",
|
|
655
|
+
"duration": "1 week",
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"phase": 2,
|
|
659
|
+
"description": "Monitor and adjust",
|
|
660
|
+
"duration": "2 weeks",
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"phase": 3,
|
|
664
|
+
"description": "Remove unused indexes",
|
|
665
|
+
"duration": "1 week",
|
|
666
|
+
},
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
def _create_monitoring_plan(self, db_type: str) -> Dict[str, Any]:
|
|
670
|
+
"""Create monitoring plan."""
|
|
671
|
+
return {
|
|
672
|
+
"daily_checks": ["index usage", "index size"],
|
|
673
|
+
"weekly_reviews": ["index effectiveness", "query performance"],
|
|
674
|
+
"monthly_audits": ["index strategy review", "index cleanup"],
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
def _define_success_metrics(self, workload_type: str) -> List[Dict[str, Any]]:
|
|
678
|
+
"""Define success metrics."""
|
|
679
|
+
return [
|
|
680
|
+
{
|
|
681
|
+
"metric": "query_performance",
|
|
682
|
+
"target": "50% improvement",
|
|
683
|
+
"measurement": "Average query time",
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"metric": "index_usage",
|
|
687
|
+
"target": "> 80% of indexes used",
|
|
688
|
+
"measurement": "Index scan count",
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"metric": "write_overhead",
|
|
692
|
+
"target": "< 20% slowdown",
|
|
693
|
+
"measurement": "Insert/update/delete time",
|
|
694
|
+
},
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
def get_info(self) -> Dict[str, Any]:
|
|
698
|
+
"""
|
|
699
|
+
Get agent information.
|
|
700
|
+
|
|
701
|
+
Returns:
|
|
702
|
+
Agent information dictionary
|
|
703
|
+
"""
|
|
704
|
+
return {
|
|
705
|
+
"name": self.name,
|
|
706
|
+
"title": self.title,
|
|
707
|
+
"icon": self.icon,
|
|
708
|
+
"role": self.role,
|
|
709
|
+
"capabilities": self.capabilities,
|
|
710
|
+
"identity": self.identity,
|
|
711
|
+
"communication_style": self.communication_style,
|
|
712
|
+
"principles": self.principles,
|
|
713
|
+
}
|