bmad-elsabro 1.0.0
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/.auto-claude-security.json +209 -0
- package/.claude_settings.json +34 -0
- package/.coderabbit.yaml +40 -0
- package/.nvmrc +1 -0
- package/.prettierignore +9 -0
- package/AI_TEST_GENERATOR_VERIFICATION.md +260 -0
- package/BUDGET_ALERT_TESTING.md +325 -0
- package/CHANGELOG.md +1488 -0
- package/CNAME +1 -0
- package/CONTRIBUTING.md +167 -0
- package/CONTRIBUTORS.md +32 -0
- package/LEGACY_MIGRATION_TESTING.md +428 -0
- package/LICENSE +30 -0
- package/PARTY_MODE_VERIFICATION.md +274 -0
- package/PROJECT_DETECTOR_TESTING.md +288 -0
- package/README.md +236 -0
- package/SECURITY.md +85 -0
- package/TRADEMARK.md +55 -0
- package/WORKFLOW_ROUTER_IMPLEMENTATION.md +379 -0
- package/Wordmark.png +0 -0
- package/banner-bmad-method.png +0 -0
- package/build/icons/512x512.png +0 -0
- package/build-mac.sh +3 -0
- package/docs/404.md +9 -0
- package/docs/_STYLE_GUIDE.md +367 -0
- package/docs/developer/api-reference.md +945 -0
- package/docs/developer/architecture.md +563 -0
- package/docs/developer/contributing.md +831 -0
- package/docs/downloads.md +74 -0
- package/docs/explanation/advanced-elicitation.md +24 -0
- package/docs/explanation/adversarial-review.md +57 -0
- package/docs/explanation/brainstorming.md +31 -0
- package/docs/explanation/brownfield-faq.md +55 -0
- package/docs/explanation/party-mode.md +57 -0
- package/docs/explanation/preventing-agent-conflicts.md +110 -0
- package/docs/explanation/quick-flow.md +27 -0
- package/docs/explanation/why-solutioning-matters.md +75 -0
- package/docs/how-to/brownfield/index.md +84 -0
- package/docs/how-to/brownfield/quick-fix-in-brownfield.md +76 -0
- package/docs/how-to/customize-bmad.md +158 -0
- package/docs/how-to/get-answers-about-bmad.md +102 -0
- package/docs/how-to/install-bmad.md +82 -0
- package/docs/how-to/shard-large-documents.md +101 -0
- package/docs/how-to/upgrade-to-v6.md +131 -0
- package/docs/index.md +56 -0
- package/docs/reference/workflow-map.md +83 -0
- package/docs/tea/explanation/engagement-models.md +710 -0
- package/docs/tea/explanation/fixture-architecture.md +457 -0
- package/docs/tea/explanation/knowledge-base-system.md +554 -0
- package/docs/tea/explanation/network-first-patterns.md +853 -0
- package/docs/tea/explanation/risk-based-testing.md +586 -0
- package/docs/tea/explanation/tea-overview.md +410 -0
- package/docs/tea/explanation/test-quality-standards.md +907 -0
- package/docs/tea/explanation/testing-as-engineering.md +112 -0
- package/docs/tea/glossary/index.md +159 -0
- package/docs/tea/how-to/brownfield/use-tea-for-enterprise.md +525 -0
- package/docs/tea/how-to/brownfield/use-tea-with-existing-tests.md +577 -0
- package/docs/tea/how-to/customization/enable-tea-mcp-enhancements.md +424 -0
- package/docs/tea/how-to/customization/integrate-playwright-utils.md +813 -0
- package/docs/tea/how-to/workflows/run-atdd.md +436 -0
- package/docs/tea/how-to/workflows/run-automate.md +653 -0
- package/docs/tea/how-to/workflows/run-nfr-assess.md +679 -0
- package/docs/tea/how-to/workflows/run-test-design.md +135 -0
- package/docs/tea/how-to/workflows/run-test-review.md +605 -0
- package/docs/tea/how-to/workflows/run-trace.md +883 -0
- package/docs/tea/how-to/workflows/setup-ci.md +712 -0
- package/docs/tea/how-to/workflows/setup-test-framework.md +98 -0
- package/docs/tea/reference/commands.md +276 -0
- package/docs/tea/reference/configuration.md +678 -0
- package/docs/tea/reference/knowledge-base.md +340 -0
- package/docs/tea/tutorials/tea-lite-quickstart.md +444 -0
- package/docs/tutorials/getting-started.md +205 -0
- package/docs/user-guide/getting-started.md +348 -0
- package/docs/user-guide/token-economy.md +601 -0
- package/docs/user-guide/workflows.md +546 -0
- package/electron-builder.yml +75 -0
- package/eslint.config.mjs +152 -0
- package/package.json +162 -0
- package/prettier.config.mjs +32 -0
- package/public/monaco-workers/index.js +21 -0
- package/renderer/App.tsx +311 -0
- package/renderer/components/ChatPanel.tsx +285 -0
- package/renderer/components/CodeEditor.tsx +327 -0
- package/renderer/components/CodeEditor.types.ts +245 -0
- package/renderer/components/FlowSelector.tsx +534 -0
- package/renderer/components/MessageInput.tsx +252 -0
- package/renderer/components/MessageList.tsx +204 -0
- package/renderer/components/MigrationWizard.tsx +896 -0
- package/renderer/components/NotificationCenter.tsx +291 -0
- package/renderer/components/OnboardingWizard.tsx +112 -0
- package/renderer/components/PartyMode.tsx +555 -0
- package/renderer/components/Sidebar.module.css +258 -0
- package/renderer/components/Sidebar.tsx +157 -0
- package/renderer/components/TemplateSelector.tsx +553 -0
- package/renderer/components/Terminal.tsx +523 -0
- package/renderer/components/TestCenter.tsx +364 -0
- package/renderer/components/TokenAnalytics.tsx +607 -0
- package/renderer/components/TokenMonitor.tsx +331 -0
- package/renderer/components/TutorialOverlay.tsx +483 -0
- package/renderer/components/WorkflowEditor.tsx +470 -0
- package/renderer/components/onboarding/Step1Welcome.tsx +72 -0
- package/renderer/components/onboarding/Step2Setup.tsx +193 -0
- package/renderer/components/onboarding/Step3CreateProject.tsx +209 -0
- package/renderer/components/test-center/CoverageDashboard.tsx +588 -0
- package/renderer/components/test-center/ELI5Guide.tsx +521 -0
- package/renderer/components/test-center/TestList.tsx +381 -0
- package/renderer/components/test-center/TestRunner.tsx +431 -0
- package/renderer/components/test-center/TestStepWizard.tsx +1000 -0
- package/renderer/components/test-center/VisualTestBuilder.tsx +460 -0
- package/renderer/components/workflow/DependencyEdge.tsx +200 -0
- package/renderer/components/workflow/StepNode.tsx +234 -0
- package/renderer/components/workflow/StepPalette.tsx +412 -0
- package/renderer/context/ThemeContext.tsx +97 -0
- package/renderer/data/shortcuts.json +94 -0
- package/renderer/data/testing-guides.json +261 -0
- package/renderer/data/tutorials.json +546 -0
- package/renderer/hooks/useKeyboardShortcuts.ts +249 -0
- package/renderer/hooks/useNotifications.ts +267 -0
- package/renderer/hooks/useTheme.ts +149 -0
- package/renderer/hooks/useTokenTracking.ts +464 -0
- package/renderer/hooks/useWorkflowState.ts +309 -0
- package/renderer/index.html +16 -0
- package/renderer/index.tsx +17 -0
- package/renderer/lib/MONACO_OFFLINE_CONFIG.md +153 -0
- package/renderer/lib/chart-utils.ts +472 -0
- package/renderer/lib/file-system-provider.ts +295 -0
- package/renderer/lib/monaco-loader.ts +247 -0
- package/renderer/renderer/components/NOTIFICATION_SYSTEM.md +192 -0
- package/renderer/styles.css +55 -0
- package/renderer/types/css-modules.d.ts +21 -0
- package/renderer/types/electron.d.ts +316 -0
- package/src/bmm/_module-installer/installer.js +48 -0
- package/src/bmm/agents/analyst.agent.yaml +36 -0
- package/src/bmm/agents/architect.agent.yaml +28 -0
- package/src/bmm/agents/dev.agent.yaml +38 -0
- package/src/bmm/agents/parallel-orchestrator.agent.yaml +50 -0
- package/src/bmm/agents/pm.agent.yaml +46 -0
- package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
- package/src/bmm/agents/sm.agent.yaml +36 -0
- package/src/bmm/agents/tea.agent.yaml +63 -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 +45 -0
- package/src/bmm/agents/ux-designer.agent.yaml +26 -0
- package/src/bmm/agents/yolo-dev.agent.yaml +41 -0
- package/src/bmm/data/auto-testing-config.yaml +84 -0
- package/src/bmm/data/guided-mode-instructions.yaml +112 -0
- package/src/bmm/data/parallelization-config.yaml +136 -0
- package/src/bmm/data/project-context-template.md +26 -0
- package/src/bmm/data/speed-profiles.yaml +127 -0
- package/src/bmm/module-help.csv +32 -0
- package/src/bmm/module.yaml +60 -0
- package/src/bmm/teams/default-party.csv +21 -0
- package/src/bmm/teams/team-fullstack.yaml +12 -0
- package/src/bmm/testarch/knowledge/adr-quality-readiness-checklist.md +350 -0
- package/src/bmm/testarch/knowledge/api-request.md +442 -0
- package/src/bmm/testarch/knowledge/api-testing-patterns.md +843 -0
- package/src/bmm/testarch/knowledge/auth-session.md +552 -0
- package/src/bmm/testarch/knowledge/burn-in.md +273 -0
- package/src/bmm/testarch/knowledge/ci-burn-in.md +675 -0
- package/src/bmm/testarch/knowledge/component-tdd.md +486 -0
- package/src/bmm/testarch/knowledge/contract-testing.md +957 -0
- package/src/bmm/testarch/knowledge/data-factories.md +500 -0
- package/src/bmm/testarch/knowledge/email-auth.md +721 -0
- package/src/bmm/testarch/knowledge/error-handling.md +725 -0
- package/src/bmm/testarch/knowledge/feature-flags.md +750 -0
- package/src/bmm/testarch/knowledge/file-utils.md +463 -0
- package/src/bmm/testarch/knowledge/fixture-architecture.md +401 -0
- package/src/bmm/testarch/knowledge/fixtures-composition.md +382 -0
- package/src/bmm/testarch/knowledge/intercept-network-call.md +430 -0
- package/src/bmm/testarch/knowledge/log.md +429 -0
- package/src/bmm/testarch/knowledge/network-error-monitor.md +405 -0
- package/src/bmm/testarch/knowledge/network-first.md +486 -0
- package/src/bmm/testarch/knowledge/network-recorder.md +527 -0
- package/src/bmm/testarch/knowledge/nfr-criteria.md +670 -0
- package/src/bmm/testarch/knowledge/overview.md +286 -0
- package/src/bmm/testarch/knowledge/playwright-config.md +730 -0
- package/src/bmm/testarch/knowledge/probability-impact.md +601 -0
- package/src/bmm/testarch/knowledge/recurse.md +421 -0
- package/src/bmm/testarch/knowledge/risk-governance.md +615 -0
- package/src/bmm/testarch/knowledge/selective-testing.md +732 -0
- package/src/bmm/testarch/knowledge/selector-resilience.md +527 -0
- package/src/bmm/testarch/knowledge/test-healing-patterns.md +644 -0
- package/src/bmm/testarch/knowledge/test-levels-framework.md +473 -0
- package/src/bmm/testarch/knowledge/test-priorities-matrix.md +373 -0
- package/src/bmm/testarch/knowledge/test-quality.md +664 -0
- package/src/bmm/testarch/knowledge/timing-debugging.md +372 -0
- package/src/bmm/testarch/knowledge/visual-debugging.md +524 -0
- package/src/bmm/testarch/tea-index.csv +35 -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 +58 -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-02-customer-insights.md +200 -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 +239 -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.md +173 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +13 -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-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 +218 -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/validation-report-prd-workflow.md +433 -0
- package/src/bmm/workflows/2-plan-workflows/create-prd/workflow.md +150 -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 +43 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +190 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +178 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +179 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +139 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +252 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +135 -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 +55 -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 +11 -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 +50 -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 +59 -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 +51 -0
- package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
- package/src/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +60 -0
- package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +345 -0
- package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +61 -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 +32 -0
- package/src/bmm/workflows/4-implementation/fix-and-test/workflow.md +197 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1443 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +58 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +225 -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 +54 -0
- package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +229 -0
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +36 -0
- package/src/bmm/workflows/bmad-quick-flow/brownfield-fast-track/steps/step-01-detect.md +55 -0
- package/src/bmm/workflows/bmad-quick-flow/brownfield-fast-track/steps/step-02-confirm.md +48 -0
- package/src/bmm/workflows/bmad-quick-flow/brownfield-fast-track/steps/step-03-implement.md +61 -0
- package/src/bmm/workflows/bmad-quick-flow/brownfield-fast-track/workflow.md +41 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +176 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +120 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +153 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +113 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +106 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +149 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +73 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +192 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +145 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +128 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +201 -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 +93 -0
- package/src/bmm/workflows/bmad-quick-flow/yolo-mode/steps/step-01-rapid-spec.md +54 -0
- package/src/bmm/workflows/bmad-quick-flow/yolo-mode/steps/step-02-ship-it.md +65 -0
- package/src/bmm/workflows/bmad-quick-flow/yolo-mode/workflow.md +54 -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 +221 -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 +30 -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/excalidraw-diagrams/_shared/excalidraw-library.json +90 -0
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +127 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +39 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +130 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +43 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +141 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +49 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +241 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +38 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +133 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +27 -0
- package/src/bmm/workflows/parallel-work/parallel-analysis/steps/step-01-parse-target.md +49 -0
- package/src/bmm/workflows/parallel-work/parallel-analysis/steps/step-02-launch-streams.md +135 -0
- package/src/bmm/workflows/parallel-work/parallel-analysis/steps/step-03-sync-point.md +74 -0
- package/src/bmm/workflows/parallel-work/parallel-analysis/steps/step-04-merge-insights.md +179 -0
- package/src/bmm/workflows/parallel-work/parallel-analysis/workflow.md +55 -0
- package/src/bmm/workflows/parallel-work/parallel-generation/workflow.md +109 -0
- package/src/bmm/workflows/parallel-work/parallel-reviews/workflow.md +111 -0
- package/src/bmm/workflows/parallel-work/parallel-stories/workflow.md +112 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-01-load-sprint.md +54 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-02-plan-execution.md +63 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-03-execute-stories.md +112 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-04-code-review.md +148 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-05-integration-testing.md +200 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/steps/step-06-sprint-report.md +290 -0
- package/src/bmm/workflows/parallel-work/sprint-mode/workflow.md +58 -0
- package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +363 -0
- package/src/bmm/workflows/testarch/atdd/checklist.md +374 -0
- package/src/bmm/workflows/testarch/atdd/instructions.md +806 -0
- package/src/bmm/workflows/testarch/atdd/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/automate/checklist.md +582 -0
- package/src/bmm/workflows/testarch/automate/instructions.md +1324 -0
- package/src/bmm/workflows/testarch/automate/workflow.yaml +54 -0
- package/src/bmm/workflows/testarch/ci/checklist.md +247 -0
- package/src/bmm/workflows/testarch/ci/github-actions-template.yaml +198 -0
- package/src/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +149 -0
- package/src/bmm/workflows/testarch/ci/instructions.md +536 -0
- package/src/bmm/workflows/testarch/ci/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/framework/checklist.md +320 -0
- package/src/bmm/workflows/testarch/framework/instructions.md +481 -0
- package/src/bmm/workflows/testarch/framework/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/nfr-assess/checklist.md +407 -0
- package/src/bmm/workflows/testarch/nfr-assess/instructions.md +726 -0
- package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +461 -0
- package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/test-design/checklist.md +407 -0
- package/src/bmm/workflows/testarch/test-design/instructions.md +1158 -0
- package/src/bmm/workflows/testarch/test-design/test-design-architecture-template.md +213 -0
- package/src/bmm/workflows/testarch/test-design/test-design-qa-template.md +286 -0
- package/src/bmm/workflows/testarch/test-design/test-design-template.md +294 -0
- package/src/bmm/workflows/testarch/test-design/workflow.yaml +71 -0
- package/src/bmm/workflows/testarch/test-review/checklist.md +472 -0
- package/src/bmm/workflows/testarch/test-review/instructions.md +628 -0
- package/src/bmm/workflows/testarch/test-review/test-review-template.md +390 -0
- package/src/bmm/workflows/testarch/test-review/workflow.yaml +48 -0
- package/src/bmm/workflows/testarch/trace/checklist.md +642 -0
- package/src/bmm/workflows/testarch/trace/instructions.md +1030 -0
- package/src/bmm/workflows/testarch/trace/trace-template.md +675 -0
- package/src/bmm/workflows/testarch/trace/workflow.yaml +57 -0
- package/src/core/_module-installer/installer.js +60 -0
- package/src/core/agents/bmad-master.agent.yaml +29 -0
- package/src/core/module-help.csv +9 -0
- package/src/core/module.yaml +25 -0
- package/src/core/resources/excalidraw/README.md +160 -0
- package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
- package/src/core/resources/excalidraw/library-loader.md +50 -0
- package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
- package/src/core/tasks/editorial-review-prose.xml +100 -0
- package/src/core/tasks/editorial-review-structure.xml +209 -0
- package/src/core/tasks/help.md +62 -0
- package/src/core/tasks/index-docs.xml +65 -0
- package/src/core/tasks/review-adversarial-general.xml +48 -0
- package/src/core/tasks/shard-doc.xml +109 -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 +117 -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 +157 -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/tools/bmad-npx-wrapper.js +69 -0
- package/tools/build-docs.js +577 -0
- package/tools/cli/README.md +7 -0
- package/tools/cli/bmad-cli.js +65 -0
- package/tools/cli/commands/diagnostics.js +303 -0
- package/tools/cli/commands/install.js +87 -0
- package/tools/cli/commands/module.js +210 -0
- package/tools/cli/commands/status.js +65 -0
- package/tools/cli/commands/uninstall.js +86 -0
- package/tools/cli/external-official-modules.yaml +54 -0
- package/tools/cli/installers/install-messages.yaml +59 -0
- package/tools/cli/installers/lib/core/config-collector.js +1079 -0
- package/tools/cli/installers/lib/core/custom-module-cache.js +259 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +739 -0
- package/tools/cli/installers/lib/core/detector.js +223 -0
- package/tools/cli/installers/lib/core/ide-config-manager.js +156 -0
- package/tools/cli/installers/lib/core/installer.js +2812 -0
- package/tools/cli/installers/lib/core/manifest-generator.js +1054 -0
- package/tools/cli/installers/lib/core/manifest.js +1036 -0
- package/tools/cli/installers/lib/custom/handler.js +363 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +655 -0
- package/tools/cli/installers/lib/ide/_config-driven.js +450 -0
- package/tools/cli/installers/lib/ide/codex.js +440 -0
- package/tools/cli/installers/lib/ide/kilo.js +250 -0
- package/tools/cli/installers/lib/ide/kiro-cli.js +326 -0
- package/tools/cli/installers/lib/ide/manager.js +271 -0
- 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 +181 -0
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +163 -0
- package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
- package/tools/cli/installers/lib/ide/shared/path-utils.js +292 -0
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +270 -0
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +319 -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-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-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/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/opencode/body.md +10 -0
- package/tools/cli/installers/lib/ide/templates/split/opencode/header.md +4 -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 +85 -0
- package/tools/cli/installers/lib/modules/external-manager.js +135 -0
- package/tools/cli/installers/lib/modules/manager.js +1375 -0
- package/tools/cli/lib/activation-builder.js +163 -0
- package/tools/cli/lib/agent/compiler.js +522 -0
- package/tools/cli/lib/agent/compiler.ts +572 -0
- package/tools/cli/lib/agent/installer.js +716 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/agent/types.ts +155 -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 +227 -0
- package/tools/cli/lib/config.js +213 -0
- package/tools/cli/lib/config.ts +227 -0
- package/tools/cli/lib/file-ops.js +204 -0
- package/tools/cli/lib/file-ops.ts +215 -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 +433 -0
- package/tools/cli/lib/prompts.ts +541 -0
- package/tools/cli/lib/types/config.types.ts +43 -0
- package/tools/cli/lib/types/xml-handler.types.ts +50 -0
- package/tools/cli/lib/ui.js +1660 -0
- package/tools/cli/lib/xml-handler.js +177 -0
- package/tools/cli/lib/xml-handler.ts +188 -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/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
- package/tools/docs/fix-refs.md +91 -0
- package/tools/docs/index.md +2 -0
- package/tools/fix-doc-links.js +288 -0
- package/tools/flattener/aggregate.js +76 -0
- package/tools/flattener/aggregate.ts +78 -0
- package/tools/flattener/binary.js +80 -0
- package/tools/flattener/discovery.js +71 -0
- package/tools/flattener/files.js +35 -0
- package/tools/flattener/files.ts +31 -0
- package/tools/flattener/ignoreRules.js +172 -0
- package/tools/flattener/main.js +483 -0
- package/tools/flattener/main.ts +262 -0
- package/tools/flattener/projectRoot.js +201 -0
- package/tools/flattener/prompts.js +44 -0
- package/tools/flattener/stats.helpers.js +368 -0
- package/tools/flattener/stats.js +75 -0
- package/tools/flattener/test-matrix.js +409 -0
- package/tools/flattener/types.ts +53 -0
- package/tools/flattener/xml.js +82 -0
- package/tools/format-workflow-md.js +263 -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 +157 -0
- package/tools/schema/agent.js +491 -0
- package/tools/schema/agent.ts +489 -0
- package/tools/schema/agent.types.ts +31 -0
- package/tools/update-bmad.sh +24 -0
- package/tools/validate-agent-schema.js +110 -0
- package/tools/validate-doc-links.js +371 -0
- package/tools/validate-svg-changes.sh +356 -0
- package/vite-plugin-monaco-editor.ts +108 -0
|
@@ -0,0 +1,546 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Working with Workflows"
|
|
3
|
+
description: Master visual workflow editing, execution, and Party Mode in BMAD Studio
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Use BMAD Studio's Visual Workflow Editor to create, modify, and execute AI-powered workflows with drag-and-drop simplicity and real-time visualization.
|
|
7
|
+
|
|
8
|
+
## What You'll Learn
|
|
9
|
+
|
|
10
|
+
- Navigate the Visual Workflow Editor interface
|
|
11
|
+
- Create workflows using drag-and-drop step composition
|
|
12
|
+
- Execute workflows with real-time progress tracking
|
|
13
|
+
- Use Party Mode for multi-agent coordination
|
|
14
|
+
- Debug workflows with integrated tools
|
|
15
|
+
- Import and export workflow definitions
|
|
16
|
+
|
|
17
|
+
:::note[Prerequisites]
|
|
18
|
+
- BMAD Studio installed and configured
|
|
19
|
+
- At least one project initialized
|
|
20
|
+
- Basic understanding of BMAD workflows and agents
|
|
21
|
+
:::
|
|
22
|
+
|
|
23
|
+
:::tip[Quick Path]
|
|
24
|
+
**Open Workflows** → Select or create workflow
|
|
25
|
+
**Drag Steps** → Add steps from palette to canvas
|
|
26
|
+
**Connect** → Link steps to define execution order
|
|
27
|
+
**Configure** → Set step parameters and conditions
|
|
28
|
+
**Execute** → Run workflow with real-time tracking
|
|
29
|
+
:::
|
|
30
|
+
|
|
31
|
+
## Understanding Workflows in BMAD Studio
|
|
32
|
+
|
|
33
|
+
Workflows in BMAD Studio combine the power of the CLI tool with visual editing capabilities:
|
|
34
|
+
|
|
35
|
+
| Component | What It Does |
|
|
36
|
+
| --------- | ------------ |
|
|
37
|
+
| **Workflow Canvas** | Visual graph showing step sequence and dependencies |
|
|
38
|
+
| **Step Palette** | Library of 102+ available steps organized by category |
|
|
39
|
+
| **Properties Panel** | Configure selected step parameters and conditions |
|
|
40
|
+
| **Execution Panel** | Real-time progress, logs, and token usage during runs |
|
|
41
|
+
| **Validation Engine** | Real-time checking for errors and missing configurations |
|
|
42
|
+
|
|
43
|
+
### Workflow Types
|
|
44
|
+
|
|
45
|
+
| Type | Purpose | Key Features |
|
|
46
|
+
| ---- | ------- | ------------ |
|
|
47
|
+
| **Analysis** | Brainstorming, research, product briefs | Analyst agent, ideation steps, research tools |
|
|
48
|
+
| **Planning** | PRD, architecture, epics, stories | PM and Architect agents, document generation |
|
|
49
|
+
| **Implementation** | Story execution, code review, testing | DEV agent, code generation, validation |
|
|
50
|
+
| **Testing** | Test design, automation, NFR assessment | Test agents, fixture generation, coverage analysis |
|
|
51
|
+
|
|
52
|
+
## The Visual Workflow Editor
|
|
53
|
+
|
|
54
|
+
### Opening the Editor
|
|
55
|
+
|
|
56
|
+
1. Navigate to **Workflows** in the sidebar
|
|
57
|
+
2. Choose an action:
|
|
58
|
+
- **Create Workflow** — Start from scratch
|
|
59
|
+
- **Open Existing** — Edit predefined workflows (28+ included)
|
|
60
|
+
- **Import** — Load workflow from YAML/JSON file
|
|
61
|
+
- **Clone** — Duplicate and modify existing workflow
|
|
62
|
+
|
|
63
|
+
### Editor Layout
|
|
64
|
+
|
|
65
|
+
| Area | Location | Purpose |
|
|
66
|
+
| ---- | -------- | ------- |
|
|
67
|
+
| **Toolbar** | Top | Save, run, validate, export, settings |
|
|
68
|
+
| **Step Palette** | Left panel | Drag steps to canvas, organized by phase |
|
|
69
|
+
| **Canvas** | Center | Visual workflow graph with steps and connections |
|
|
70
|
+
| **Properties Panel** | Right panel | Configure selected step or workflow settings |
|
|
71
|
+
| **Execution Panel** | Bottom (when running) | Progress, logs, token usage, errors |
|
|
72
|
+
|
|
73
|
+
### Keyboard Shortcuts
|
|
74
|
+
|
|
75
|
+
| Shortcut | Action |
|
|
76
|
+
| -------- | ------ |
|
|
77
|
+
| `Ctrl+S` / `Cmd+S` | Save workflow |
|
|
78
|
+
| `Ctrl+R` / `Cmd+R` | Run workflow |
|
|
79
|
+
| `Ctrl+V` / `Cmd+V` | Validate workflow |
|
|
80
|
+
| `Del` / `Backspace` | Delete selected step |
|
|
81
|
+
| `Ctrl+Z` / `Cmd+Z` | Undo last action |
|
|
82
|
+
| `Ctrl+Y` / `Cmd+Y` | Redo action |
|
|
83
|
+
| `Ctrl+F` / `Cmd+F` | Search steps in palette |
|
|
84
|
+
|
|
85
|
+
## Creating Workflows
|
|
86
|
+
|
|
87
|
+
### Step 1: Initialize New Workflow
|
|
88
|
+
|
|
89
|
+
1. Click **Create Workflow** in the Workflows view
|
|
90
|
+
2. Enter workflow details:
|
|
91
|
+
- **Name** — Descriptive workflow name (e.g., "custom-feature-development")
|
|
92
|
+
- **Description** — What the workflow accomplishes
|
|
93
|
+
- **Phase** — Analysis, Planning, Implementation, or Testing
|
|
94
|
+
- **Default Agent** — Primary agent for this workflow (can be changed)
|
|
95
|
+
|
|
96
|
+
### Step 2: Add Steps to Canvas
|
|
97
|
+
|
|
98
|
+
**From the Step Palette:**
|
|
99
|
+
|
|
100
|
+
1. Browse or search the step library (102+ steps)
|
|
101
|
+
2. Drag a step to the canvas
|
|
102
|
+
3. Drop it in the desired position
|
|
103
|
+
4. The step appears as a node on the graph
|
|
104
|
+
|
|
105
|
+
**Step Categories:**
|
|
106
|
+
|
|
107
|
+
- **Analysis** — Brainstorming, research, discovery steps
|
|
108
|
+
- **Planning** — Requirements, architecture, design steps
|
|
109
|
+
- **Implementation** — Coding, review, integration steps
|
|
110
|
+
- **Testing** — Test design, automation, validation steps
|
|
111
|
+
- **Utilities** — File operations, formatting, validation steps
|
|
112
|
+
|
|
113
|
+
:::tip[Search Steps]
|
|
114
|
+
Press `Ctrl+F` (or `Cmd+F`) in the workflow editor to quickly search for steps by name or keyword.
|
|
115
|
+
:::
|
|
116
|
+
|
|
117
|
+
### Step 3: Connect Steps
|
|
118
|
+
|
|
119
|
+
**Define Execution Order:**
|
|
120
|
+
|
|
121
|
+
1. Click the **output port** (right side) of the first step
|
|
122
|
+
2. Drag to the **input port** (left side) of the next step
|
|
123
|
+
3. Release to create a connection
|
|
124
|
+
4. Arrows show execution flow
|
|
125
|
+
|
|
126
|
+
**Connection Types:**
|
|
127
|
+
|
|
128
|
+
- **Sequential** — Solid line: Always execute next step
|
|
129
|
+
- **Conditional** — Dashed line: Execute if condition met
|
|
130
|
+
- **Parallel** — Multiple outputs: Execute steps simultaneously
|
|
131
|
+
|
|
132
|
+
### Step 4: Configure Step Properties
|
|
133
|
+
|
|
134
|
+
**Select a step to view properties panel:**
|
|
135
|
+
|
|
136
|
+
| Property | Description |
|
|
137
|
+
| -------- | ----------- |
|
|
138
|
+
| **Name** | Step identifier (must be unique in workflow) |
|
|
139
|
+
| **Description** | What this step does |
|
|
140
|
+
| **Agent** | Which agent executes this step (default or custom) |
|
|
141
|
+
| **Inputs** | Required input parameters and files |
|
|
142
|
+
| **Outputs** | Files and data produced by this step |
|
|
143
|
+
| **Conditions** | When to execute (always, on success, on failure, custom) |
|
|
144
|
+
| **Timeout** | Maximum execution time before cancellation |
|
|
145
|
+
|
|
146
|
+
**Parameter Types:**
|
|
147
|
+
|
|
148
|
+
- **Text** — Free-form string input
|
|
149
|
+
- **File Path** — Select file from project
|
|
150
|
+
- **Options** — Select from predefined choices
|
|
151
|
+
- **Boolean** — True/false toggle
|
|
152
|
+
- **JSON** — Structured data input with validation
|
|
153
|
+
|
|
154
|
+
### Step 5: Validate Workflow
|
|
155
|
+
|
|
156
|
+
Click **Validate** button (or press `Ctrl+V` / `Cmd+V`):
|
|
157
|
+
|
|
158
|
+
**Validation Checks:**
|
|
159
|
+
|
|
160
|
+
- All required parameters provided
|
|
161
|
+
- Step names are unique
|
|
162
|
+
- No circular dependencies
|
|
163
|
+
- All steps have valid connections
|
|
164
|
+
- Agent configurations exist
|
|
165
|
+
- Input files referenced are available
|
|
166
|
+
|
|
167
|
+
**Validation Results:**
|
|
168
|
+
|
|
169
|
+
- ✓ **Valid** — Green checkmark, ready to execute
|
|
170
|
+
- ⚠️ **Warnings** — Yellow triangle, can execute but check issues
|
|
171
|
+
- ✗ **Errors** — Red X, must fix before execution
|
|
172
|
+
|
|
173
|
+
:::caution[Fix Errors Before Running]
|
|
174
|
+
Workflows with validation errors cannot be executed. Address all red X errors shown in the validation panel.
|
|
175
|
+
:::
|
|
176
|
+
|
|
177
|
+
### Step 6: Save Workflow
|
|
178
|
+
|
|
179
|
+
1. Click **Save** button (or press `Ctrl+S` / `Cmd+S`)
|
|
180
|
+
2. Workflow saved to `.bmad/workflows/` in YAML format
|
|
181
|
+
3. Workflow now appears in your workflows list
|
|
182
|
+
4. Can be executed from editor or workflows list
|
|
183
|
+
|
|
184
|
+
## Executing Workflows
|
|
185
|
+
|
|
186
|
+
### Starting Execution
|
|
187
|
+
|
|
188
|
+
**From the Editor:**
|
|
189
|
+
|
|
190
|
+
1. Open workflow in Visual Workflow Editor
|
|
191
|
+
2. Click **Run** button (or press `Ctrl+R` / `Cmd+R`)
|
|
192
|
+
3. Execution Panel appears at bottom
|
|
193
|
+
4. Steps execute in defined order
|
|
194
|
+
|
|
195
|
+
**From the Workflows List:**
|
|
196
|
+
|
|
197
|
+
1. Navigate to Workflows in sidebar
|
|
198
|
+
2. Find workflow in list
|
|
199
|
+
3. Click **Run** icon (▶️) next to workflow name
|
|
200
|
+
4. Execution begins in background
|
|
201
|
+
|
|
202
|
+
### Execution Panel
|
|
203
|
+
|
|
204
|
+
**During execution, the panel shows:**
|
|
205
|
+
|
|
206
|
+
| Section | Information |
|
|
207
|
+
| ------- | ----------- |
|
|
208
|
+
| **Progress Bar** | Overall workflow completion percentage |
|
|
209
|
+
| **Current Step** | Which step is currently executing |
|
|
210
|
+
| **Step Status** | Pending, running, completed, or failed for each step |
|
|
211
|
+
| **Logs** | Real-time output from executing steps |
|
|
212
|
+
| **Token Usage** | Running total of tokens consumed |
|
|
213
|
+
| **Elapsed Time** | How long the workflow has been running |
|
|
214
|
+
|
|
215
|
+
**Step Status Indicators:**
|
|
216
|
+
|
|
217
|
+
- ⏳ **Pending** — Gray: Waiting to execute
|
|
218
|
+
- ▶️ **Running** — Blue: Currently executing
|
|
219
|
+
- ✓ **Completed** — Green: Finished successfully
|
|
220
|
+
- ✗ **Failed** — Red: Error occurred
|
|
221
|
+
- ⏸️ **Paused** — Yellow: Waiting for user input or approval
|
|
222
|
+
|
|
223
|
+
### Monitoring Execution
|
|
224
|
+
|
|
225
|
+
**Real-Time Updates:**
|
|
226
|
+
|
|
227
|
+
- Canvas highlights current step in blue
|
|
228
|
+
- Completed steps turn green
|
|
229
|
+
- Failed steps turn red
|
|
230
|
+
- Logs stream to Execution Panel
|
|
231
|
+
- Token counter updates in real-time
|
|
232
|
+
|
|
233
|
+
**Interaction During Execution:**
|
|
234
|
+
|
|
235
|
+
- **Pause** — Stop execution, resume later
|
|
236
|
+
- **Cancel** — Terminate workflow immediately
|
|
237
|
+
- **View Logs** — Expand log viewer for detailed output
|
|
238
|
+
- **Respond to Prompts** — Some steps require user input
|
|
239
|
+
|
|
240
|
+
:::note[User Input Steps]
|
|
241
|
+
When a workflow step requires input (e.g., confirmation, selection), execution pauses. Respond to the prompt in the Execution Panel to continue.
|
|
242
|
+
:::
|
|
243
|
+
|
|
244
|
+
### Execution Completion
|
|
245
|
+
|
|
246
|
+
**On Success:**
|
|
247
|
+
|
|
248
|
+
- All steps show green checkmarks
|
|
249
|
+
- Summary shows total time and tokens used
|
|
250
|
+
- Output files saved to `.bmad-output/`
|
|
251
|
+
- Notification appears: "Workflow completed successfully"
|
|
252
|
+
|
|
253
|
+
**On Failure:**
|
|
254
|
+
|
|
255
|
+
- Failed step highlighted in red
|
|
256
|
+
- Error message displayed in logs
|
|
257
|
+
- Workflow stops at failure point
|
|
258
|
+
- Option to restart from failed step or beginning
|
|
259
|
+
|
|
260
|
+
## Party Mode: Multi-Agent Coordination
|
|
261
|
+
|
|
262
|
+
Party Mode allows multiple agents to work on different parts of a workflow simultaneously.
|
|
263
|
+
|
|
264
|
+
### When to Use Party Mode
|
|
265
|
+
|
|
266
|
+
- **Large Projects** — Multiple epics that can be developed in parallel
|
|
267
|
+
- **Independent Features** — Non-overlapping code changes
|
|
268
|
+
- **Accelerated Development** — When speed is critical
|
|
269
|
+
- **Resource Utilization** — Maximize AI agent efficiency
|
|
270
|
+
|
|
271
|
+
### Enabling Party Mode
|
|
272
|
+
|
|
273
|
+
1. Open workflow in Visual Workflow Editor
|
|
274
|
+
2. Click **Party Mode** button in toolbar
|
|
275
|
+
3. Select steps that can run in parallel
|
|
276
|
+
4. Assign different agents to parallel branches
|
|
277
|
+
5. Configure coordination settings
|
|
278
|
+
|
|
279
|
+
### Party Mode Configuration
|
|
280
|
+
|
|
281
|
+
| Setting | Purpose |
|
|
282
|
+
| ------- | ------- |
|
|
283
|
+
| **Max Concurrent Agents** | How many agents run simultaneously (2-5 recommended) |
|
|
284
|
+
| **Resource Locking** | Prevent agents from editing same files |
|
|
285
|
+
| **Coordination Strategy** | How agents communicate (shared memory, message queue) |
|
|
286
|
+
| **Conflict Resolution** | What happens when agents modify same code |
|
|
287
|
+
|
|
288
|
+
### Coordination Dashboard
|
|
289
|
+
|
|
290
|
+
When Party Mode is active:
|
|
291
|
+
|
|
292
|
+
- Each agent has a separate panel showing its progress
|
|
293
|
+
- Shared resources panel shows file locks
|
|
294
|
+
- Conflict detection alerts appear in real-time
|
|
295
|
+
- Merge strategy selector for resolving conflicts
|
|
296
|
+
- Combined token usage across all agents
|
|
297
|
+
|
|
298
|
+
:::caution[Preventing Conflicts]
|
|
299
|
+
Use resource locking to prevent multiple agents from modifying the same files. Review the [Preventing Agent Conflicts](/docs/explanation/preventing-agent-conflicts.md) guide for best practices.
|
|
300
|
+
:::
|
|
301
|
+
|
|
302
|
+
## Debugging Workflows
|
|
303
|
+
|
|
304
|
+
### Common Issues
|
|
305
|
+
|
|
306
|
+
**Step Won't Execute:**
|
|
307
|
+
|
|
308
|
+
- Check that all required parameters are provided
|
|
309
|
+
- Verify input files exist at specified paths
|
|
310
|
+
- Ensure agent configuration is valid
|
|
311
|
+
- Check timeout settings aren't too short
|
|
312
|
+
|
|
313
|
+
**Wrong Output Generated:**
|
|
314
|
+
|
|
315
|
+
- Review step configuration parameters
|
|
316
|
+
- Check agent prompt templates in `.bmad/agents/`
|
|
317
|
+
- Verify input files contain expected data
|
|
318
|
+
- Examine step logs for AI reasoning
|
|
319
|
+
|
|
320
|
+
**Workflow Hangs:**
|
|
321
|
+
|
|
322
|
+
- Check for circular dependencies in step connections
|
|
323
|
+
- Verify steps aren't waiting for unavailable resources
|
|
324
|
+
- Look for steps with infinite retry loops
|
|
325
|
+
- Review timeout settings in step properties
|
|
326
|
+
|
|
327
|
+
### Debug Tools
|
|
328
|
+
|
|
329
|
+
| Tool | Purpose |
|
|
330
|
+
| ---- | ------- |
|
|
331
|
+
| **Step Logs** | Detailed output from each step execution |
|
|
332
|
+
| **Validation Report** | Pre-execution checks and warnings |
|
|
333
|
+
| **Dry Run Mode** | Simulate execution without making changes |
|
|
334
|
+
| **Breakpoints** | Pause execution at specific steps |
|
|
335
|
+
| **Variable Inspector** | View workflow variables and state |
|
|
336
|
+
|
|
337
|
+
### Using Breakpoints
|
|
338
|
+
|
|
339
|
+
1. Right-click on a step in the canvas
|
|
340
|
+
2. Select **Add Breakpoint**
|
|
341
|
+
3. Red dot appears on step
|
|
342
|
+
4. Workflow pauses when reaching this step
|
|
343
|
+
5. Inspect variables and logs before continuing
|
|
344
|
+
|
|
345
|
+
## Importing and Exporting
|
|
346
|
+
|
|
347
|
+
### Export Workflow
|
|
348
|
+
|
|
349
|
+
**To share or backup workflows:**
|
|
350
|
+
|
|
351
|
+
1. Open workflow in editor
|
|
352
|
+
2. Click **Export** in toolbar
|
|
353
|
+
3. Choose export format:
|
|
354
|
+
- **YAML** — Human-readable, editable
|
|
355
|
+
- **JSON** — Machine-readable, programmatic use
|
|
356
|
+
- **Visual Archive** — Includes canvas layout metadata
|
|
357
|
+
4. Save to desired location
|
|
358
|
+
|
|
359
|
+
### Import Workflow
|
|
360
|
+
|
|
361
|
+
**To use workflows from others:**
|
|
362
|
+
|
|
363
|
+
1. Click **Import** in Workflows view
|
|
364
|
+
2. Select file (YAML, JSON, or archive)
|
|
365
|
+
3. Review imported workflow details
|
|
366
|
+
4. Click **Import** to add to your workflows
|
|
367
|
+
5. Workflow appears in workflows list
|
|
368
|
+
|
|
369
|
+
### Migrating CLI Workflows
|
|
370
|
+
|
|
371
|
+
**Convert existing CLI workflows to visual format:**
|
|
372
|
+
|
|
373
|
+
1. Navigate to Workflows → **Import Legacy**
|
|
374
|
+
2. Select `.bmad/workflows/` folder from CLI project
|
|
375
|
+
3. Migration wizard analyzes YAML files
|
|
376
|
+
4. Each workflow converted to visual format
|
|
377
|
+
5. Review and adjust connections in editor
|
|
378
|
+
|
|
379
|
+
:::tip[Batch Import]
|
|
380
|
+
The Legacy Migration Wizard can import multiple workflows at once. Select a folder containing multiple YAML workflow files.
|
|
381
|
+
:::
|
|
382
|
+
|
|
383
|
+
## Workflow Templates
|
|
384
|
+
|
|
385
|
+
### Using Domain Templates
|
|
386
|
+
|
|
387
|
+
BMAD Studio includes pre-configured workflow templates:
|
|
388
|
+
|
|
389
|
+
| Domain | Templates Included |
|
|
390
|
+
| ------ | ------------------ |
|
|
391
|
+
| **Healthcare** | HIPAA compliance, patient data workflows, medical device docs |
|
|
392
|
+
| **FinTech** | PCI compliance, transaction processing, audit trail generation |
|
|
393
|
+
| **E-Commerce** | Product catalog, cart, checkout, order fulfillment workflows |
|
|
394
|
+
| **SaaS** | User onboarding, subscription management, multi-tenant setup |
|
|
395
|
+
| **Enterprise** | SSO integration, role-based access, compliance reporting |
|
|
396
|
+
|
|
397
|
+
**To use a template:**
|
|
398
|
+
|
|
399
|
+
1. Click **Create Workflow** → **From Template**
|
|
400
|
+
2. Browse domain categories
|
|
401
|
+
3. Select template
|
|
402
|
+
4. Customize for your project
|
|
403
|
+
5. Save as new workflow
|
|
404
|
+
|
|
405
|
+
### Creating Custom Templates
|
|
406
|
+
|
|
407
|
+
**Save your workflows as templates:**
|
|
408
|
+
|
|
409
|
+
1. Open workflow in editor
|
|
410
|
+
2. Click **Save as Template**
|
|
411
|
+
3. Enter template details:
|
|
412
|
+
- Name and description
|
|
413
|
+
- Domain category
|
|
414
|
+
- Tags for searchability
|
|
415
|
+
4. Template saved to templates library
|
|
416
|
+
5. Reusable across all projects
|
|
417
|
+
|
|
418
|
+
## Advanced Features
|
|
419
|
+
|
|
420
|
+
### Dynamic Routing
|
|
421
|
+
|
|
422
|
+
Configure workflows to automatically select execution paths:
|
|
423
|
+
|
|
424
|
+
**Based on Project Type:**
|
|
425
|
+
|
|
426
|
+
- React projects skip backend steps
|
|
427
|
+
- API projects skip frontend steps
|
|
428
|
+
- Full-stack projects execute all steps
|
|
429
|
+
|
|
430
|
+
**Based on Complexity:**
|
|
431
|
+
|
|
432
|
+
- Simple features use Quick Flow steps
|
|
433
|
+
- Complex features use full planning cycle
|
|
434
|
+
- Enterprise features include compliance steps
|
|
435
|
+
|
|
436
|
+
**Configure in workflow properties:**
|
|
437
|
+
|
|
438
|
+
- Add conditional branches
|
|
439
|
+
- Set conditions based on project metadata
|
|
440
|
+
- Test routing with different project types
|
|
441
|
+
|
|
442
|
+
### Workflow Variables
|
|
443
|
+
|
|
444
|
+
**Store and reuse data across steps:**
|
|
445
|
+
|
|
446
|
+
- Set variables in step outputs
|
|
447
|
+
- Reference in later step inputs using `${variable_name}`
|
|
448
|
+
- Variables shown in Variable Inspector during execution
|
|
449
|
+
- Persist variables across workflow sessions
|
|
450
|
+
|
|
451
|
+
### Hooks and Triggers
|
|
452
|
+
|
|
453
|
+
**Automate workflow execution:**
|
|
454
|
+
|
|
455
|
+
| Trigger | When It Fires |
|
|
456
|
+
| ------- | ------------- |
|
|
457
|
+
| **On Commit** | After git commit in project |
|
|
458
|
+
| **On File Change** | When specific files modified |
|
|
459
|
+
| **On Schedule** | Cron-style scheduled execution |
|
|
460
|
+
| **On API Call** | External webhook trigger |
|
|
461
|
+
|
|
462
|
+
**Configure in Workflow Settings → Triggers**
|
|
463
|
+
|
|
464
|
+
## What You've Accomplished
|
|
465
|
+
|
|
466
|
+
You've mastered workflow creation and execution in BMAD Studio:
|
|
467
|
+
|
|
468
|
+
- Created custom workflows using drag-and-drop editor
|
|
469
|
+
- Configured steps with parameters and connections
|
|
470
|
+
- Executed workflows with real-time monitoring
|
|
471
|
+
- Used Party Mode for multi-agent coordination
|
|
472
|
+
- Debugged workflow issues with built-in tools
|
|
473
|
+
- Imported/exported workflows for sharing
|
|
474
|
+
- Applied domain-specific templates
|
|
475
|
+
|
|
476
|
+
Your workflow capabilities now include:
|
|
477
|
+
|
|
478
|
+
```
|
|
479
|
+
.bmad/workflows/
|
|
480
|
+
├── custom-feature-workflow.yaml # Your custom workflows
|
|
481
|
+
├── analysis/
|
|
482
|
+
├── planning/
|
|
483
|
+
├── implementation/
|
|
484
|
+
└── testing/
|
|
485
|
+
└── (28+ built-in workflows plus your customs)
|
|
486
|
+
```
|
|
487
|
+
|
|
488
|
+
## Quick Reference
|
|
489
|
+
|
|
490
|
+
| Action | Method | Purpose |
|
|
491
|
+
| ------ | ------ | ------- |
|
|
492
|
+
| **Create Workflow** | Workflows → Create | Start new workflow from scratch |
|
|
493
|
+
| **Edit Workflow** | Double-click workflow | Open in Visual Workflow Editor |
|
|
494
|
+
| **Run Workflow** | Click ▶️ or `Ctrl+R` | Execute workflow |
|
|
495
|
+
| **Validate** | Toolbar → Validate | Check for errors before running |
|
|
496
|
+
| **Add Step** | Drag from palette | Add step to workflow |
|
|
497
|
+
| **Connect Steps** | Drag from output to input | Define execution order |
|
|
498
|
+
| **Configure Step** | Select step, edit properties | Set step parameters |
|
|
499
|
+
| **Party Mode** | Toolbar → Party Mode | Multi-agent coordination |
|
|
500
|
+
| **Export** | Toolbar → Export | Save workflow to file |
|
|
501
|
+
| **Import** | Workflows → Import | Load workflow from file |
|
|
502
|
+
|
|
503
|
+
## Common Questions
|
|
504
|
+
|
|
505
|
+
### Can I edit workflows while they're running?
|
|
506
|
+
|
|
507
|
+
No. Workflows must be stopped before editing. Save your changes and restart the workflow.
|
|
508
|
+
|
|
509
|
+
### What happens if a step fails?
|
|
510
|
+
|
|
511
|
+
The workflow stops at the failed step. Review logs, fix the issue, then restart from the failed step or from the beginning.
|
|
512
|
+
|
|
513
|
+
### Can I run multiple workflows simultaneously?
|
|
514
|
+
|
|
515
|
+
Yes. Each workflow execution is independent. However, watch for file conflicts if workflows modify the same files.
|
|
516
|
+
|
|
517
|
+
### How do I share workflows with my team?
|
|
518
|
+
|
|
519
|
+
Export workflows to YAML or JSON files and share via git, email, or cloud storage. Team members import them into their BMAD Studio.
|
|
520
|
+
|
|
521
|
+
### Do visual workflows work with the CLI?
|
|
522
|
+
|
|
523
|
+
Yes. Visual workflows are saved as YAML files compatible with the CLI tool. You can execute them with `bmad run workflow-name`.
|
|
524
|
+
|
|
525
|
+
### Can I convert CLI workflows to visual format?
|
|
526
|
+
|
|
527
|
+
Yes. Use Workflows → Import Legacy to convert YAML workflows to visual format with automatic layout.
|
|
528
|
+
|
|
529
|
+
## Getting Help
|
|
530
|
+
|
|
531
|
+
- **Step Documentation** — Right-click any step → View Documentation
|
|
532
|
+
- **Workflow Templates** — Examples in Help → Workflow Examples
|
|
533
|
+
- **Community** — [Discord](https://discord.gg/gk8jAdXWmj) (#workflow-help)
|
|
534
|
+
- **Video Tutorials** — Help → Video Guides
|
|
535
|
+
|
|
536
|
+
## Key Takeaways
|
|
537
|
+
|
|
538
|
+
:::tip[Remember These]
|
|
539
|
+
- **Validate before running** — Catch errors early with the validation engine
|
|
540
|
+
- **Use Party Mode wisely** — Great for parallel work but watch for conflicts
|
|
541
|
+
- **Templates save time** — Start with domain templates for common scenarios
|
|
542
|
+
- **Workflows are portable** — Export to YAML for sharing and version control
|
|
543
|
+
- **Debug with breakpoints** — Pause execution to inspect state at any step
|
|
544
|
+
:::
|
|
545
|
+
|
|
546
|
+
Ready to optimize your AI usage? Check out the [Token Economy Guide](/docs/user-guide/token-economy.md) to master budgets, efficiency modes, and cost tracking.
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
appId: com.bmad.studio
|
|
2
|
+
productName: BMAD Studio
|
|
3
|
+
copyright: Copyright © 2024 Brian (BMad) Madison
|
|
4
|
+
|
|
5
|
+
# Directories
|
|
6
|
+
directories:
|
|
7
|
+
output: dist
|
|
8
|
+
buildResources: build
|
|
9
|
+
|
|
10
|
+
# Files to include/exclude in the packaged app
|
|
11
|
+
files:
|
|
12
|
+
- dist/electron/**/*
|
|
13
|
+
- dist/renderer/**/*
|
|
14
|
+
- node_modules/**/*
|
|
15
|
+
- package.json
|
|
16
|
+
- "!**/*.ts"
|
|
17
|
+
- "!**/*.map"
|
|
18
|
+
- "!electron/**/*"
|
|
19
|
+
- "!renderer/**/*"
|
|
20
|
+
- "!test/**/*"
|
|
21
|
+
- "!.auto-claude/**/*"
|
|
22
|
+
- "!.github/**/*"
|
|
23
|
+
- "!.husky/**/*"
|
|
24
|
+
- "!docs/**/*"
|
|
25
|
+
- "!website/**/*"
|
|
26
|
+
- "!tools/**/*"
|
|
27
|
+
- "!*.md"
|
|
28
|
+
- "!.eslintrc*"
|
|
29
|
+
- "!.prettierrc*"
|
|
30
|
+
- "!tsconfig*.json"
|
|
31
|
+
- "!vite.config.ts"
|
|
32
|
+
- "!tailwind.config.js"
|
|
33
|
+
- "!postcss.config.js"
|
|
34
|
+
|
|
35
|
+
# macOS configuration
|
|
36
|
+
mac:
|
|
37
|
+
category: public.app-category.developer-tools
|
|
38
|
+
target:
|
|
39
|
+
- dmg
|
|
40
|
+
- zip
|
|
41
|
+
icon: build/icon.icns
|
|
42
|
+
hardenedRuntime: true
|
|
43
|
+
gatekeeperAssess: false
|
|
44
|
+
entitlements: build/entitlements.mac.plist
|
|
45
|
+
entitlementsInherit: build/entitlements.mac.plist
|
|
46
|
+
|
|
47
|
+
dmg:
|
|
48
|
+
title: ${productName} ${version}
|
|
49
|
+
icon: build/icon.icns
|
|
50
|
+
|
|
51
|
+
# Windows configuration
|
|
52
|
+
win:
|
|
53
|
+
target:
|
|
54
|
+
- nsis
|
|
55
|
+
- portable
|
|
56
|
+
icon: build/icon.ico
|
|
57
|
+
artifactName: BMAD-Studio-Setup.${ext}
|
|
58
|
+
|
|
59
|
+
nsis:
|
|
60
|
+
oneClick: false
|
|
61
|
+
allowToChangeInstallationDirectory: true
|
|
62
|
+
createDesktopShortcut: always
|
|
63
|
+
createStartMenuShortcut: true
|
|
64
|
+
shortcutName: ${productName}
|
|
65
|
+
|
|
66
|
+
# Linux configuration
|
|
67
|
+
linux:
|
|
68
|
+
target:
|
|
69
|
+
- AppImage
|
|
70
|
+
category: Development
|
|
71
|
+
icon: build/icons
|
|
72
|
+
artifactName: BMAD-Studio.${ext}
|
|
73
|
+
|
|
74
|
+
# Publish configuration (disabled for now)
|
|
75
|
+
publish: null
|