bmad-cybersec 3.2.3 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -9
- package/src/automation/BUILD_ORCHESTRATOR_README.md +195 -0
- package/src/automation/build-time/build-time-profiler.ts +453 -0
- package/src/automation/build-time/index.ts +64 -0
- package/src/automation/caching/build-cache-manager.ts +715 -0
- package/src/automation/configuration/manager/bmad-configuration-manager.js +502 -0
- package/src/automation/deployment/installer/install.js +429 -0
- package/src/automation/incremental/incremental-builder.ts +852 -0
- package/src/automation/index.ts +164 -0
- package/src/automation/logging/installer/installation-logger.js +271 -0
- package/src/automation/logging/progress/progress-reporter.js +724 -0
- package/src/automation/monitoring/build-monitor.ts +669 -0
- package/src/automation/optimization/optimization-engine.ts +239 -0
- package/src/automation/parallel-builds/parallel-coordinator.ts +772 -0
- package/src/automation/resource-optimization/resource-optimizer.ts +709 -0
- package/src/automation/templates/engine/template-engine.js +787 -0
- package/src/automation/templates/security/template-security.js +93 -0
- package/src/automation/templates/validator/template-validator.js +443 -0
- package/src/automation/validation/core/quality-gate-enforcer.ts +768 -0
- package/src/bmb/README.md +28 -0
- package/src/bmb/agents/agent-builder.md +65 -0
- package/src/bmb/agents/module-builder.md +68 -0
- package/src/bmb/agents/workflow-builder.md +64 -0
- package/src/bmb/config.yaml +12 -0
- package/src/bmb/docs/workflows/architecture.md +220 -0
- package/src/bmb/docs/workflows/common-workflow-tools.csv +19 -0
- package/src/bmb/docs/workflows/csv-data-file-standards.md +206 -0
- package/src/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md +220 -0
- package/src/bmb/docs/workflows/step-file-rules.md +473 -0
- package/src/bmb/docs/workflows/templates/step-01-init-continuable-template.md +241 -0
- package/src/bmb/docs/workflows/templates/step-1b-template.md +223 -0
- package/src/bmb/docs/workflows/templates/step-file.md +139 -0
- package/src/bmb/docs/workflows/templates/step-template.md +290 -0
- package/src/bmb/docs/workflows/templates/workflow-template.md +104 -0
- package/src/bmb/docs/workflows/templates/workflow.md +58 -0
- package/src/bmb/docs/workflows/terms.md +97 -0
- package/src/bmb/manifest.yaml +22 -0
- package/src/bmb/module.yaml +59 -0
- package/src/bmb/reference/agents/simple-examples/README.md +223 -0
- package/src/bmb/reference/readme.md +3 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +177 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +121 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +165 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +154 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +183 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +168 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +195 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
- package/src/bmb/reference/workflows/meal-prep-nutrition/workflow.md +59 -0
- package/src/bmb/workflows/agent/data/agent-compilation.md +285 -0
- package/src/bmb/workflows/agent/data/agent-menu-patterns.md +237 -0
- package/src/bmb/workflows/agent/data/agent-metadata.md +216 -0
- package/src/bmb/workflows/agent/data/brainstorm-context.md +147 -0
- package/src/bmb/workflows/agent/data/communication-presets.csv +61 -0
- package/src/bmb/workflows/agent/data/critical-actions.md +122 -0
- package/src/bmb/workflows/agent/data/expert-agent-architecture.md +240 -0
- package/src/bmb/workflows/agent/data/expert-agent-validation.md +175 -0
- package/src/bmb/workflows/agent/data/module-agent-validation.md +127 -0
- package/src/bmb/workflows/agent/data/persona-properties.md +273 -0
- package/src/bmb/workflows/agent/data/principles-crafting.md +301 -0
- package/src/bmb/workflows/agent/data/reference/module-examples/architect.md +68 -0
- package/src/bmb/workflows/agent/data/simple-agent-architecture.md +204 -0
- package/src/bmb/workflows/agent/data/simple-agent-validation.md +134 -0
- package/src/bmb/workflows/agent/data/understanding-agent-types.md +237 -0
- package/src/bmb/workflows/agent/steps-c/step-01-brainstorm.md +126 -0
- package/src/bmb/workflows/agent/steps-c/step-02-discovery.md +178 -0
- package/src/bmb/workflows/agent/steps-c/step-03-type-metadata.md +333 -0
- package/src/bmb/workflows/agent/steps-c/step-04-persona.md +230 -0
- package/src/bmb/workflows/agent/steps-c/step-05-commands-menu.md +182 -0
- package/src/bmb/workflows/agent/steps-c/step-06-activation.md +293 -0
- package/src/bmb/workflows/agent/steps-c/step-07a-build-simple.md +198 -0
- package/src/bmb/workflows/agent/steps-c/step-07b-build-expert.md +207 -0
- package/src/bmb/workflows/agent/steps-c/step-07c-build-module.md +276 -0
- package/src/bmb/workflows/agent/steps-c/step-08a-plan-traceability.md +226 -0
- package/src/bmb/workflows/agent/steps-c/step-08b-metadata-validation.md +144 -0
- package/src/bmb/workflows/agent/steps-c/step-08c-persona-validation.md +170 -0
- package/src/bmb/workflows/agent/steps-c/step-08d-menu-validation.md +167 -0
- package/src/bmb/workflows/agent/steps-c/step-08e-structure-validation.md +320 -0
- package/src/bmb/workflows/agent/steps-c/step-08f-sidecar-validation.md +479 -0
- package/src/bmb/workflows/agent/steps-c/step-09-celebrate.md +247 -0
- package/src/bmb/workflows/agent/steps-e/e-01-load-existing.md +214 -0
- package/src/bmb/workflows/agent/steps-e/e-02-discover-edits.md +196 -0
- package/src/bmb/workflows/agent/steps-e/e-03a-validate-metadata.md +79 -0
- package/src/bmb/workflows/agent/steps-e/e-03b-validate-persona.md +77 -0
- package/src/bmb/workflows/agent/steps-e/e-03c-validate-menu.md +76 -0
- package/src/bmb/workflows/agent/steps-e/e-03d-validate-structure.md +76 -0
- package/src/bmb/workflows/agent/steps-e/e-03e-validate-sidecar.md +80 -0
- package/src/bmb/workflows/agent/steps-e/e-03f-validation-summary.md +120 -0
- package/src/bmb/workflows/agent/steps-e/e-04-type-metadata.md +125 -0
- package/src/bmb/workflows/agent/steps-e/e-05-persona.md +137 -0
- package/src/bmb/workflows/agent/steps-e/e-06-commands-menu.md +124 -0
- package/src/bmb/workflows/agent/steps-e/e-07-activation.md +124 -0
- package/src/bmb/workflows/agent/steps-e/e-08a-edit-simple.md +140 -0
- package/src/bmb/workflows/agent/steps-e/e-08b-edit-expert.md +121 -0
- package/src/bmb/workflows/agent/steps-e/e-08c-edit-module.md +125 -0
- package/src/bmb/workflows/agent/steps-e/e-09a-validate-metadata.md +70 -0
- package/src/bmb/workflows/agent/steps-e/e-09b-validate-persona.md +70 -0
- package/src/bmb/workflows/agent/steps-e/e-09c-validate-menu.md +69 -0
- package/src/bmb/workflows/agent/steps-e/e-09d-validate-structure.md +69 -0
- package/src/bmb/workflows/agent/steps-e/e-09e-validate-sidecar.md +70 -0
- package/src/bmb/workflows/agent/steps-e/e-09f-validation-summary.md +111 -0
- package/src/bmb/workflows/agent/steps-e/e-10-celebrate.md +153 -0
- package/src/bmb/workflows/agent/steps-v/v-01-load-review.md +128 -0
- package/src/bmb/workflows/agent/steps-v/v-02a-validate-metadata.md +73 -0
- package/src/bmb/workflows/agent/steps-v/v-02b-validate-persona.md +72 -0
- package/src/bmb/workflows/agent/steps-v/v-02c-validate-menu.md +71 -0
- package/src/bmb/workflows/agent/steps-v/v-02d-validate-structure.md +71 -0
- package/src/bmb/workflows/agent/steps-v/v-02e-validate-sidecar.md +78 -0
- package/src/bmb/workflows/agent/steps-v/v-03-summary.md +100 -0
- package/src/bmb/workflows/agent/templates/agent-plan.template.md +5 -0
- package/src/bmb/workflows/agent/templates/expert-agent-template/expert-agent.template.md +78 -0
- package/src/bmb/workflows/agent/templates/simple-agent.template.md +73 -0
- package/src/bmb/workflows/agent/workflow.md +138 -0
- package/src/bmb/workflows/create-module/steps/step-01-init.md +156 -0
- package/src/bmb/workflows/create-module/steps/step-01b-continue.md +170 -0
- package/src/bmb/workflows/create-module/steps/step-02-concept.md +218 -0
- package/src/bmb/workflows/create-module/steps/step-03-components.md +268 -0
- package/src/bmb/workflows/create-module/steps/step-04-structure.md +229 -0
- package/src/bmb/workflows/create-module/steps/step-05-config.md +234 -0
- package/src/bmb/workflows/create-module/steps/step-06-agents.md +297 -0
- package/src/bmb/workflows/create-module/steps/step-07-workflows.md +229 -0
- package/src/bmb/workflows/create-module/steps/step-08-installer.md +187 -0
- package/src/bmb/workflows/create-module/steps/step-09-documentation.md +310 -0
- package/src/bmb/workflows/create-module/steps/step-10-roadmap.md +338 -0
- package/src/bmb/workflows/create-module/steps/step-11-validate.md +336 -0
- package/src/bmb/workflows/create-module/templates/agent.template.md +313 -0
- package/src/bmb/workflows/create-module/templates/installer.template.js +47 -0
- package/src/bmb/workflows/create-module/templates/module-plan.template.md +5 -0
- package/src/bmb/workflows/create-module/templates/module.template.yaml +53 -0
- package/src/bmb/workflows/create-module/templates/workflow-plan-template.md +23 -0
- package/src/bmb/workflows/create-module/validation.md +126 -0
- package/src/bmb/workflows/create-module/workflow.md +68 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/data/macro-calculator.csv +16 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/data/recipe-database.csv +28 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-01-init.md +177 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-01b-continue.md +150 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-02-profile.md +164 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-03-assessment.md +152 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/assessment-section.md +25 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/profile-section.md +47 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/shopping-section.md +37 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/templates/strategy-section.md +18 -0
- package/src/bmb/workflows/create-workflow/data/examples/meal-prep-nutrition/workflow.md +58 -0
- package/src/bmb/workflows/create-workflow/steps/step-01-init.md +158 -0
- package/src/bmb/workflows/create-workflow/steps/step-02-gather.md +212 -0
- package/src/bmb/workflows/create-workflow/steps/step-03-tools-configuration.md +251 -0
- package/src/bmb/workflows/create-workflow/steps/step-04-plan-review.md +217 -0
- package/src/bmb/workflows/create-workflow/steps/step-05-output-format-design.md +290 -0
- package/src/bmb/workflows/create-workflow/steps/step-06-design.md +272 -0
- package/src/bmb/workflows/create-workflow/steps/step-07-build.md +324 -0
- package/src/bmb/workflows/create-workflow/steps/step-08-review.md +285 -0
- package/src/bmb/workflows/create-workflow/steps/step-09-complete.md +188 -0
- package/src/bmb/workflows/create-workflow/workflow.md +67 -0
- package/src/bmb/workflows/edit-workflow/steps/step-01-analyze.md +217 -0
- package/src/bmb/workflows/edit-workflow/steps/step-02-discover.md +254 -0
- package/src/bmb/workflows/edit-workflow/steps/step-03-improve.md +218 -0
- package/src/bmb/workflows/edit-workflow/steps/step-04-validate.md +194 -0
- package/src/bmb/workflows/edit-workflow/steps/step-05-compliance-check.md +246 -0
- package/src/bmb/workflows/edit-workflow/templates/completion-summary.md +75 -0
- package/src/bmb/workflows/edit-workflow/templates/improvement-goals.md +68 -0
- package/src/bmb/workflows/edit-workflow/templates/improvement-log.md +40 -0
- package/src/bmb/workflows/edit-workflow/templates/validation-results.md +51 -0
- package/src/bmb/workflows/edit-workflow/templates/workflow-analysis.md +56 -0
- package/src/bmb/workflows/edit-workflow/workflow.md +67 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +153 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +244 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +275 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +296 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +265 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +361 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +259 -0
- package/src/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +302 -0
- package/src/bmb/workflows/workflow-compliance-check/templates/compliance-report.md +140 -0
- package/src/bmb/workflows/workflow-compliance-check/workflow.md +59 -0
- package/src/bmgd/README.md +108 -0
- package/src/bmgd/agents/game-architect.md +79 -0
- package/src/bmgd/agents/game-designer.md +80 -0
- package/src/bmgd/agents/game-dev.md +81 -0
- package/src/bmgd/agents/game-qa.md +84 -0
- package/src/bmgd/agents/game-scrum-master.md +96 -0
- package/src/bmgd/agents/game-solo-dev.md +80 -0
- package/src/bmgd/config.yaml +21 -0
- package/src/bmgd/gametest/knowledge/balance-testing.md +220 -0
- package/src/bmgd/gametest/knowledge/certification-testing.md +319 -0
- package/src/bmgd/gametest/knowledge/compatibility-testing.md +228 -0
- package/src/bmgd/gametest/knowledge/godot-testing.md +376 -0
- package/src/bmgd/gametest/knowledge/input-testing.md +315 -0
- package/src/bmgd/gametest/knowledge/localization-testing.md +304 -0
- package/src/bmgd/gametest/knowledge/multiplayer-testing.md +322 -0
- package/src/bmgd/gametest/knowledge/performance-testing.md +204 -0
- package/src/bmgd/gametest/knowledge/playtesting.md +384 -0
- package/src/bmgd/gametest/knowledge/qa-automation.md +190 -0
- package/src/bmgd/gametest/knowledge/regression-testing.md +280 -0
- package/src/bmgd/gametest/knowledge/save-testing.md +280 -0
- package/src/bmgd/gametest/knowledge/smoke-testing.md +404 -0
- package/src/bmgd/gametest/knowledge/test-priorities.md +271 -0
- package/src/bmgd/gametest/knowledge/unity-testing.md +383 -0
- package/src/bmgd/gametest/knowledge/unreal-testing.md +388 -0
- package/src/bmgd/gametest/qa-index.csv +17 -0
- package/src/bmgd/manifest.yaml +22 -0
- package/src/bmgd/module.yaml +84 -0
- package/src/bmgd/teams/default-party.csv +12 -0
- package/src/bmgd/teams/team-gamedev.yaml +29 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +26 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/game-context.md +115 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/instructions.md +130 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-01-init.md +165 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-02-context.md +211 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-03-ideation.md +290 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-04-complete.md +276 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/workflow.md +50 -0
- package/src/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +42 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/checklist.md +128 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/instructions.md +373 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-01-init.md +224 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-01b-continue.md +152 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-02-vision.md +219 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-03-market.md +219 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-04-fundamentals.md +232 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-05-scope.md +243 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-06-references.md +225 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-07-content.md +283 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/steps/step-08-complete.md +297 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/templates/game-brief-template.md +205 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/workflow.md +63 -0
- package/src/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +44 -0
- package/src/bmgd/workflows/2-design/gdd/checklist.md +148 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/action-platformer.md +45 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/adventure.md +84 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/card-game.md +76 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/fighting.md +89 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/horror.md +86 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/idle-incremental.md +78 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/metroidvania.md +87 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/moba.md +74 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/party-game.md +79 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/puzzle.md +58 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/racing.md +88 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/rhythm.md +79 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/roguelike.md +69 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/rpg.md +70 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/sandbox.md +79 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/shooter.md +62 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/simulation.md +73 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/sports.md +75 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/strategy.md +71 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/survival.md +79 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/text-based.md +91 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/tower-defense.md +79 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/turn-based-tactics.md +88 -0
- package/src/bmgd/workflows/2-design/gdd/game-types/visual-novel.md +89 -0
- package/src/bmgd/workflows/2-design/gdd/game-types.csv +25 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-01-init.md +249 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-01b-continue.md +174 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-02-context.md +333 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-03-platforms.md +246 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-04-vision.md +230 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-05-core-gameplay.md +259 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-06-mechanics.md +250 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-07-game-type.md +267 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-08-progression.md +273 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-09-levels.md +265 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-10-art-audio.md +256 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-11-technical.md +276 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-12-epics.md +285 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-13-metrics.md +251 -0
- package/src/bmgd/workflows/2-design/gdd/steps/step-14-complete.md +336 -0
- package/src/bmgd/workflows/2-design/gdd/templates/gdd-template.md +153 -0
- package/src/bmgd/workflows/2-design/gdd/workflow.md +61 -0
- package/src/bmgd/workflows/2-design/gdd/workflow.yaml +47 -0
- package/src/bmgd/workflows/2-design/narrative/checklist.md +139 -0
- package/src/bmgd/workflows/2-design/narrative/instructions-narrative.md +604 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-01-init.md +229 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-01b-continue.md +164 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-02-foundation.md +263 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-03-story.md +239 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-04-characters.md +298 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-05-world.md +263 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-06-dialogue.md +251 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-07-environmental.md +245 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-08-delivery.md +265 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-09-integration.md +255 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-10-production.md +263 -0
- package/src/bmgd/workflows/2-design/narrative/steps/step-11-complete.md +332 -0
- package/src/bmgd/workflows/2-design/narrative/templates/narrative-template.md +195 -0
- package/src/bmgd/workflows/2-design/narrative/workflow.md +58 -0
- package/src/bmgd/workflows/2-design/narrative/workflow.yaml +51 -0
- package/src/bmgd/workflows/3-technical/game-architecture/architecture-patterns.yaml +321 -0
- package/src/bmgd/workflows/3-technical/game-architecture/checklist.md +240 -0
- package/src/bmgd/workflows/3-technical/game-architecture/decision-catalog.yaml +222 -0
- package/src/bmgd/workflows/3-technical/game-architecture/instructions.md +701 -0
- package/src/bmgd/workflows/3-technical/game-architecture/pattern-categories.csv +13 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-01-init.md +224 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-01b-continue.md +154 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-02-context.md +263 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-03-starter.md +291 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-04-decisions.md +301 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-05-crosscutting.md +320 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-06-structure.md +305 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-07-patterns.md +350 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-08-validation.md +296 -0
- package/src/bmgd/workflows/3-technical/game-architecture/steps/step-09-complete.md +357 -0
- package/src/bmgd/workflows/3-technical/game-architecture/templates/architecture-template.md +103 -0
- package/src/bmgd/workflows/3-technical/game-architecture/workflow.md +56 -0
- package/src/bmgd/workflows/3-technical/game-architecture/workflow.yaml +70 -0
- package/src/bmgd/workflows/3-technical/generate-project-context/project-context-template.md +20 -0
- package/src/bmgd/workflows/3-technical/generate-project-context/steps/step-01-discover.md +202 -0
- package/src/bmgd/workflows/3-technical/generate-project-context/steps/step-02-generate.md +374 -0
- package/src/bmgd/workflows/3-technical/generate-project-context/steps/step-03-complete.md +280 -0
- package/src/bmgd/workflows/3-technical/generate-project-context/workflow.md +49 -0
- package/src/bmgd/workflows/4-production/code-review/backlog-template.md +12 -0
- package/src/bmgd/workflows/4-production/code-review/checklist.md +23 -0
- package/src/bmgd/workflows/4-production/code-review/instructions.xml +225 -0
- package/src/bmgd/workflows/4-production/code-review/workflow.yaml +63 -0
- package/src/bmgd/workflows/4-production/correct-course/checklist.md +279 -0
- package/src/bmgd/workflows/4-production/correct-course/instructions.md +206 -0
- package/src/bmgd/workflows/4-production/correct-course/workflow.yaml +61 -0
- package/src/bmgd/workflows/4-production/create-story/checklist.md +358 -0
- package/src/bmgd/workflows/4-production/create-story/instructions.xml +298 -0
- package/src/bmgd/workflows/4-production/create-story/template.md +49 -0
- package/src/bmgd/workflows/4-production/create-story/workflow.yaml +77 -0
- package/src/bmgd/workflows/4-production/dev-story/checklist.md +80 -0
- package/src/bmgd/workflows/4-production/dev-story/instructions.xml +409 -0
- package/src/bmgd/workflows/4-production/dev-story/workflow.yaml +66 -0
- package/src/bmgd/workflows/4-production/retrospective/instructions.md +1444 -0
- package/src/bmgd/workflows/4-production/retrospective/workflow.yaml +61 -0
- package/src/bmgd/workflows/4-production/sprint-planning/checklist.md +33 -0
- package/src/bmgd/workflows/4-production/sprint-planning/instructions.md +234 -0
- package/src/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/bmgd/workflows/4-production/sprint-planning/workflow.yaml +54 -0
- package/src/bmgd/workflows/4-production/sprint-status/instructions.md +230 -0
- package/src/bmgd/workflows/4-production/sprint-status/workflow.yaml +34 -0
- package/src/bmgd/workflows/bmgd-quick-flow/create-tech-spec/instructions.md +140 -0
- package/src/bmgd/workflows/bmgd-quick-flow/create-tech-spec/workflow.yaml +26 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-dev/checklist.md +37 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-dev/instructions.md +220 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-dev/workflow.yaml +44 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-prototype/checklist.md +26 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-prototype/instructions.md +156 -0
- package/src/bmgd/workflows/bmgd-quick-flow/quick-prototype/workflow.yaml +35 -0
- package/src/bmgd/workflows/gametest/automate/checklist.md +93 -0
- package/src/bmgd/workflows/gametest/automate/instructions.md +317 -0
- package/src/bmgd/workflows/gametest/automate/workflow.yaml +48 -0
- package/src/bmgd/workflows/gametest/performance/checklist.md +96 -0
- package/src/bmgd/workflows/gametest/performance/instructions.md +323 -0
- package/src/bmgd/workflows/gametest/performance/performance-template.md +256 -0
- package/src/bmgd/workflows/gametest/performance/workflow.yaml +46 -0
- package/src/bmgd/workflows/gametest/playtest-plan/checklist.md +93 -0
- package/src/bmgd/workflows/gametest/playtest-plan/instructions.md +297 -0
- package/src/bmgd/workflows/gametest/playtest-plan/playtest-template.md +208 -0
- package/src/bmgd/workflows/gametest/playtest-plan/workflow.yaml +57 -0
- package/src/bmgd/workflows/gametest/test-design/checklist.md +98 -0
- package/src/bmgd/workflows/gametest/test-design/instructions.md +280 -0
- package/src/bmgd/workflows/gametest/test-design/test-design-template.md +205 -0
- package/src/bmgd/workflows/gametest/test-design/workflow.yaml +45 -0
- package/src/bmgd/workflows/gametest/test-framework/checklist.md +103 -0
- package/src/bmgd/workflows/gametest/test-framework/instructions.md +348 -0
- package/src/bmgd/workflows/gametest/test-framework/workflow.yaml +46 -0
- package/src/bmgd/workflows/gametest/test-review/checklist.md +87 -0
- package/src/bmgd/workflows/gametest/test-review/instructions.md +272 -0
- package/src/bmgd/workflows/gametest/test-review/test-review-template.md +203 -0
- package/src/bmgd/workflows/gametest/test-review/workflow.yaml +46 -0
- package/src/bmgd/workflows/workflow-status/init/instructions.md +299 -0
- package/src/bmgd/workflows/workflow-status/init/workflow.yaml +28 -0
- package/src/bmgd/workflows/workflow-status/instructions.md +395 -0
- package/src/bmgd/workflows/workflow-status/paths/gamedev-brownfield.yaml +65 -0
- package/src/bmgd/workflows/workflow-status/paths/gamedev-greenfield.yaml +71 -0
- package/src/bmgd/workflows/workflow-status/paths/quickflow-brownfield.yaml +29 -0
- package/src/bmgd/workflows/workflow-status/paths/quickflow-greenfield.yaml +39 -0
- package/src/bmgd/workflows/workflow-status/project-levels.yaml +63 -0
- package/src/bmgd/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/bmgd/workflows/workflow-status/workflow.yaml +28 -0
- package/src/bmm/README.md +104 -0
- package/src/bmm/agents/analyst.md +84 -0
- package/src/bmm/agents/architect.md +76 -0
- package/src/bmm/agents/dev.md +78 -0
- package/src/bmm/agents/pm.md +78 -0
- package/src/bmm/agents/qa.md +68 -0
- package/src/bmm/agents/quick-flow-solo-dev.md +76 -0
- package/src/bmm/agents/sm.md +79 -0
- package/src/bmm/agents/tea.md +79 -0
- package/src/bmm/agents/tech-writer.md +80 -0
- package/src/bmm/agents/ux-designer.md +76 -0
- package/src/bmm/config.yaml +18 -0
- package/src/bmm/data/README.md +29 -0
- package/src/bmm/data/documentation-standards.md +264 -0
- package/src/bmm/data/project-context-template.md +40 -0
- package/src/bmm/manifest.yaml +22 -0
- package/src/bmm/module.yaml +75 -0
- package/src/bmm/teams/default-party.csv +21 -0
- package/src/bmm/teams/team-fullstack.yaml +12 -0
- package/src/bmm/testarch/knowledge/api-request.md +303 -0
- package/src/bmm/testarch/knowledge/auth-session.md +356 -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 +260 -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 +280 -0
- package/src/bmm/testarch/knowledge/log.md +294 -0
- package/src/bmm/testarch/knowledge/network-error-monitor.md +272 -0
- package/src/bmm/testarch/knowledge/network-first.md +486 -0
- package/src/bmm/testarch/knowledge/network-recorder.md +265 -0
- package/src/bmm/testarch/knowledge/nfr-criteria.md +670 -0
- package/src/bmm/testarch/knowledge/overview.md +283 -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 +296 -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 +33 -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 +184 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +166 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +204 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +207 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +210 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +224 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +199 -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-ux-design/steps/step-01-init.md +137 -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 +228 -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/2-plan-workflows/prd/domain-complexity.csv +13 -0
- package/src/bmm/workflows/2-plan-workflows/prd/prd-template.md +11 -0
- package/src/bmm/workflows/2-plan-workflows/prd/project-types.csv +11 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +199 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +166 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +421 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +290 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +291 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +271 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +262 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +258 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +299 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +270 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +294 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +186 -0
- package/src/bmm/workflows/2-plan-workflows/prd/workflow.md +62 -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 +133 -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 +155 -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 +352 -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 +145 -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 +225 -0
- package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +50 -0
- package/src/bmm/workflows/4-implementation/correct-course/checklist.md +279 -0
- package/src/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +58 -0
- package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +344 -0
- package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +59 -0
- package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
- package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +409 -0
- package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +25 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1444 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +57 -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 +52 -0
- package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +230 -0
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +35 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/steps/step-01-understand.md +192 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/steps/step-02-investigate.md +143 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/steps/step-03-generate.md +128 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/steps/step-04-review.md +174 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/tech-spec-template.md +74 -0
- package/src/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.md +79 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +156 -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 +113 -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 +142 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +52 -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 +28 -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 +26 -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 +26 -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 +26 -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 +26 -0
- package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
- package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
- package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
- package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
- package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
- package/src/bmm/workflows/qa/automate/checklist.md +57 -0
- package/src/bmm/workflows/qa/automate/instructions.md +226 -0
- package/src/bmm/workflows/qa/automate/workflow.yaml +50 -0
- package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +364 -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 +45 -0
- package/src/bmm/workflows/testarch/automate/checklist.md +582 -0
- package/src/bmm/workflows/testarch/automate/instructions.md +1327 -0
- package/src/bmm/workflows/testarch/automate/workflow.yaml +52 -0
- package/src/bmm/workflows/testarch/ci/checklist.md +248 -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 +45 -0
- package/src/bmm/workflows/testarch/framework/checklist.md +321 -0
- package/src/bmm/workflows/testarch/framework/instructions.md +481 -0
- package/src/bmm/workflows/testarch/framework/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/nfr-assess/checklist.md +407 -0
- package/src/bmm/workflows/testarch/nfr-assess/instructions.md +722 -0
- package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +445 -0
- package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/test-design/checklist.md +235 -0
- package/src/bmm/workflows/testarch/test-design/instructions.md +788 -0
- package/src/bmm/workflows/testarch/test-design/test-design-template.md +294 -0
- package/src/bmm/workflows/testarch/test-design/workflow.yaml +54 -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 +46 -0
- package/src/bmm/workflows/testarch/trace/checklist.md +655 -0
- package/src/bmm/workflows/testarch/trace/instructions.md +1047 -0
- package/src/bmm/workflows/testarch/trace/trace-template.md +675 -0
- package/src/bmm/workflows/testarch/trace/workflow.yaml +55 -0
- package/src/bmm/workflows/workflow-status/init/instructions.md +346 -0
- package/src/bmm/workflows/workflow-status/init/workflow.yaml +29 -0
- package/src/bmm/workflows/workflow-status/instructions.md +395 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/paths/method-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/method-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/project-levels.yaml +59 -0
- package/src/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/bmm/workflows/workflow-status/workflow.yaml +30 -0
- package/src/cis/README.md +108 -0
- package/src/cis/agents/brainstorming-coach.md +68 -0
- package/src/cis/agents/creative-problem-solver.md +68 -0
- package/src/cis/agents/design-thinking-coach.md +68 -0
- package/src/cis/agents/innovation-strategist.md +68 -0
- package/src/cis/agents/presentation-master.md +74 -0
- package/src/cis/agents/storyteller/storyteller.md +65 -0
- package/src/cis/config.yaml +11 -0
- package/src/cis/manifest.yaml +22 -0
- package/src/cis/module.yaml +63 -0
- package/src/cis/teams/creative-squad.yaml +7 -0
- package/src/cis/teams/default-party.csv +12 -0
- package/src/cis/workflows/README.md +139 -0
- package/src/cis/workflows/design-thinking/README.md +56 -0
- package/src/cis/workflows/design-thinking/design-methods.csv +31 -0
- package/src/cis/workflows/design-thinking/instructions.md +202 -0
- package/src/cis/workflows/design-thinking/template.md +111 -0
- package/src/cis/workflows/design-thinking/workflow.yaml +27 -0
- package/src/cis/workflows/innovation-strategy/README.md +56 -0
- package/src/cis/workflows/innovation-strategy/innovation-frameworks.csv +31 -0
- package/src/cis/workflows/innovation-strategy/instructions.md +276 -0
- package/src/cis/workflows/innovation-strategy/template.md +189 -0
- package/src/cis/workflows/innovation-strategy/workflow.yaml +27 -0
- package/src/cis/workflows/problem-solving/README.md +56 -0
- package/src/cis/workflows/problem-solving/instructions.md +252 -0
- package/src/cis/workflows/problem-solving/solving-methods.csv +31 -0
- package/src/cis/workflows/problem-solving/template.md +165 -0
- package/src/cis/workflows/problem-solving/workflow.yaml +27 -0
- package/src/cis/workflows/storytelling/README.md +58 -0
- package/src/cis/workflows/storytelling/instructions.md +293 -0
- package/src/cis/workflows/storytelling/story-types.csv +26 -0
- package/src/cis/workflows/storytelling/template.md +113 -0
- package/src/cis/workflows/storytelling/workflow.yaml +27 -0
- package/src/config/bmad-agent-schema-extracted.yaml +203 -0
- package/src/config/bmad-agent-schema.yaml +545 -0
- package/src/config/bmad-multi-module.yaml +325 -0
- package/src/config/bmad-package-metadata.yaml +664 -0
- package/src/config/bmad-validation-rules.yaml +493 -0
- package/src/config/conflict-detection-specifications.yaml +639 -0
- package/src/config/coordination-config.yaml +265 -0
- package/src/config/dependencies.yaml +274 -0
- package/src/config/installation-validation-logic.yaml +885 -0
- package/src/config/module.yaml.template +438 -0
- package/src/config/package.json.template +153 -0
- package/src/config/security-hardening-config.yaml +245 -0
- package/src/config/team-package.json.template +171 -0
- package/src/config/version-compatibility-rules.yaml +558 -0
- package/src/core/README.md +149 -0
- package/src/core/agents/abdul.agent.yaml +244 -0
- package/src/core/agents/abdul.md +171 -0
- package/src/core/agents/bmad-master.md +65 -0
- package/src/core/config.yaml +358 -0
- package/src/core/help/help-generator.js +1238 -0
- package/src/core/help/templates/module-bmm.md +94 -0
- package/src/core/help/templates/module-core.md +52 -0
- package/src/core/help/templates/module-cybersec-team.md +50 -0
- package/src/core/help/templates/module-intel-team.md +55 -0
- package/src/core/help/templates/module-legal-team.md +44 -0
- package/src/core/help/templates/module-strategy-team.md +54 -0
- package/src/core/help/templates/no-results.md +28 -0
- package/src/core/help/templates/overview.md +65 -0
- package/src/core/installation/interfaces.ts +601 -0
- package/src/core/installation/orchestrator.ts +577 -0
- package/src/core/installation/types.ts +369 -0
- package/src/core/manifest.yaml +22 -0
- package/src/core/module.yaml +70 -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/routing/slash-command-router.js +600 -0
- package/src/core/schemas/artifact-metadata.schema.yaml +183 -0
- package/src/core/schemas/compliance-requirements.schema.yaml +276 -0
- package/src/core/schemas/iocs.schema.yaml +211 -0
- package/src/core/schemas/threat-model.schema.yaml +214 -0
- package/src/core/security/KEY-INFO.md +75 -0
- package/src/core/security/MANIFEST.sha256 +779 -0
- package/src/core/security/MANIFEST.sha256.asc +16 -0
- package/src/core/security/OWASP-AI-SECURITY-CHECKLIST.md +520 -0
- package/src/core/security/OWASP-REMEDIATION-PLAN.md +631 -0
- package/src/core/security/PLUGIN-ISOLATION-RESEARCH.md +668 -0
- package/src/core/security/auth-config.yaml +118 -0
- package/src/core/security/authorization.js +717 -0
- package/src/core/security/authorization.ts +805 -0
- package/src/core/security/bmad-private-key.asc +56 -0
- package/src/core/security/bmad-public-key.asc +29 -0
- package/src/core/security/check-authorization.js +410 -0
- package/src/core/security/generate-token.d.ts +50 -0
- package/src/core/security/generate-token.js +215 -0
- package/src/core/security/generate-token.ts +295 -0
- package/src/core/security/quick-token.cjs +245 -0
- package/src/core/security/rbac-config.yaml +531 -0
- package/src/core/security/session-manager.d.ts +99 -0
- package/src/core/security/session-manager.js +329 -0
- package/src/core/security/session-manager.ts +626 -0
- package/src/core/security/sign-manifest.sh +263 -0
- package/src/core/security/validate-token.js +250 -0
- package/src/core/security/verify-integrity.sh +299 -0
- package/src/core/tasks/bmad-help.xml +316 -0
- package/src/core/tasks/index-docs.xml +65 -0
- package/src/core/tasks/review-adversarial-general.xml +41 -0
- package/src/core/tasks/shard-doc.xml +109 -0
- package/src/core/tasks/validate-workflow.xml +89 -0
- package/src/core/tasks/workflow.xml +462 -0
- package/src/core/templates/agent-activation-v2.xml +502 -0
- package/src/core/templates/compact-menu.xml +438 -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 +340 -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 +51 -0
- package/src/core/workflows/cross-module/consultation/workflow.yaml +371 -0
- package/src/core/workflows/intelligent-routing/keyword-mappings.yaml +705 -0
- package/src/core/workflows/intelligent-routing/workflow.yaml +242 -0
- package/src/core/workflows/party-mode/presets/cross-module-groups.yaml +1083 -0
- package/src/core/workflows/party-mode/select-preset/instructions.md +213 -0
- package/src/core/workflows/party-mode/select-preset/workflow.yaml +21 -0
- package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +139 -0
- package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +204 -0
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +170 -0
- package/src/core/workflows/party-mode/workflow.md +206 -0
- package/src/core/workflows/project-manager/assign-task/instructions.md +229 -0
- package/src/core/workflows/project-manager/assign-task/workflow.yaml +22 -0
- package/src/core/workflows/project-manager/create-project/instructions.md +550 -0
- package/src/core/workflows/project-manager/create-project/workflow.yaml +43 -0
- package/src/core/workflows/project-manager/cross-module/instructions.md +165 -0
- package/src/core/workflows/project-manager/cross-module/workflow.yaml +23 -0
- package/src/core/workflows/project-manager/data/module-expertise-map.yaml +330 -0
- package/src/core/workflows/project-manager/project-status/instructions.md +247 -0
- package/src/core/workflows/project-manager/project-status/workflow.yaml +23 -0
- package/src/core/workflows/project-manager/templates/project-registry.yaml +31 -0
- package/src/core/workflows/project-manager/whats-next/instructions.md +230 -0
- package/src/core/workflows/project-manager/whats-next/workflow.yaml +28 -0
- package/src/core/workflows/team-orchestration/VALIDATION-SCENARIOS.md +451 -0
- package/src/core/workflows/team-orchestration/compliance-first/instructions.md +385 -0
- package/src/core/workflows/team-orchestration/compliance-first/workflow.yaml +67 -0
- package/src/core/workflows/team-orchestration/conflict-resolution/instructions.md +309 -0
- package/src/core/workflows/team-orchestration/conflict-resolution/workflow.yaml +47 -0
- package/src/core/workflows/team-orchestration/data/decision-frameworks.yaml +473 -0
- package/src/core/workflows/team-orchestration/data/party-mode-synergies.yaml +763 -0
- package/src/core/workflows/team-orchestration/data/workflow-chains.yaml +308 -0
- package/src/core/workflows/team-orchestration/incident-response/instructions.md +561 -0
- package/src/core/workflows/team-orchestration/incident-response/workflow.yaml +61 -0
- package/src/core/workflows/team-orchestration/phase-gate/instructions.md +384 -0
- package/src/core/workflows/team-orchestration/phase-gate/phase-gates.yaml +319 -0
- package/src/core/workflows/team-orchestration/phase-gate/workflow.yaml +23 -0
- package/src/core/workflows/team-orchestration/secure-software/instructions.md +530 -0
- package/src/core/workflows/team-orchestration/secure-software/workflow.yaml +51 -0
- package/src/core/workflows/team-orchestration/select-template/instructions.md +217 -0
- package/src/core/workflows/team-orchestration/select-template/workflow.yaml +32 -0
- package/src/core/workflows/team-orchestration/strategic-decision/instructions.md +375 -0
- package/src/core/workflows/team-orchestration/strategic-decision/workflow.yaml +46 -0
- package/src/cybersec-team/README.md +824 -0
- package/src/cybersec-team/agents/api-security-expert.agent.yaml +131 -0
- package/src/cybersec-team/agents/api-security-expert.md +79 -0
- package/src/cybersec-team/agents/blockchain-security-expert.agent.yaml +131 -0
- package/src/cybersec-team/agents/blockchain-security-expert.md +79 -0
- package/src/cybersec-team/agents/blue-team-lead.agent.yaml +131 -0
- package/src/cybersec-team/agents/blue-team-lead.md +81 -0
- package/src/cybersec-team/agents/cloud-security-specialist.agent.yaml +131 -0
- package/src/cybersec-team/agents/cloud-security-specialist.md +79 -0
- package/src/cybersec-team/agents/compliance-guardian.agent.yaml +129 -0
- package/src/cybersec-team/agents/compliance-guardian.md +70 -0
- package/src/cybersec-team/agents/forensic-investigator.agent.yaml +129 -0
- package/src/cybersec-team/agents/forensic-investigator.md +70 -0
- package/src/cybersec-team/agents/incident-commander.agent.yaml +129 -0
- package/src/cybersec-team/agents/incident-commander.md +79 -0
- package/src/cybersec-team/agents/llm-ai-security-expert.agent.yaml +131 -0
- package/src/cybersec-team/agents/llm-ai-security-expert.md +79 -0
- package/src/cybersec-team/agents/mobile-security-expert.agent.yaml +131 -0
- package/src/cybersec-team/agents/mobile-security-expert.md +87 -0
- package/src/cybersec-team/agents/penetration-tester.agent.yaml +129 -0
- package/src/cybersec-team/agents/penetration-tester.md +78 -0
- package/src/cybersec-team/agents/security-architect.agent.yaml +131 -0
- package/src/cybersec-team/agents/security-architect.md +79 -0
- package/src/cybersec-team/agents/soc-analyst.agent.yaml +131 -0
- package/src/cybersec-team/agents/soc-analyst.md +79 -0
- package/src/cybersec-team/agents/social-engineer.agent.yaml +131 -0
- package/src/cybersec-team/agents/social-engineer.md +89 -0
- package/src/cybersec-team/agents/threat-analyst.agent.yaml +131 -0
- package/src/cybersec-team/agents/threat-analyst.md +77 -0
- package/src/cybersec-team/agents/web-app-security-expert.agent.yaml +131 -0
- package/src/cybersec-team/agents/web-app-security-expert.md +79 -0
- package/src/cybersec-team/config.yaml +524 -0
- package/src/cybersec-team/manifest.yaml +22 -0
- package/src/cybersec-team/module.yaml +82 -0
- package/src/cybersec-team/monitoring/bmad-security-monitoring-framework.yaml +282 -0
- package/src/cybersec-team/package.json +37 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/README.md +116 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-01-init.md +268 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-01b-continue.md +121 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-02-smart-contract-review.md +296 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-03-access-control.md +275 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-04-economic-security.md +283 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-05-defi-vulnerabilities.md +281 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-06-infrastructure.md +277 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-07-findings-summary.md +264 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/steps/step-08-remediation.md +324 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/templates/audit-report-template.md +178 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/workflow.md +69 -0
- package/src/cybersec-team/workflows/blockchain-security-assessment/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/README.md +232 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-01-init.md +267 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-01b-continue.md +123 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-02-iam-assessment.md +245 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-03-network-security.md +270 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-04-data-protection.md +253 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-05-logging-monitoring.md +265 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-06-compute-security.md +266 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-07-compliance-mapping.md +242 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-08-remediation.md +287 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/steps/step-09-report-generation.md +322 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/templates/cloud-security-report-template.md +649 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/templates/iam-review-template.md +366 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/workflow.md +74 -0
- package/src/cybersec-team/workflows/cloud-security-assessment/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/FRAMEWORKS-SUPPORTED.md +38 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/README.md +419 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-01-init.md +348 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-01b-continue.md +100 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-02-control-inventory.md +283 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-03-gap-assessment.md +244 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-04-evidence-planning.md +133 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-05-remediation-planning.md +197 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-06-artifact-generation.md +260 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/steps/step-07-final-review.md +290 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/workflow.md +68 -0
- package/src/cybersec-team/workflows/compliance-audit-prep/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/incident-response-playbook/FINAL-BUILD-STATUS.md +342 -0
- package/src/cybersec-team/workflows/incident-response-playbook/README.md +75 -0
- package/src/cybersec-team/workflows/incident-response-playbook/data/incident-types.csv +11 -0
- package/src/cybersec-team/workflows/incident-response-playbook/data/mitre-attack-mapping.csv +13 -0
- package/src/cybersec-team/workflows/incident-response-playbook/data/severity-criteria.csv +5 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-01-init.md +352 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-01b-continue.md +308 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-02a-incident-type.md +342 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-02b-triage.md +402 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-03a-detection-analysis.md +543 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-03b-containment.md +491 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-03b-cross-module.md +223 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-04a-containment.md +714 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-04b-evidence.md +574 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-05a-eradication.md +912 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-05b-analysis.md +718 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-06a-recovery.md +866 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-06b-eradication.md +1006 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-07a-post-incident.md +1030 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-07b-recovery-and-closure.md +1589 -0
- package/src/cybersec-team/workflows/incident-response-playbook/steps/step-08a-generate-playbook.md +687 -0
- package/src/cybersec-team/workflows/incident-response-playbook/template-incident-report.md +575 -0
- package/src/cybersec-team/workflows/incident-response-playbook/template-playbook.md +463 -0
- package/src/cybersec-team/workflows/incident-response-playbook/workflow.md +78 -0
- package/src/cybersec-team/workflows/incident-response-playbook/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/README.md +56 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-01-init.md +185 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-01b-continue.md +57 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-02-server-hardening.md +297 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-03-container-security.md +321 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-04-kubernetes.md +326 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-05-cicd-security.md +282 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-06-secrets-management.md +283 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-07-iac-review.md +291 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/steps/step-08-findings-remediation.md +309 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/templates/infrastructure-security-template.md +195 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/workflow.md +67 -0
- package/src/cybersec-team/workflows/infrastructure-security-testing/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/mobile-security-testing/README.md +54 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-01-init.md +247 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-01b-continue.md +59 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-02-static-analysis.md +241 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-03-dynamic-analysis.md +261 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-04-data-storage.md +239 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-05-network-security.md +242 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-06-authentication.md +230 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-07-platform-specific.md +246 -0
- package/src/cybersec-team/workflows/mobile-security-testing/steps/step-08-findings-remediation.md +269 -0
- package/src/cybersec-team/workflows/mobile-security-testing/templates/mobile-pentest-template.md +100 -0
- package/src/cybersec-team/workflows/mobile-security-testing/workflow.md +68 -0
- package/src/cybersec-team/workflows/mobile-security-testing/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/network-assessment/README.md +56 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-01-init.md +177 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-01b-continue.md +57 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-02-reconnaissance.md +169 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-03-scanning.md +231 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-04-vulnerability-assessment.md +251 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-05-network-services.md +307 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-06-wireless.md +270 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-07-segmentation.md +278 -0
- package/src/cybersec-team/workflows/network-assessment/steps/step-08-findings-remediation.md +285 -0
- package/src/cybersec-team/workflows/network-assessment/templates/network-pentest-template.md +218 -0
- package/src/cybersec-team/workflows/network-assessment/workflow.md +67 -0
- package/src/cybersec-team/workflows/network-assessment/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/security-architecture-review/README.md +310 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-01-init.md +294 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-01b-continue.md +216 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-02-threat-modeling.md +473 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-03-control-assessment.md +529 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-04-attack-surface.md +281 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-05-zero-trust.md +486 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-06-recommendations.md +513 -0
- package/src/cybersec-team/workflows/security-architecture-review/steps/step-07-report-generation.md +331 -0
- package/src/cybersec-team/workflows/security-architecture-review/templates/report-template.md +317 -0
- package/src/cybersec-team/workflows/security-architecture-review/workflow.md +67 -0
- package/src/cybersec-team/workflows/security-architecture-review/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/security-awareness-training/README.md +60 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-01-init.md +245 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-01b-continue.md +114 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-02-risk-assessment.md +197 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-03-content-development.md +235 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-04-phishing-simulation.md +253 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-05-delivery-strategy.md +266 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-06-metrics-measurement.md +253 -0
- package/src/cybersec-team/workflows/security-awareness-training/steps/step-07-continuous-improvement.md +333 -0
- package/src/cybersec-team/workflows/security-awareness-training/templates/phishing-campaign-template.md +182 -0
- package/src/cybersec-team/workflows/security-awareness-training/templates/training-plan-template.md +121 -0
- package/src/cybersec-team/workflows/security-awareness-training/workflow.md +72 -0
- package/src/cybersec-team/workflows/security-awareness-training/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/threat-modeling/README.md +71 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-01-init.md +284 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-01b-continue.md +230 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-02-decomposition.md +378 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-03-select-component.md +212 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-04-stride-analysis.md +501 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-05-risk-assessment.md +330 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-06-mitigation.md +410 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-07-loop-decision.md +254 -0
- package/src/cybersec-team/workflows/threat-modeling/steps/step-08-summary.md +597 -0
- package/src/cybersec-team/workflows/threat-modeling/workflow.md +70 -0
- package/src/cybersec-team/workflows/threat-modeling/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/README.md +216 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/WORKFLOW-VERIFICATION.md +285 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-01-init.md +432 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-01b-continue.md +159 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-02-budget.md +394 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-03-assessment.md +119 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-04-strategy.md +134 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-05-governance.md +164 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-05b-cross-module-governance.md +274 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-06-reporting.md +172 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-07-vendor-risk.md +159 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/steps/step-08-advisory.md +351 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/workflow.md +70 -0
- package/src/cybersec-team/workflows/virtual-ciso-consulting/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/vulnerability-management/README.md +62 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-01-init.md +277 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-01b-continue.md +220 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-02-asset-inventory.md +212 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-03-scan-planning.md +231 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-04-vulnerability-assessment.md +237 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-05-risk-prioritization.md +262 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-06-remediation-planning.md +244 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-07-tracking-reporting.md +261 -0
- package/src/cybersec-team/workflows/vulnerability-management/steps/step-08-program-maturity.md +343 -0
- package/src/cybersec-team/workflows/vulnerability-management/templates/remediation-tracker-template.md +93 -0
- package/src/cybersec-team/workflows/vulnerability-management/templates/vulnerability-report-template.md +130 -0
- package/src/cybersec-team/workflows/vulnerability-management/workflow.md +73 -0
- package/src/cybersec-team/workflows/vulnerability-management/workflow.yaml +28 -0
- package/src/cybersec-team/workflows/web-app-security-testing/README.md +73 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-01-init.md +148 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-01b-continue.md +57 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-02-reconnaissance.md +156 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-03-authentication.md +186 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-04-authorization.md +187 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-05-input-validation.md +238 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-06-session-management.md +249 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-07-business-logic.md +244 -0
- package/src/cybersec-team/workflows/web-app-security-testing/steps/step-08-findings-remediation.md +293 -0
- package/src/cybersec-team/workflows/web-app-security-testing/templates/webapp-pentest-template.md +210 -0
- package/src/cybersec-team/workflows/web-app-security-testing/workflow.md +66 -0
- package/src/cybersec-team/workflows/web-app-security-testing/workflow.yaml +28 -0
- package/src/intel-team/README.md +326 -0
- package/src/intel-team/agents/corporate-intel-specialist.agent.yaml +131 -0
- package/src/intel-team/agents/corporate-intel-specialist.md +136 -0
- package/src/intel-team/agents/dark-web-analyst.agent.yaml +129 -0
- package/src/intel-team/agents/dark-web-analyst.md +83 -0
- package/src/intel-team/agents/domain-intel-specialist.agent.yaml +131 -0
- package/src/intel-team/agents/domain-intel-specialist.md +83 -0
- package/src/intel-team/agents/field-operative.agent.yaml +131 -0
- package/src/intel-team/agents/field-operative.md +83 -0
- package/src/intel-team/agents/geospatial-analyst.agent.yaml +129 -0
- package/src/intel-team/agents/geospatial-analyst.md +83 -0
- package/src/intel-team/agents/humint-specialist.agent.yaml +129 -0
- package/src/intel-team/agents/humint-specialist.md +83 -0
- package/src/intel-team/agents/osint-lead.agent.yaml +129 -0
- package/src/intel-team/agents/osint-lead.md +82 -0
- package/src/intel-team/agents/sigint-specialist.agent.yaml +129 -0
- package/src/intel-team/agents/sigint-specialist.md +83 -0
- package/src/intel-team/agents/social-media-analyst.agent.yaml +131 -0
- package/src/intel-team/agents/social-media-analyst.md +83 -0
- package/src/intel-team/agents/technical-researcher.agent.yaml +129 -0
- package/src/intel-team/agents/technical-researcher.md +83 -0
- package/src/intel-team/agents/threat-actor-profiler.agent.yaml +129 -0
- package/src/intel-team/agents/threat-actor-profiler.md +83 -0
- package/src/intel-team/config.yaml +338 -0
- package/src/intel-team/data/intelligence-disciplines.csv +13 -0
- package/src/intel-team/data/osint-knowledgebase.md +837 -0
- package/src/intel-team/data/osint-tools.csv +53 -0
- package/src/intel-team/manifest.yaml +22 -0
- package/src/intel-team/module.yaml +81 -0
- package/src/intel-team/package.json +37 -0
- package/src/intel-team/workflows/.guardian-angel.md +334 -0
- package/src/intel-team/workflows/approach-vector/README.md +48 -0
- package/src/intel-team/workflows/approach-vector/steps/step-01-target-assessment.md +510 -0
- package/src/intel-team/workflows/approach-vector/steps/step-02-social-entry-points.md +436 -0
- package/src/intel-team/workflows/approach-vector/steps/step-03-physical-access.md +449 -0
- package/src/intel-team/workflows/approach-vector/steps/step-04-approach-planning.md +631 -0
- package/src/intel-team/workflows/approach-vector/workflow.md +172 -0
- package/src/intel-team/workflows/approach-vector/workflow.yaml +28 -0
- package/src/intel-team/workflows/attribution-chain/README.md +47 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-01-ttp-analysis.md +412 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-02-technical-fingerprinting.md +373 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-03-underground-correlation.md +367 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-04-opensource-correlation.md +365 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-05-geographic-correlation.md +354 -0
- package/src/intel-team/workflows/attribution-chain/steps/step-06-attribution-assessment.md +465 -0
- package/src/intel-team/workflows/attribution-chain/workflow.md +268 -0
- package/src/intel-team/workflows/attribution-chain/workflow.yaml +28 -0
- package/src/intel-team/workflows/breach-archaeology/README.md +45 -0
- package/src/intel-team/workflows/breach-archaeology/steps/step-01-target-setup.md +248 -0
- package/src/intel-team/workflows/breach-archaeology/steps/step-02-exposure-scan.md +431 -0
- package/src/intel-team/workflows/breach-archaeology/steps/step-03-threat-correlation.md +285 -0
- package/src/intel-team/workflows/breach-archaeology/steps/step-04-risk-assessment.md +357 -0
- package/src/intel-team/workflows/breach-archaeology/workflow.md +186 -0
- package/src/intel-team/workflows/breach-archaeology/workflow.yaml +28 -0
- package/src/intel-team/workflows/campaign-ai/README.md +54 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-01-campaign-initialization.md +404 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-02-technical-intelligence.md +464 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-03-digital-infrastructure.md +431 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-04-corporate-structure.md +459 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-05-personnel-organization.md +476 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-06-underground-exposure.md +448 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-07-threat-risk-assessment.md +486 -0
- package/src/intel-team/workflows/campaign-ai/steps/phase-08-campaign-assembly.md +654 -0
- package/src/intel-team/workflows/campaign-ai/workflow.md +259 -0
- package/src/intel-team/workflows/campaign-ai/workflow.yaml +28 -0
- package/src/intel-team/workflows/campaign-planner-org/README.md +50 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-01-initialization.md +391 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-02-infrastructure.md +387 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-03-technology.md +385 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-04-corporate.md +451 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-05-public-presence.md +391 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-06-underground.md +391 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-07-threats.md +387 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-08-human-surface.md +396 -0
- package/src/intel-team/workflows/campaign-planner-org/steps/step-09-assembly.md +431 -0
- package/src/intel-team/workflows/campaign-planner-org/workflow.md +326 -0
- package/src/intel-team/workflows/campaign-planner-org/workflow.yaml +28 -0
- package/src/intel-team/workflows/campaign-planner-person/README.md +46 -0
- package/src/intel-team/workflows/campaign-planner-person/steps/step-01-requirements.md +334 -0
- package/src/intel-team/workflows/campaign-planner-person/steps/step-02-pivot-mapping.md +346 -0
- package/src/intel-team/workflows/campaign-planner-person/steps/step-03-humint-prep.md +379 -0
- package/src/intel-team/workflows/campaign-planner-person/steps/step-04-collection.md +472 -0
- package/src/intel-team/workflows/campaign-planner-person/steps/step-05-synthesis.md +521 -0
- package/src/intel-team/workflows/campaign-planner-person/workflow.md +256 -0
- package/src/intel-team/workflows/campaign-planner-person/workflow.yaml +28 -0
- package/src/intel-team/workflows/counter-intel-audit/README.md +51 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-01-physical-security.md +391 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-02-electronic-security.md +395 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-03-digital-footprint.md +404 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-04-corporate-exposure.md +393 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-05-underground-exposure.md +383 -0
- package/src/intel-team/workflows/counter-intel-audit/steps/step-06-risk-synthesis.md +577 -0
- package/src/intel-team/workflows/counter-intel-audit/workflow.md +300 -0
- package/src/intel-team/workflows/counter-intel-audit/workflow.yaml +28 -0
- package/src/intel-team/workflows/digital-necromancy/README.md +45 -0
- package/src/intel-team/workflows/digital-necromancy/steps/step-01-deep-historical.md +431 -0
- package/src/intel-team/workflows/digital-necromancy/steps/step-02-technical-archaeology.md +456 -0
- package/src/intel-team/workflows/digital-necromancy/steps/step-03-social-resurrection.md +455 -0
- package/src/intel-team/workflows/digital-necromancy/steps/step-04-historical-location.md +545 -0
- package/src/intel-team/workflows/digital-necromancy/workflow.md +269 -0
- package/src/intel-team/workflows/digital-necromancy/workflow.yaml +28 -0
- package/src/intel-team/workflows/doppelganger-hunt/README.md +46 -0
- package/src/intel-team/workflows/doppelganger-hunt/steps/step-01-behavioral.md +450 -0
- package/src/intel-team/workflows/doppelganger-hunt/steps/step-02-technical.md +406 -0
- package/src/intel-team/workflows/doppelganger-hunt/steps/step-03-location.md +365 -0
- package/src/intel-team/workflows/doppelganger-hunt/steps/step-04-psychological.md +487 -0
- package/src/intel-team/workflows/doppelganger-hunt/workflow.md +252 -0
- package/src/intel-team/workflows/doppelganger-hunt/workflow.yaml +28 -0
- package/src/intel-team/workflows/flash-assessment/README.md +45 -0
- package/src/intel-team/workflows/flash-assessment/steps/step-01-triage.md +152 -0
- package/src/intel-team/workflows/flash-assessment/steps/step-02-parallel-collection.md +409 -0
- package/src/intel-team/workflows/flash-assessment/steps/step-03-synthesis.md +287 -0
- package/src/intel-team/workflows/flash-assessment/workflow.md +192 -0
- package/src/intel-team/workflows/flash-assessment/workflow.yaml +28 -0
- package/src/intel-team/workflows/ground-truth/README.md +51 -0
- package/src/intel-team/workflows/ground-truth/steps/step-01-operation-framework.md +499 -0
- package/src/intel-team/workflows/ground-truth/steps/step-02-site-analysis.md +457 -0
- package/src/intel-team/workflows/ground-truth/steps/step-03-electronic-environment.md +460 -0
- package/src/intel-team/workflows/ground-truth/steps/step-04-human-factors.md +423 -0
- package/src/intel-team/workflows/ground-truth/steps/step-05-operation-assembly.md +631 -0
- package/src/intel-team/workflows/ground-truth/workflow.md +209 -0
- package/src/intel-team/workflows/ground-truth/workflow.yaml +28 -0
- package/src/intel-team/workflows/infrastructure-genealogy/README.md +46 -0
- package/src/intel-team/workflows/infrastructure-genealogy/steps/step-01-ownership-archaeology.md +357 -0
- package/src/intel-team/workflows/infrastructure-genealogy/steps/step-02-technical-evolution.md +400 -0
- package/src/intel-team/workflows/infrastructure-genealogy/steps/step-03-corporate-ownership.md +377 -0
- package/src/intel-team/workflows/infrastructure-genealogy/steps/step-04-underground-connections.md +378 -0
- package/src/intel-team/workflows/infrastructure-genealogy/steps/step-05-threat-timeline.md +547 -0
- package/src/intel-team/workflows/infrastructure-genealogy/workflow.md +271 -0
- package/src/intel-team/workflows/infrastructure-genealogy/workflow.yaml +28 -0
- package/src/intel-team/workflows/operation-mosaic/README.md +50 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-01-target-definition.md +401 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-02-digital-footprint.md +413 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-03-social-presence.md +410 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-04-dark-web-exposure.md +377 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-05-corporate-intel.md +442 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-06-geospatial.md +394 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-07-threat-correlation.md +408 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-08-operational-assessment.md +430 -0
- package/src/intel-team/workflows/operation-mosaic/steps/step-09-fusion-delivery.md +594 -0
- package/src/intel-team/workflows/operation-mosaic/workflow.md +314 -0
- package/src/intel-team/workflows/operation-mosaic/workflow.yaml +28 -0
- package/src/intel-team/workflows/pattern-of-life/README.md +47 -0
- package/src/intel-team/workflows/pattern-of-life/steps/step-01-digital-behavior.md +440 -0
- package/src/intel-team/workflows/pattern-of-life/steps/step-02-physical-movement.md +487 -0
- package/src/intel-team/workflows/pattern-of-life/steps/step-03-communication-patterns.md +437 -0
- package/src/intel-team/workflows/pattern-of-life/steps/step-04-operational-assessment.md +570 -0
- package/src/intel-team/workflows/pattern-of-life/workflow.md +166 -0
- package/src/intel-team/workflows/pattern-of-life/workflow.yaml +28 -0
- package/src/intel-team/workflows/signal-landscape/README.md +45 -0
- package/src/intel-team/workflows/signal-landscape/steps/step-01-communications-mapping.md +444 -0
- package/src/intel-team/workflows/signal-landscape/steps/step-02-technical-vulnerability.md +437 -0
- package/src/intel-team/workflows/signal-landscape/steps/step-03-infrastructure-signals.md +459 -0
- package/src/intel-team/workflows/signal-landscape/steps/step-04-geographic-mapping.md +554 -0
- package/src/intel-team/workflows/signal-landscape/workflow.md +192 -0
- package/src/intel-team/workflows/signal-landscape/workflow.yaml +28 -0
- package/src/intel-team/workflows/spider-web/README.md +45 -0
- package/src/intel-team/workflows/spider-web/steps/step-01-seed-analysis.md +243 -0
- package/src/intel-team/workflows/spider-web/steps/step-02-expansion.md +517 -0
- package/src/intel-team/workflows/spider-web/steps/step-03-correlation.md +288 -0
- package/src/intel-team/workflows/spider-web/steps/step-04-network-synthesis.md +385 -0
- package/src/intel-team/workflows/spider-web/workflow.md +196 -0
- package/src/intel-team/workflows/spider-web/workflow.yaml +28 -0
- package/src/intel-team/workflows/the-synthesis/README.md +46 -0
- package/src/intel-team/workflows/the-synthesis/steps/step-01-input-cataloging.md +419 -0
- package/src/intel-team/workflows/the-synthesis/steps/step-02-correlation-analysis.md +428 -0
- package/src/intel-team/workflows/the-synthesis/steps/step-03-confidence-assessment.md +392 -0
- package/src/intel-team/workflows/the-synthesis/steps/step-04-product-assembly.md +533 -0
- package/src/intel-team/workflows/the-synthesis/workflow.md +218 -0
- package/src/intel-team/workflows/the-synthesis/workflow.yaml +28 -0
- package/src/intel-team/workflows/threat-constellation/README.md +46 -0
- package/src/intel-team/workflows/threat-constellation/steps/step-01-actor-profile.md +466 -0
- package/src/intel-team/workflows/threat-constellation/steps/step-02-underground-network.md +452 -0
- package/src/intel-team/workflows/threat-constellation/steps/step-03-infrastructure-correlation.md +427 -0
- package/src/intel-team/workflows/threat-constellation/steps/step-04-public-persona.md +427 -0
- package/src/intel-team/workflows/threat-constellation/steps/step-05-ecosystem-synthesis.md +595 -0
- package/src/intel-team/workflows/threat-constellation/workflow.md +280 -0
- package/src/intel-team/workflows/threat-constellation/workflow.yaml +28 -0
- package/src/intel-team/workflows/tripwire/README.md +47 -0
- package/src/intel-team/workflows/tripwire/steps/step-01-monitoring-strategy.md +451 -0
- package/src/intel-team/workflows/tripwire/steps/step-02-infrastructure-monitoring.md +446 -0
- package/src/intel-team/workflows/tripwire/steps/step-03-corporate-monitoring.md +425 -0
- package/src/intel-team/workflows/tripwire/steps/step-04-social-monitoring.md +447 -0
- package/src/intel-team/workflows/tripwire/steps/step-05-dark-web-monitoring.md +506 -0
- package/src/intel-team/workflows/tripwire/workflow.md +243 -0
- package/src/intel-team/workflows/tripwire/workflow.yaml +28 -0
- package/src/legal-team/CHANGELOG.md +90 -0
- package/src/legal-team/README.md +236 -0
- package/src/legal-team/agents/advocate.agent.yaml +131 -0
- package/src/legal-team/agents/advocate.md +257 -0
- package/src/legal-team/agents/baltic.agent.yaml +129 -0
- package/src/legal-team/agents/baltic.md +231 -0
- package/src/legal-team/agents/castile.agent.yaml +131 -0
- package/src/legal-team/agents/castile.md +203 -0
- package/src/legal-team/agents/charter.agent.yaml +131 -0
- package/src/legal-team/agents/charter.md +223 -0
- package/src/legal-team/agents/counsel.agent.yaml +129 -0
- package/src/legal-team/agents/counsel.md +178 -0
- package/src/legal-team/agents/covenant.agent.yaml +131 -0
- package/src/legal-team/agents/covenant.md +230 -0
- package/src/legal-team/agents/deed.agent.yaml +129 -0
- package/src/legal-team/agents/deed.md +269 -0
- package/src/legal-team/agents/europa.agent.yaml +129 -0
- package/src/legal-team/agents/europa.md +184 -0
- package/src/legal-team/agents/gremio.agent.yaml +129 -0
- package/src/legal-team/agents/gremio.md +247 -0
- package/src/legal-team/agents/iberia.agent.yaml +131 -0
- package/src/legal-team/agents/iberia.md +210 -0
- package/src/legal-team/agents/insignia.agent.yaml +131 -0
- package/src/legal-team/agents/insignia.md +250 -0
- package/src/legal-team/agents/liberty.agent.yaml +129 -0
- package/src/legal-team/agents/liberty.md +182 -0
- package/src/legal-team/agents/tribute.agent.yaml +129 -0
- package/src/legal-team/agents/tribute.md +246 -0
- package/src/legal-team/config.yaml +292 -0
- package/src/legal-team/manifest.yaml +22 -0
- package/src/legal-team/module.yaml +118 -0
- package/src/legal-team/package.json +37 -0
- package/src/legal-team/workflows/_shared/templates/contract-review-report-template.md +217 -0
- package/src/legal-team/workflows/_shared/templates/jurisdiction-checklist.md +116 -0
- package/src/legal-team/workflows/_shared/templates/legal-disclaimer.md +30 -0
- package/src/legal-team/workflows/_shared/templates/matter-brief-template.md +153 -0
- package/src/legal-team/workflows/contract-drafting/README.md +56 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-01-requirements.md +79 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-02-governing-law.md +63 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-03-template.md +64 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-04-core-terms.md +72 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-05-risk-provisions.md +69 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-06-boilerplate.md +67 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-07-cross-reference.md +62 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-08-plain-language.md +63 -0
- package/src/legal-team/workflows/contract-drafting/steps/step-09-final.md +99 -0
- package/src/legal-team/workflows/contract-drafting/workflow.md +108 -0
- package/src/legal-team/workflows/contract-drafting/workflow.yaml +28 -0
- package/src/legal-team/workflows/contract-review/README.md +47 -0
- package/src/legal-team/workflows/contract-review/steps/step-01-upload.md +63 -0
- package/src/legal-team/workflows/contract-review/steps/step-02-governing-law.md +62 -0
- package/src/legal-team/workflows/contract-review/steps/step-03-structure.md +68 -0
- package/src/legal-team/workflows/contract-review/steps/step-04-substantive.md +82 -0
- package/src/legal-team/workflows/contract-review/steps/step-05-risk.md +84 -0
- package/src/legal-team/workflows/contract-review/steps/step-05b-compliance-validation.md +301 -0
- package/src/legal-team/workflows/contract-review/steps/step-06-jurisdiction.md +79 -0
- package/src/legal-team/workflows/contract-review/steps/step-07-gaps.md +78 -0
- package/src/legal-team/workflows/contract-review/steps/step-08-recommendations.md +90 -0
- package/src/legal-team/workflows/contract-review/steps/step-09-summary.md +95 -0
- package/src/legal-team/workflows/contract-review/workflow.md +126 -0
- package/src/legal-team/workflows/contract-review/workflow.yaml +28 -0
- package/src/legal-team/workflows/corporate-formation/README.md +72 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-01-consultation.md +95 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-02-jurisdiction.md +108 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-03-entity-type.md +106 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-04-agent-assignment.md +105 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-05-tax-review.md +129 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-06-documents.md +110 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-07-capital.md +107 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-08-compliance.md +122 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-09-package.md +141 -0
- package/src/legal-team/workflows/corporate-formation/steps/step-10-post-formation.md +138 -0
- package/src/legal-team/workflows/corporate-formation/workflow.md +152 -0
- package/src/legal-team/workflows/corporate-formation/workflow.yaml +28 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-01-intake.md +129 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-02-jurisdiction.md +142 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-03-conflict.md +148 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-04-governing.md +133 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-05-forum.md +157 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-06-regulatory.md +175 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-07-coordination.md +141 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-08-strategy.md +168 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-09-risk.md +164 -0
- package/src/legal-team/workflows/cross-border-matter/steps/step-10-report.md +210 -0
- package/src/legal-team/workflows/cross-border-matter/workflow.md +163 -0
- package/src/legal-team/workflows/cross-border-matter/workflow.yaml +28 -0
- package/src/legal-team/workflows/dispute-strategy/README.md +66 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-01-intake.md +113 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-02-facts.md +129 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-03-legal-analysis.md +142 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-04-evidence.md +137 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-05-opposing.md +131 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-06-risk.md +140 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-07-options.md +172 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-08-strategy.md +159 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-09-action.md +149 -0
- package/src/legal-team/workflows/dispute-strategy/steps/step-10-document.md +166 -0
- package/src/legal-team/workflows/dispute-strategy/workflow.md +144 -0
- package/src/legal-team/workflows/dispute-strategy/workflow.yaml +28 -0
- package/src/legal-team/workflows/legal-matter-intake/README.md +44 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-01-welcome.md +83 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-02-classification.md +121 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-03-jurisdiction.md +111 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-04-urgency.md +121 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-05-parties.md +124 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-06-documents.md +140 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-06b-cross-module-assessment.md +261 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-07-routing.md +124 -0
- package/src/legal-team/workflows/legal-matter-intake/steps/step-08-brief.md +128 -0
- package/src/legal-team/workflows/legal-matter-intake/workflow.md +150 -0
- package/src/legal-team/workflows/legal-matter-intake/workflow.yaml +28 -0
- package/src/legal-team/workflows/tax-planning/README.md +93 -0
- package/src/legal-team/workflows/tax-planning/steps/step-01-situation.md +130 -0
- package/src/legal-team/workflows/tax-planning/steps/step-02-goals.md +134 -0
- package/src/legal-team/workflows/tax-planning/steps/step-03-jurisdiction.md +137 -0
- package/src/legal-team/workflows/tax-planning/steps/step-04-entity.md +168 -0
- package/src/legal-team/workflows/tax-planning/steps/step-05-income.md +152 -0
- package/src/legal-team/workflows/tax-planning/steps/step-06-deductions.md +146 -0
- package/src/legal-team/workflows/tax-planning/steps/step-07-international.md +169 -0
- package/src/legal-team/workflows/tax-planning/steps/step-08-compliance.md +154 -0
- package/src/legal-team/workflows/tax-planning/steps/step-09-risk.md +169 -0
- package/src/legal-team/workflows/tax-planning/steps/step-10-report.md +185 -0
- package/src/legal-team/workflows/tax-planning/workflow.md +166 -0
- package/src/legal-team/workflows/tax-planning/workflow.yaml +28 -0
- package/src/package-management/EPIC2-COMPLETION-REPORT.md +463 -0
- package/src/package-management/README.md +661 -0
- package/src/package-management/api/api-gateway.ts +1140 -0
- package/src/package-management/api/index.ts +158 -0
- package/src/package-management/api/openapi-spec.ts +1787 -0
- package/src/package-management/api/package-registry-api.ts +1172 -0
- package/src/package-management/api/sdk-generator.ts +2682 -0
- package/src/package-management/conflict/IMPLEMENTATION-STATUS.md +330 -0
- package/src/package-management/conflict/README.md +556 -0
- package/src/package-management/conflict/analytics/conflict-analytics.js +744 -0
- package/src/package-management/conflict/conflict-orchestrator.js +710 -0
- package/src/package-management/conflict/detector/conflict-detector.js +1199 -0
- package/src/package-management/conflict/index.js +575 -0
- package/src/package-management/conflict/monitoring/conflict-monitor.js +667 -0
- package/src/package-management/conflict/prevention/conflict-prevention.js +855 -0
- package/src/package-management/conflict/resolver/conflict-resolver.js +1034 -0
- package/src/package-management/dependency/README.md +688 -0
- package/src/package-management/dependency/index.ts +247 -0
- package/src/package-management/dependency/integration-adapter.ts +790 -0
- package/src/package-management/dependency/manager/bmad-dependency-manager.js +1589 -0
- package/src/package-management/dependency/manager/index.js +46 -0
- package/src/package-management/dependency/resolver/dependency-resolver.ts +1456 -0
- package/src/package-management/dependency/resolver/index.ts +46 -0
- package/src/package-management/dependency/validator/index.js +41 -0
- package/src/package-management/epic2-integration.ts +1084 -0
- package/src/package-management/installation/README.md +736 -0
- package/src/package-management/installation/hooks/builtin-hooks.js +728 -0
- package/src/package-management/installation/hooks/hook-manager.js +1297 -0
- package/src/package-management/installation/index.js +729 -0
- package/src/package-management/installation/orchestrator/__tests__/orchestrator.test.js +1763 -0
- package/src/package-management/installation/orchestrator/bmad-installation-orchestrator.js +1257 -0
- package/src/package-management/installation/orchestrator/health-monitor.js +947 -0
- package/src/package-management/installation/orchestrator/metrics-collector.js +1068 -0
- package/src/package-management/installation/orchestrator/rollback-manager.js +882 -0
- package/src/package-management/installation/progress/progress-dashboard.js +900 -0
- package/src/package-management/installation/progress/progress-tracker.js +1340 -0
- package/src/package-management/monitoring/README.md +1184 -0
- package/src/package-management/monitoring/dashboard/health-dashboard.ts +1310 -0
- package/src/package-management/monitoring/dashboard/index.ts +513 -0
- package/src/package-management/monitoring/health/compliance-sla.ts +1507 -0
- package/src/package-management/monitoring/health/health-monitoring.ts +1015 -0
- package/src/package-management/monitoring/health/predictive-analytics.ts +941 -0
- package/src/package-management/monitoring/index.ts +863 -0
- package/src/package-management/monitoring/metrics/collectors/system-metrics.ts +802 -0
- package/src/package-management/monitoring/metrics/index.ts +165 -0
- package/src/package-management/monitoring/metrics/performance-metrics.ts +1081 -0
- package/src/package-management/registry/discovery/index.ts +548 -0
- package/src/package-management/registry/discovery/package-discovery-engine.ts +1171 -0
- package/src/package-management/registry/discovery/smart-recommendation-system.ts +1178 -0
- package/src/package-management/registry/interfaces/index.ts +550 -0
- package/src/package-management/registry/interfaces/package-types.ts +790 -0
- package/src/package-management/registry/interfaces/registry-interfaces.ts +1232 -0
- package/src/package-management/registry/manager/package-registry-manager.ts +1121 -0
- package/src/package-management/security-integration.ts +1250 -0
- package/src/package-management/versioning/README.md +868 -0
- package/src/package-management/versioning/VALIDATION-REPORT.md +262 -0
- package/src/package-management/versioning/compatibility/bmad-version-compatibility.js +1828 -0
- package/src/package-management/versioning/index.js +340 -0
- package/src/package-management/versioning/integration/epic2-integration.js +834 -0
- package/src/package-management/versioning/matrix/compatibility-matrix-generator.js +1537 -0
- package/src/package-management/versioning/matrix/matrix-visualization.js +831 -0
- package/src/package-management/versioning/migration/migration-executor.js +923 -0
- package/src/package-management/versioning/migration/version-migration-planner.js +1466 -0
- package/src/package-management/versioning/package.json +234 -0
- package/src/package-management/versioning/rollback/rollback-manager.js +830 -0
- package/src/package-management/versioning/validate-core.js +158 -0
- package/src/package-management/versioning/validate-system.js +220 -0
- package/src/security/README.md +672 -0
- package/src/security/__tests__/stage-13-validation.test.js +449 -0
- package/src/security/audit/analytics-dashboard.ts +1408 -0
- package/src/security/audit/audit-alerting.js +589 -0
- package/src/security/audit/audit-logger.ts +795 -0
- package/src/security/audit/compliance-reporter.ts +995 -0
- package/src/security/audit/siem-integration.ts +768 -0
- package/src/security/auditor-portal.js +640 -0
- package/src/security/chain-of-custody.js +430 -0
- package/src/security/cron/daily-evidence-verification.js +218 -0
- package/src/security/docs/ARCHITECTURE.md +538 -0
- package/src/security/docs/CONFIGURATION.md +1412 -0
- package/src/security/docs/README.md +25 -0
- package/src/security/docs/api/README.md +83 -0
- package/src/security/docs/examples/README.md +95 -0
- package/src/security/docs/guides/quick-start.md +49 -0
- package/src/security/encryption/aes-encryption.ts +88 -0
- package/src/security/encryption/crypto-utils.ts +28 -0
- package/src/security/encryption/generate-token.ts +292 -0
- package/src/security/encryption/hash-chains.ts +150 -0
- package/src/security/encryption/key-derivation.ts +87 -0
- package/src/security/epic1-integration.ts +699 -0
- package/src/security/evidence-integrity.js +591 -0
- package/src/security/gdpr-compliance.js +828 -0
- package/src/security/generate-validator-checksums.js +88 -0
- package/src/security/monitoring/role-hijacking-monitor.ts +604 -0
- package/src/security/monitoring/security-monitor.ts +71 -0
- package/src/security/patches/encoded-payload-detection-patch.js +417 -0
- package/src/security/patches/privilege-escalation-security-patch.js +232 -0
- package/src/security/patches/prompt-injection-protection-patch.js +416 -0
- package/src/security/rbac/config/rbac-config.ts +27 -0
- package/src/security/rbac/permissions/permission-manifests.ts +186 -0
- package/src/security/rbac/permissions/permission-service.ts +484 -0
- package/src/security/rbac/permissions/permission-types.ts +25 -0
- package/src/security/rbac/roles/role-types.ts +31 -0
- package/src/security/rbac/sod/segregation-of-duties.ts +311 -0
- package/src/security/remediation-tracker.js +641 -0
- package/src/security/retention-policy.js +491 -0
- package/src/security/supply-chain/__tests__/dependency-protection.test.js +1496 -0
- package/src/security/supply-chain/artifact-signer.js +601 -0
- package/src/security/supply-chain/atomic-operations.js +612 -0
- package/src/security/supply-chain/build-isolation.js +543 -0
- package/src/security/supply-chain/cache-integrity.js +520 -0
- package/src/security/supply-chain/dependency-protection.js +613 -0
- package/src/security/supply-chain/hook-sandbox.js +640 -0
- package/src/security/supply-chain/index.js +288 -0
- package/src/security/supply-chain/safe-cli.js +552 -0
- package/src/security/test-file.txt +1 -0
- package/src/security/validator-checksums.json +81 -0
- package/src/security/validators/bash-safety.js +62 -0
- package/src/security/validators/rate-limiter.js +99 -0
- package/src/security/verify-validators.js +129 -0
- package/src/strategy-team/README.md +344 -0
- package/src/strategy-team/agents/communications-director.agent.yaml +131 -0
- package/src/strategy-team/agents/communications-director.md +77 -0
- package/src/strategy-team/agents/debate-coach.agent.yaml +131 -0
- package/src/strategy-team/agents/debate-coach.md +77 -0
- package/src/strategy-team/agents/ethics-advisor.agent.yaml +129 -0
- package/src/strategy-team/agents/ethics-advisor.md +77 -0
- package/src/strategy-team/agents/policy-analyst.agent.yaml +131 -0
- package/src/strategy-team/agents/policy-analyst.md +77 -0
- package/src/strategy-team/agents/political-strategist.agent.yaml +131 -0
- package/src/strategy-team/agents/political-strategist.md +77 -0
- package/src/strategy-team/agents/stakeholder-mediator.agent.yaml +131 -0
- package/src/strategy-team/agents/stakeholder-mediator.md +77 -0
- package/src/strategy-team/agents/the-conservative.agent.yaml +131 -0
- package/src/strategy-team/agents/the-conservative.md +86 -0
- package/src/strategy-team/agents/the-liberator.agent.yaml +131 -0
- package/src/strategy-team/agents/the-liberator.md +86 -0
- package/src/strategy-team/agents/the-master-strategist.agent.yaml +131 -0
- package/src/strategy-team/agents/the-master-strategist.md +86 -0
- package/src/strategy-team/agents/the-principled-commander.agent.yaml +131 -0
- package/src/strategy-team/agents/the-principled-commander.md +87 -0
- package/src/strategy-team/agents/the-realist.agent.yaml +131 -0
- package/src/strategy-team/agents/the-realist.md +86 -0
- package/src/strategy-team/agents/the-revolutionary.agent.yaml +131 -0
- package/src/strategy-team/agents/the-revolutionary.md +86 -0
- package/src/strategy-team/agents/the-strategist-warrior.agent.yaml +131 -0
- package/src/strategy-team/agents/the-strategist-warrior.md +86 -0
- package/src/strategy-team/agents/the-technocrat.agent.yaml +129 -0
- package/src/strategy-team/agents/the-technocrat.md +86 -0
- package/src/strategy-team/config.yaml +254 -0
- package/src/strategy-team/manifest.yaml +22 -0
- package/src/strategy-team/module.yaml +80 -0
- package/src/strategy-team/package.json +37 -0
- package/src/strategy-team/workflows/_shared/agent-roster.md +123 -0
- package/src/strategy-team/workflows/_shared/party-mode-presets.md +589 -0
- package/src/strategy-team/workflows/_shared/templates/board-relations-template.md +365 -0
- package/src/strategy-team/workflows/_shared/templates/competitive-warfare-template.md +339 -0
- package/src/strategy-team/workflows/_shared/templates/conflict-resolution-template.md +245 -0
- package/src/strategy-team/workflows/_shared/templates/corporate-politics-template.md +369 -0
- package/src/strategy-team/workflows/_shared/templates/crisis-response-template.md +369 -0
- package/src/strategy-team/workflows/_shared/templates/decision-brief-template.md +275 -0
- package/src/strategy-team/workflows/_shared/templates/ethical-dilemma-template.md +230 -0
- package/src/strategy-team/workflows/_shared/templates/leadership-philosophy-template.md +218 -0
- package/src/strategy-team/workflows/_shared/templates/leadership-transition-template.md +357 -0
- package/src/strategy-team/workflows/_shared/templates/ma-due-diligence-template.md +433 -0
- package/src/strategy-team/workflows/_shared/templates/negotiation-playbook-template.md +307 -0
- package/src/strategy-team/workflows/_shared/templates/performance-review-template.md +399 -0
- package/src/strategy-team/workflows/_shared/templates/policy-document-template.md +344 -0
- package/src/strategy-team/workflows/_shared/templates/political-risk-template.md +165 -0
- package/src/strategy-team/workflows/_shared/templates/presentation-outline-template.md +274 -0
- package/src/strategy-team/workflows/_shared/templates/strategic-plan-template.md +374 -0
- package/src/strategy-team/workflows/board-presentation-prep/README.md +43 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-01-init.md +230 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-01b-continue.md +112 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-02-narrative-arc.md +276 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-03-evidence-package.md +281 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-04-qa-preparation.md +284 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-05-archetype-review.md +243 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-05b-cross-module-validation.md +343 -0
- package/src/strategy-team/workflows/board-presentation-prep/steps/step-06-deck-outline.md +465 -0
- package/src/strategy-team/workflows/board-presentation-prep/workflow.md +71 -0
- package/src/strategy-team/workflows/board-presentation-prep/workflow.yaml +28 -0
- package/src/strategy-team/workflows/board-relations-management/README.md +67 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-01-init.md +220 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-01b-continue.md +109 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-02-director-profiles.md +229 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-03-engagement-strategy.md +244 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-04-communication-planning.md +259 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-05-issue-navigation.md +245 -0
- package/src/strategy-team/workflows/board-relations-management/steps/step-06-action-plan.md +271 -0
- package/src/strategy-team/workflows/board-relations-management/workflow.md +73 -0
- package/src/strategy-team/workflows/board-relations-management/workflow.yaml +28 -0
- package/src/strategy-team/workflows/competitive-warfare/README.md +53 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-01-init.md +252 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-01b-continue.md +98 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-02-enemy-analysis.md +261 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-02b-intelligence-integration.md +403 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-03-self-assessment.md +267 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-04-strategic-positioning.md +254 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-05-coalition-warfare.md +265 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-06-information-warfare.md +259 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-07-battle-plan.md +286 -0
- package/src/strategy-team/workflows/competitive-warfare/steps/step-08-victory-conditions.md +282 -0
- package/src/strategy-team/workflows/competitive-warfare/workflow.md +105 -0
- package/src/strategy-team/workflows/competitive-warfare/workflow.yaml +28 -0
- package/src/strategy-team/workflows/conflict-resolution/README.md +53 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-01-init.md +233 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-01b-continue.md +114 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-02-interest-analysis.md +241 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-03-perspective-taking.md +209 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-04-common-ground.md +233 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-05-option-generation.md +249 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-06-agreement-building.md +243 -0
- package/src/strategy-team/workflows/conflict-resolution/steps/step-07-implementation.md +256 -0
- package/src/strategy-team/workflows/conflict-resolution/workflow.md +90 -0
- package/src/strategy-team/workflows/conflict-resolution/workflow.yaml +28 -0
- package/src/strategy-team/workflows/corporate-political-game/README.md +47 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-01-init.md +263 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-01b-continue.md +138 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-02-power-mapping.md +283 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-03-player-analysis.md +300 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-04-coalition-math.md +361 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-05-persuasion-strategy.md +365 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-06-relationship-plan.md +358 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-07-reputation-management.md +370 -0
- package/src/strategy-team/workflows/corporate-political-game/steps/step-08-execution-playbook.md +383 -0
- package/src/strategy-team/workflows/corporate-political-game/workflow.md +102 -0
- package/src/strategy-team/workflows/corporate-political-game/workflow.yaml +28 -0
- package/src/strategy-team/workflows/crisis-response-planning/README.md +54 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-01-init.md +249 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-01b-continue.md +132 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-02-immediate-actions.md +314 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-02a-cross-module.md +194 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-03-stakeholder-comms.md +294 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-04-media-strategy.md +350 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-05-political-dimension.md +346 -0
- package/src/strategy-team/workflows/crisis-response-planning/steps/step-06-recovery-path.md +391 -0
- package/src/strategy-team/workflows/crisis-response-planning/workflow.md +88 -0
- package/src/strategy-team/workflows/crisis-response-planning/workflow.yaml +28 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/README.md +55 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-01-init.md +241 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-01b-continue.md +105 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-02-stakeholder-impact.md +252 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-03-framework-analysis.md +300 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-04-traditional-wisdom.md +237 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-05-justice-perspective.md +241 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-06-principled-synthesis.md +277 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/steps/step-07-resolution-document.md +241 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/workflow.md +119 -0
- package/src/strategy-team/workflows/ethical-dilemma-resolution/workflow.yaml +28 -0
- package/src/strategy-team/workflows/leadership-philosophy/README.md +54 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-01-init.md +236 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-01b-continue.md +102 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-02-values-exploration.md +260 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-03-leadership-style.md +246 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-04-principles.md +257 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-05-legacy-vision.md +245 -0
- package/src/strategy-team/workflows/leadership-philosophy/steps/step-06-philosophy-document.md +298 -0
- package/src/strategy-team/workflows/leadership-philosophy/workflow.md +127 -0
- package/src/strategy-team/workflows/leadership-philosophy/workflow.yaml +28 -0
- package/src/strategy-team/workflows/leadership-transition-planning/README.md +68 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-01-init.md +221 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-01b-continue.md +110 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-02-successor-assessment.md +271 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-03-knowledge-transfer.md +264 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-04-stakeholder-management.md +255 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-05-operational-continuity.md +246 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-06-transition-timeline.md +252 -0
- package/src/strategy-team/workflows/leadership-transition-planning/steps/step-07-transition-document.md +280 -0
- package/src/strategy-team/workflows/leadership-transition-planning/workflow.md +74 -0
- package/src/strategy-team/workflows/leadership-transition-planning/workflow.yaml +28 -0
- package/src/strategy-team/workflows/ma-due-diligence/README.md +62 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-01-init.md +233 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-01b-continue.md +111 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-02-strategic-fit.md +208 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-03-financial-assessment.md +251 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-04-operational-diligence.md +270 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-04b-cross-module-diligence.md +372 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-05-risk-identification.md +265 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-06-integration-planning.md +301 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-07-stakeholder-comms.md +287 -0
- package/src/strategy-team/workflows/ma-due-diligence/steps/step-08-deal-recommendation.md +295 -0
- package/src/strategy-team/workflows/ma-due-diligence/workflow.md +75 -0
- package/src/strategy-team/workflows/ma-due-diligence/workflow.yaml +28 -0
- package/src/strategy-team/workflows/performance-review-preparation/README.md +68 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-01-init.md +228 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-01b-continue.md +109 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-02-performance-assessment.md +280 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-03-feedback-calibration.md +264 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-04-development-planning.md +251 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-05-conversation-prep.md +276 -0
- package/src/strategy-team/workflows/performance-review-preparation/steps/step-06-review-document.md +330 -0
- package/src/strategy-team/workflows/performance-review-preparation/workflow.md +73 -0
- package/src/strategy-team/workflows/performance-review-preparation/workflow.yaml +28 -0
- package/src/strategy-team/workflows/policy-development/README.md +55 -0
- package/src/strategy-team/workflows/policy-development/steps/step-01-init.md +220 -0
- package/src/strategy-team/workflows/policy-development/steps/step-01b-continue.md +110 -0
- package/src/strategy-team/workflows/policy-development/steps/step-02-evidence-review.md +226 -0
- package/src/strategy-team/workflows/policy-development/steps/step-03-ethics-analysis.md +271 -0
- package/src/strategy-team/workflows/policy-development/steps/step-04-conservative-review.md +261 -0
- package/src/strategy-team/workflows/policy-development/steps/step-05-reform-perspective.md +281 -0
- package/src/strategy-team/workflows/policy-development/steps/step-05b-security-legal-review.md +402 -0
- package/src/strategy-team/workflows/policy-development/steps/step-06-draft-policy.md +337 -0
- package/src/strategy-team/workflows/policy-development/steps/step-07-implementation-plan.md +413 -0
- package/src/strategy-team/workflows/policy-development/workflow.md +72 -0
- package/src/strategy-team/workflows/policy-development/workflow.yaml +28 -0
- package/src/strategy-team/workflows/political-risk-assessment/README.md +54 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-01-init.md +230 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-01b-continue.md +104 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-02-power-mapping.md +233 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-03-interest-analysis.md +224 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-04-risk-identification.md +244 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-05-probability-impact.md +253 -0
- package/src/strategy-team/workflows/political-risk-assessment/steps/step-06-mitigation-planning.md +279 -0
- package/src/strategy-team/workflows/political-risk-assessment/workflow.md +103 -0
- package/src/strategy-team/workflows/political-risk-assessment/workflow.yaml +28 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/README.md +56 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-01-init.md +224 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-01b-continue.md +113 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-02-interest-mapping.md +246 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-03-power-analysis.md +304 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-04-argument-arsenal.md +300 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-05-tactical-options.md +336 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-06-message-prep.md +302 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/steps/step-07-playbook.md +324 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/workflow.md +72 -0
- package/src/strategy-team/workflows/stakeholder-negotiation-prep/workflow.yaml +28 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/README.md +67 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-01-init.md +205 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-01b-continue.md +111 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-02-evidence-gathering.md +213 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-03-stakeholder-analysis.md +272 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-04-perspective-carousel.md +310 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-05-debate-synthesis.md +268 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-05b-risk-validation.md +292 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-06-ethics-check.md +257 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-07-communication-plan.md +301 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/steps/step-08-decision-document.md +326 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/workflow.md +75 -0
- package/src/strategy-team/workflows/strategic-decision-workshop/workflow.yaml +28 -0
- package/src/strategy-team/workflows/strategic-planning-session/README.md +56 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-01-init.md +224 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-01b-continue.md +113 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-02-landscape-assessment.md +261 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-03-timing-analysis.md +270 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-04-systems-thinking.md +287 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-05-tradition-risk.md +300 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-06-political-reality.md +327 -0
- package/src/strategy-team/workflows/strategic-planning-session/steps/step-07-strategy-document.md +426 -0
- package/src/strategy-team/workflows/strategic-planning-session/workflow.md +72 -0
- package/src/strategy-team/workflows/strategic-planning-session/workflow.yaml +28 -0
- package/src/utility/cross-platform-glob.js +29 -0
- package/src/utility/normalize-line-endings.cjs +19 -0
- package/src/utility/safe-yaml.js +122 -0
- package/src/utility/version-checker.js +292 -0
- package/tools/cli/bmad-cli.js +117 -0
- package/tools/cli/lib/config.js +1 -1
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
# Step 3: Starter Template Evaluation
|
|
2
|
+
|
|
3
|
+
## MANDATORY EXECUTION RULES (READ FIRST)
|
|
4
|
+
|
|
5
|
+
- 🛑 NEVER generate content without user input
|
|
6
|
+
- ✅ ALWAYS treat this as collaborative discovery between architectural peers
|
|
7
|
+
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
8
|
+
- 💬 FOCUS on evaluating starter template options with current versions
|
|
9
|
+
- 🌐 ALWAYS search the web to verify current versions - NEVER trust hardcoded versions
|
|
10
|
+
- ⚠️ ABSOLUTELY NO TIME ESTIMATES - AI development speed has fundamentally changed
|
|
11
|
+
- 📖 CRITICAL: ALWAYS read the complete step file before taking any action - partial understanding leads to incomplete architecture
|
|
12
|
+
- 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read and understood before proceeding
|
|
13
|
+
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
|
14
|
+
|
|
15
|
+
## EXECUTION PROTOCOLS
|
|
16
|
+
|
|
17
|
+
- 🎯 Show your analysis before taking any action
|
|
18
|
+
- 🌐 Search the web to verify current versions and options
|
|
19
|
+
- ⚠️ Present A/P/C menu after generating starter template analysis
|
|
20
|
+
- 💾 ONLY save when user chooses C (Continue)
|
|
21
|
+
- 📖 Update frontmatter `stepsCompleted: [1, 2, 3]` before loading next step
|
|
22
|
+
- 🚫 FORBIDDEN to load next step until C is selected
|
|
23
|
+
|
|
24
|
+
## COLLABORATION MENUS (A/P/C)
|
|
25
|
+
|
|
26
|
+
This step will generate content and present choices:
|
|
27
|
+
|
|
28
|
+
- **A (Advanced Elicitation)**: Use discovery protocols to explore unconventional starter options or custom approaches
|
|
29
|
+
- **P (Party Mode)**: Bring multiple perspectives to evaluate starter trade-offs for different use cases
|
|
30
|
+
- **C (Continue)**: Save the content to the document and proceed to next step
|
|
31
|
+
|
|
32
|
+
## PROTOCOL INTEGRATION
|
|
33
|
+
|
|
34
|
+
- When 'A' selected: Execute {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
|
|
35
|
+
- When 'P' selected: Execute {project-root}/_bmad/core/workflows/party-mode/workflow.md
|
|
36
|
+
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
37
|
+
- User accepts/rejects protocol changes before proceeding
|
|
38
|
+
|
|
39
|
+
## CONTEXT BOUNDARIES
|
|
40
|
+
|
|
41
|
+
- Project context from step 2 is available and complete
|
|
42
|
+
- Project context file from step-01 may contain technical preferences
|
|
43
|
+
- No architectural decisions made yet - evaluating foundations
|
|
44
|
+
- Focus on technical preferences discovery and starter evaluation
|
|
45
|
+
- Consider project requirements and existing preferences when evaluating options
|
|
46
|
+
|
|
47
|
+
## YOUR TASK
|
|
48
|
+
|
|
49
|
+
Discover technical preferences and evaluate starter template options, leveraging existing technical preferences and establishing solid architectural foundations.
|
|
50
|
+
|
|
51
|
+
## STARTER EVALUATION SEQUENCE
|
|
52
|
+
|
|
53
|
+
### 0. Check Technical Preferences & Context
|
|
54
|
+
|
|
55
|
+
**Check Project Context for Existing Technical Preferences:**
|
|
56
|
+
"Before we dive into starter templates, let me check if you have any technical preferences already documented.
|
|
57
|
+
|
|
58
|
+
{{if_project_context_exists}}
|
|
59
|
+
I found some technical rules in your project context file:
|
|
60
|
+
{{extracted_technical_preferences_from_project_context}}
|
|
61
|
+
|
|
62
|
+
**Project Context Technical Rules Found:**
|
|
63
|
+
|
|
64
|
+
- Languages/Frameworks: {{languages_frameworks_from_context}}
|
|
65
|
+
- Tools & Libraries: {{tools_from_context}}
|
|
66
|
+
- Development Patterns: {{patterns_from_context}}
|
|
67
|
+
- Platform Preferences: {{platforms_from_context}}
|
|
68
|
+
|
|
69
|
+
{{else}}
|
|
70
|
+
No existing technical preferences found in project context file. We'll establish your technical preferences now.
|
|
71
|
+
{{/if_project_context}}"
|
|
72
|
+
|
|
73
|
+
**Discover User Technical Preferences:**
|
|
74
|
+
"Based on your project context, let's discuss your technical preferences:
|
|
75
|
+
|
|
76
|
+
{{primary_technology_category}} Preferences:
|
|
77
|
+
|
|
78
|
+
- **Languages**: Do you have preferences between TypeScript/JavaScript, Python, Go, Rust, etc.?
|
|
79
|
+
- **Frameworks**: Any existing familiarity or preferences (React, Vue, Angular, Next.js, etc.)?
|
|
80
|
+
- **Databases**: Any preferences or existing infrastructure (PostgreSQL, MongoDB, MySQL, etc.)?
|
|
81
|
+
|
|
82
|
+
**Development Experience:**
|
|
83
|
+
|
|
84
|
+
- What's your team's experience level with different technologies?
|
|
85
|
+
- Are there any technologies you want to learn vs. what you're comfortable with?
|
|
86
|
+
|
|
87
|
+
**Platform/Deployment Preferences:**
|
|
88
|
+
|
|
89
|
+
- Cloud provider preferences (AWS, Vercel, Railway, etc.)?
|
|
90
|
+
- Container preferences (Docker, Serverless, Traditional)?
|
|
91
|
+
|
|
92
|
+
**Integrations:**
|
|
93
|
+
|
|
94
|
+
- Any existing systems or APIs you need to integrate with?
|
|
95
|
+
- Third-party services you plan to use (payment, authentication, analytics, etc.)?
|
|
96
|
+
|
|
97
|
+
These preferences will help me recommend the most suitable starter templates and guide our architectural decisions."
|
|
98
|
+
|
|
99
|
+
### 1. Identify Primary Technology Domain
|
|
100
|
+
|
|
101
|
+
Based on project context analysis and technical preferences, identify the primary technology stack:
|
|
102
|
+
|
|
103
|
+
- **Web application** → Look for Next.js, Vite, Remix, SvelteKit starters
|
|
104
|
+
- **Mobile app** → Look for React Native, Expo, Flutter starters
|
|
105
|
+
- **API/Backend** → Look for NestJS, Express, Fastify, Supabase starters
|
|
106
|
+
- **CLI tool** → Look for CLI framework starters (oclif, commander, etc.)
|
|
107
|
+
- **Full-stack** → Look for T3, RedwoodJS, Blitz, Next.js starters
|
|
108
|
+
- **Desktop** → Look for Electron, Tauri starters
|
|
109
|
+
|
|
110
|
+
### 2. UX Requirements Consideration
|
|
111
|
+
|
|
112
|
+
If UX specification was loaded, consider UX requirements when selecting starter:
|
|
113
|
+
|
|
114
|
+
- **Rich animations** → Framer Motion compatible starter
|
|
115
|
+
- **Complex forms** → React Hook Form included starter
|
|
116
|
+
- **Real-time features** → Socket.io or WebSocket ready starter
|
|
117
|
+
- **Design system** → Storybook-enabled starter
|
|
118
|
+
- **Offline capability** → Service worker or PWA configured starter
|
|
119
|
+
|
|
120
|
+
### 3. Research Current Starter Options
|
|
121
|
+
|
|
122
|
+
Search the web to find current, maintained starter templates:
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
Search the web: "{{primary_technology}} starter template CLI create command latest"
|
|
126
|
+
Search the web: "{{primary_technology}} boilerplate generator latest options"
|
|
127
|
+
Search the web: "{{primary_technology}} production-ready starter best practices"
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### 4. Investigate Top Starter Options
|
|
131
|
+
|
|
132
|
+
For each promising starter found, investigate details:
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
Search the web: "{{starter_name}} default setup technologies included latest"
|
|
136
|
+
Search the web: "{{starter_name}} project structure file organization"
|
|
137
|
+
Search the web: "{{starter_name}} production deployment capabilities"
|
|
138
|
+
Search the web: "{{starter_name}} recent updates maintenance status"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### 5. Analyze What Each Starter Provides
|
|
142
|
+
|
|
143
|
+
For each viable starter option, document:
|
|
144
|
+
|
|
145
|
+
**Technology Decisions Made:**
|
|
146
|
+
|
|
147
|
+
- Language/TypeScript configuration
|
|
148
|
+
- Styling solution (CSS, Tailwind, Styled Components, etc.)
|
|
149
|
+
- Testing framework setup
|
|
150
|
+
- Linting/Formatting configuration
|
|
151
|
+
- Build tooling and optimization
|
|
152
|
+
- Project structure and organization
|
|
153
|
+
|
|
154
|
+
**Architectural Patterns Established:**
|
|
155
|
+
|
|
156
|
+
- Code organization patterns
|
|
157
|
+
- Component structure conventions
|
|
158
|
+
- API layering approach
|
|
159
|
+
- State management setup
|
|
160
|
+
- Routing patterns
|
|
161
|
+
- Environment configuration
|
|
162
|
+
|
|
163
|
+
**Development Experience Features:**
|
|
164
|
+
|
|
165
|
+
- Hot reloading and development server
|
|
166
|
+
- TypeScript configuration
|
|
167
|
+
- Debugging setup
|
|
168
|
+
- Testing infrastructure
|
|
169
|
+
- Documentation generation
|
|
170
|
+
|
|
171
|
+
### 6. Present Starter Options
|
|
172
|
+
|
|
173
|
+
Based on user skill level and project needs:
|
|
174
|
+
|
|
175
|
+
**For Expert Users:**
|
|
176
|
+
"Found {{starter_name}} which provides:
|
|
177
|
+
{{quick_decision_list_of_key_decisions}}
|
|
178
|
+
|
|
179
|
+
This would establish our base architecture with these technical decisions already made. Use it?"
|
|
180
|
+
|
|
181
|
+
**For Intermediate Users:**
|
|
182
|
+
"I found {{starter_name}}, which is a well-maintained starter for {{project_type}} projects.
|
|
183
|
+
|
|
184
|
+
It makes these architectural decisions for us:
|
|
185
|
+
{{decision_list_with_explanations}}
|
|
186
|
+
|
|
187
|
+
This gives us a solid foundation following current best practices. Should we use it?"
|
|
188
|
+
|
|
189
|
+
**For Beginner Users:**
|
|
190
|
+
"I found {{starter_name}}, which is like a pre-built foundation for your project.
|
|
191
|
+
|
|
192
|
+
Think of it like buying a prefab house frame instead of cutting each board yourself.
|
|
193
|
+
|
|
194
|
+
It makes these decisions for us:
|
|
195
|
+
{{friendly_explanation_of_decisions}}
|
|
196
|
+
|
|
197
|
+
This is a great starting point that follows best practices and saves us from making dozens of small technical choices. Should we use it?"
|
|
198
|
+
|
|
199
|
+
### 7. Get Current CLI Commands
|
|
200
|
+
|
|
201
|
+
If user shows interest in a starter, get the exact current commands:
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
Search the web: "{{starter_name}} CLI command options flags latest"
|
|
205
|
+
Search the web: "{{starter_name}} create new project command examples"
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
### 8. Generate Starter Template Content
|
|
209
|
+
|
|
210
|
+
Prepare the content to append to the document:
|
|
211
|
+
|
|
212
|
+
#### Content Structure
|
|
213
|
+
|
|
214
|
+
````markdown
|
|
215
|
+
## Starter Template Evaluation
|
|
216
|
+
|
|
217
|
+
### Primary Technology Domain
|
|
218
|
+
|
|
219
|
+
{{identified_domain}} based on project requirements analysis
|
|
220
|
+
|
|
221
|
+
### Starter Options Considered
|
|
222
|
+
|
|
223
|
+
{{analysis_of_evaluated_starters}}
|
|
224
|
+
|
|
225
|
+
### Selected Starter: {{starter_name}}
|
|
226
|
+
|
|
227
|
+
**Rationale for Selection:**
|
|
228
|
+
{{why_this_starter_was_chosen}}
|
|
229
|
+
|
|
230
|
+
**Initialization Command:**
|
|
231
|
+
|
|
232
|
+
```bash
|
|
233
|
+
{{full_starter_command_with_options}}
|
|
234
|
+
```
|
|
235
|
+
````
|
|
236
|
+
|
|
237
|
+
**Architectural Decisions Provided by Starter:**
|
|
238
|
+
|
|
239
|
+
**Language & Runtime:**
|
|
240
|
+
{{language_typescript_setup}}
|
|
241
|
+
|
|
242
|
+
**Styling Solution:**
|
|
243
|
+
{{styling_solution_configuration}}
|
|
244
|
+
|
|
245
|
+
**Build Tooling:**
|
|
246
|
+
{{build_tools_and_optimization}}
|
|
247
|
+
|
|
248
|
+
**Testing Framework:**
|
|
249
|
+
{{testing_setup_and_configuration}}
|
|
250
|
+
|
|
251
|
+
**Code Organization:**
|
|
252
|
+
{{project_structure_and_patterns}}
|
|
253
|
+
|
|
254
|
+
**Development Experience:**
|
|
255
|
+
{{development_tools_and_workflow}}
|
|
256
|
+
|
|
257
|
+
**Note:** Project initialization using this command should be the first implementation story.
|
|
258
|
+
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### 9. Present Content and Menu
|
|
262
|
+
|
|
263
|
+
Show the generated content and present choices:
|
|
264
|
+
|
|
265
|
+
"I've analyzed starter template options for {{project_type}} projects.
|
|
266
|
+
|
|
267
|
+
**Here's what I'll add to the document:**
|
|
268
|
+
|
|
269
|
+
[Show the complete markdown content from step 8]
|
|
270
|
+
|
|
271
|
+
**What would you like to do?**
|
|
272
|
+
[A] Advanced Elicitation - Explore custom approaches or unconventional starters
|
|
273
|
+
[P] Party Mode - Evaluate trade-offs from different perspectives
|
|
274
|
+
[C] Continue - Save this decision and move to architectural decisions"
|
|
275
|
+
|
|
276
|
+
### 10. Handle Menu Selection
|
|
277
|
+
|
|
278
|
+
#### If 'A' (Advanced Elicitation):
|
|
279
|
+
|
|
280
|
+
- Execute {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with current starter analysis
|
|
281
|
+
- Process enhanced insights about starter options or custom approaches
|
|
282
|
+
- Ask user: "Accept these changes to the starter template evaluation? (y/n)"
|
|
283
|
+
- If yes: Update content, then return to A/P/C menu
|
|
284
|
+
- If no: Keep original content, then return to A/P/C menu
|
|
285
|
+
|
|
286
|
+
#### If 'P' (Party Mode):
|
|
287
|
+
|
|
288
|
+
- Execute {project-root}/_bmad/core/workflows/party-mode/workflow.md with starter evaluation context
|
|
289
|
+
- Process collaborative insights about starter trade-offs
|
|
290
|
+
- Ask user: "Accept these changes to the starter template evaluation? (y/n)"
|
|
291
|
+
- If yes: Update content, then return to A/P/C menu
|
|
292
|
+
- If no: Keep original content, then return to A/P/C menu
|
|
293
|
+
|
|
294
|
+
#### If 'C' (Continue):
|
|
295
|
+
|
|
296
|
+
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
297
|
+
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
|
298
|
+
- Load `./step-04-decisions.md`
|
|
299
|
+
|
|
300
|
+
## APPEND TO DOCUMENT:
|
|
301
|
+
|
|
302
|
+
When user selects 'C', append the content directly to the document using the structure from step 8.
|
|
303
|
+
|
|
304
|
+
## SUCCESS METRICS:
|
|
305
|
+
|
|
306
|
+
✅ Primary technology domain correctly identified from project context
|
|
307
|
+
✅ Current, maintained starter templates researched and evaluated
|
|
308
|
+
✅ All versions verified using web search, not hardcoded
|
|
309
|
+
✅ Architectural implications of starter choice clearly documented
|
|
310
|
+
✅ User provided with clear rationale for starter selection
|
|
311
|
+
✅ A/P/C menu presented and handled correctly
|
|
312
|
+
✅ Content properly appended to document when C selected
|
|
313
|
+
|
|
314
|
+
## FAILURE MODES:
|
|
315
|
+
|
|
316
|
+
❌ Not verifying current versions with web search
|
|
317
|
+
❌ Ignoring UX requirements when evaluating starters
|
|
318
|
+
❌ Not documenting what architectural decisions the starter makes
|
|
319
|
+
❌ Failing to consider maintenance status of starter templates
|
|
320
|
+
❌ Not providing clear rationale for starter selection
|
|
321
|
+
❌ Not presenting A/P/C menu after content generation
|
|
322
|
+
❌ **CRITICAL**: Reading only partial step file - leads to incomplete understanding and poor decisions
|
|
323
|
+
❌ **CRITICAL**: Proceeding with 'C' without fully reading and understanding the next step file
|
|
324
|
+
❌ **CRITICAL**: Making decisions without complete understanding of step requirements and protocols
|
|
325
|
+
|
|
326
|
+
## NEXT STEP:
|
|
327
|
+
|
|
328
|
+
After user selects 'C' and content is saved to document, load `./step-04-decisions.md` to begin making specific architectural decisions.
|
|
329
|
+
|
|
330
|
+
Remember: Do NOT proceed to step-04 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
|
331
|
+
```
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
# Step 4: Core Architectural Decisions
|
|
2
|
+
|
|
3
|
+
## MANDATORY EXECUTION RULES (READ FIRST)
|
|
4
|
+
|
|
5
|
+
- 🛑 NEVER generate content without user input
|
|
6
|
+
|
|
7
|
+
- 📖 CRITICAL: ALWAYS read the complete step file before taking any action - partial understanding leads to incomplete decisions
|
|
8
|
+
- 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read and understood before proceeding
|
|
9
|
+
- ✅ ALWAYS treat this as collaborative discovery between architectural peers
|
|
10
|
+
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
11
|
+
- 💬 FOCUS on making critical architectural decisions collaboratively
|
|
12
|
+
- 🌐 ALWAYS search the web to verify current technology versions
|
|
13
|
+
- ⚠️ ABSOLUTELY NO TIME ESTIMATES - AI development speed has fundamentally changed
|
|
14
|
+
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
|
15
|
+
|
|
16
|
+
## EXECUTION PROTOCOLS
|
|
17
|
+
|
|
18
|
+
- 🎯 Show your analysis before taking any action
|
|
19
|
+
- 🌐 Search the web to verify technology versions and options
|
|
20
|
+
- ⚠️ Present A/P/C menu after each major decision category
|
|
21
|
+
- 💾 ONLY save when user chooses C (Continue)
|
|
22
|
+
- 📖 Update frontmatter `stepsCompleted: [1, 2, 3, 4]` before loading next step
|
|
23
|
+
- 🚫 FORBIDDEN to load next step until C is selected
|
|
24
|
+
|
|
25
|
+
## COLLABORATION MENUS (A/P/C)
|
|
26
|
+
|
|
27
|
+
This step will generate content and present choices for each decision category:
|
|
28
|
+
|
|
29
|
+
- **A (Advanced Elicitation)**: Use discovery protocols to explore innovative approaches to specific decisions
|
|
30
|
+
- **P (Party Mode)**: Bring multiple perspectives to evaluate decision trade-offs
|
|
31
|
+
- **C (Continue)**: Save the current decisions and proceed to next decision category
|
|
32
|
+
|
|
33
|
+
## PROTOCOL INTEGRATION
|
|
34
|
+
|
|
35
|
+
- When 'A' selected: Execute {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml
|
|
36
|
+
- When 'P' selected: Execute {project-root}/_bmad/core/workflows/party-mode/workflow.md
|
|
37
|
+
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
38
|
+
- User accepts/rejects protocol changes before proceeding
|
|
39
|
+
|
|
40
|
+
## CONTEXT BOUNDARIES
|
|
41
|
+
|
|
42
|
+
- Project context from step 2 is available
|
|
43
|
+
- Starter template choice from step 3 is available
|
|
44
|
+
- Project context file may contain technical preferences and rules
|
|
45
|
+
- Technical preferences discovered in step 3 are available
|
|
46
|
+
- Focus on decisions not already made by starter template or existing preferences
|
|
47
|
+
- Collaborative decision making, not recommendations
|
|
48
|
+
|
|
49
|
+
## YOUR TASK
|
|
50
|
+
|
|
51
|
+
Facilitate collaborative architectural decision making, leveraging existing technical preferences and starter template decisions, focusing on remaining choices critical to the project's success.
|
|
52
|
+
|
|
53
|
+
## DECISION MAKING SEQUENCE
|
|
54
|
+
|
|
55
|
+
### 1. Load Decision Framework & Check Existing Preferences
|
|
56
|
+
|
|
57
|
+
**Review Technical Preferences from Step 3:**
|
|
58
|
+
"Based on our technical preferences discussion in step 3, let's build on those foundations:
|
|
59
|
+
|
|
60
|
+
**Your Technical Preferences:**
|
|
61
|
+
{{user_technical_preferences_from_step_3}}
|
|
62
|
+
|
|
63
|
+
**Starter Template Decisions:**
|
|
64
|
+
{{starter_template_decisions}}
|
|
65
|
+
|
|
66
|
+
**Project Context Technical Rules:**
|
|
67
|
+
{{project_context_technical_rules}}"
|
|
68
|
+
|
|
69
|
+
**Identify Remaining Decisions:**
|
|
70
|
+
Based on technical preferences, starter template choice, and project context, identify remaining critical decisions:
|
|
71
|
+
|
|
72
|
+
**Already Decided (Don't re-decide these):**
|
|
73
|
+
|
|
74
|
+
- {{starter_template_decisions}}
|
|
75
|
+
- {{user_technology_preferences}}
|
|
76
|
+
- {{project_context_technical_rules}}
|
|
77
|
+
|
|
78
|
+
**Critical Decisions:** Must be decided before implementation can proceed
|
|
79
|
+
**Important Decisions:** Shape the architecture significantly
|
|
80
|
+
**Nice-to-Have:** Can be deferred if needed
|
|
81
|
+
|
|
82
|
+
### 2. Decision Categories by Priority
|
|
83
|
+
|
|
84
|
+
#### Category 1: Data Architecture
|
|
85
|
+
|
|
86
|
+
- Database choice (if not determined by starter)
|
|
87
|
+
- Data modeling approach
|
|
88
|
+
- Data validation strategy
|
|
89
|
+
- Migration approach
|
|
90
|
+
- Caching strategy
|
|
91
|
+
|
|
92
|
+
#### Category 2: Authentication & Security
|
|
93
|
+
|
|
94
|
+
- Authentication method
|
|
95
|
+
- Authorization patterns
|
|
96
|
+
- Security middleware
|
|
97
|
+
- Data encryption approach
|
|
98
|
+
- API security strategy
|
|
99
|
+
|
|
100
|
+
#### Category 3: API & Communication
|
|
101
|
+
|
|
102
|
+
- API design patterns (REST, GraphQL, etc.)
|
|
103
|
+
- API documentation approach
|
|
104
|
+
- Error handling standards
|
|
105
|
+
- Rate limiting strategy
|
|
106
|
+
- Communication between services
|
|
107
|
+
|
|
108
|
+
#### Category 4: Frontend Architecture (if applicable)
|
|
109
|
+
|
|
110
|
+
- State management approach
|
|
111
|
+
- Component architecture
|
|
112
|
+
- Routing strategy
|
|
113
|
+
- Performance optimization
|
|
114
|
+
- Bundle optimization
|
|
115
|
+
|
|
116
|
+
#### Category 5: Infrastructure & Deployment
|
|
117
|
+
|
|
118
|
+
- Hosting strategy
|
|
119
|
+
- CI/CD pipeline approach
|
|
120
|
+
- Environment configuration
|
|
121
|
+
- Monitoring and logging
|
|
122
|
+
- Scaling strategy
|
|
123
|
+
|
|
124
|
+
### 3. Facilitate Each Decision Category
|
|
125
|
+
|
|
126
|
+
For each category, facilitate collaborative decision making:
|
|
127
|
+
|
|
128
|
+
**Present the Decision:**
|
|
129
|
+
Based on user skill level and project context:
|
|
130
|
+
|
|
131
|
+
**Expert Mode:**
|
|
132
|
+
"{{Decision_Category}}: {{Specific_Decision}}
|
|
133
|
+
|
|
134
|
+
Options: {{concise_option_list_with_tradeoffs}}
|
|
135
|
+
|
|
136
|
+
What's your preference for this decision?"
|
|
137
|
+
|
|
138
|
+
**Intermediate Mode:**
|
|
139
|
+
"Next decision: {{Human_Friendly_Category}}
|
|
140
|
+
|
|
141
|
+
We need to choose {{Specific_Decision}}.
|
|
142
|
+
|
|
143
|
+
Common options:
|
|
144
|
+
{{option_list_with_brief_explanations}}
|
|
145
|
+
|
|
146
|
+
For your project, I'd lean toward {{recommendation}} because {{reason}}. What are your thoughts?"
|
|
147
|
+
|
|
148
|
+
**Beginner Mode:**
|
|
149
|
+
"Let's talk about {{Human_Friendly_Category}}.
|
|
150
|
+
|
|
151
|
+
{{Educational_Context_About_Why_This_Matters}}
|
|
152
|
+
|
|
153
|
+
Think of it like {{real_world_analogy}}.
|
|
154
|
+
|
|
155
|
+
Your main options:
|
|
156
|
+
{{friendly_options_with_pros_cons}}
|
|
157
|
+
|
|
158
|
+
My suggestion: {{recommendation}}
|
|
159
|
+
This is good for you because {{beginner_friendly_reason}}.
|
|
160
|
+
|
|
161
|
+
What feels right to you?"
|
|
162
|
+
|
|
163
|
+
**Verify Technology Versions:**
|
|
164
|
+
If decision involves specific technology:
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
Search the web: "{{technology}} latest stable version"
|
|
168
|
+
Search the web: "{{technology}} current LTS version"
|
|
169
|
+
Search the web: "{{technology}} production readiness"
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
**Get User Input:**
|
|
173
|
+
"What's your preference? (or 'explain more' for details)"
|
|
174
|
+
|
|
175
|
+
**Handle User Response:**
|
|
176
|
+
|
|
177
|
+
- If user wants more info: Provide deeper explanation
|
|
178
|
+
- If user has preference: Discuss implications and record decision
|
|
179
|
+
- If user wants alternatives: Explore other options
|
|
180
|
+
|
|
181
|
+
**Record the Decision:**
|
|
182
|
+
|
|
183
|
+
- Category: {{category}}
|
|
184
|
+
- Decision: {{user_choice}}
|
|
185
|
+
- Version: {{verified_version_if_applicable}}
|
|
186
|
+
- Rationale: {{user_reasoning_or_default}}
|
|
187
|
+
- Affects: {{components_or_epics}}
|
|
188
|
+
- Provided by Starter: {{yes_if_from_starter}}
|
|
189
|
+
|
|
190
|
+
### 4. Check for Cascading Implications
|
|
191
|
+
|
|
192
|
+
After each major decision, identify related decisions:
|
|
193
|
+
|
|
194
|
+
"This choice means we'll also need to decide:
|
|
195
|
+
|
|
196
|
+
- {{related_decision_1}}
|
|
197
|
+
- {{related_decision_2}}"
|
|
198
|
+
|
|
199
|
+
### 5. Generate Decisions Content
|
|
200
|
+
|
|
201
|
+
After facilitating all decision categories, prepare the content to append:
|
|
202
|
+
|
|
203
|
+
#### Content Structure
|
|
204
|
+
|
|
205
|
+
```markdown
|
|
206
|
+
## Core Architectural Decisions
|
|
207
|
+
|
|
208
|
+
### Decision Priority Analysis
|
|
209
|
+
|
|
210
|
+
**Critical Decisions (Block Implementation):**
|
|
211
|
+
{{critical_decisions_made}}
|
|
212
|
+
|
|
213
|
+
**Important Decisions (Shape Architecture):**
|
|
214
|
+
{{important_decisions_made}}
|
|
215
|
+
|
|
216
|
+
**Deferred Decisions (Post-MVP):**
|
|
217
|
+
{{decisions_deferred_with_rationale}}
|
|
218
|
+
|
|
219
|
+
### Data Architecture
|
|
220
|
+
|
|
221
|
+
{{data_related_decisions_with_versions_and_rationale}}
|
|
222
|
+
|
|
223
|
+
### Authentication & Security
|
|
224
|
+
|
|
225
|
+
{{security_related_decisions_with_versions_and_rationale}}
|
|
226
|
+
|
|
227
|
+
### API & Communication Patterns
|
|
228
|
+
|
|
229
|
+
{{api_related_decisions_with_versions_and_rationale}}
|
|
230
|
+
|
|
231
|
+
### Frontend Architecture
|
|
232
|
+
|
|
233
|
+
{{frontend_related_decisions_with_versions_and_rationale}}
|
|
234
|
+
|
|
235
|
+
### Infrastructure & Deployment
|
|
236
|
+
|
|
237
|
+
{{infrastructure_related_decisions_with_versions_and_rationale}}
|
|
238
|
+
|
|
239
|
+
### Decision Impact Analysis
|
|
240
|
+
|
|
241
|
+
**Implementation Sequence:**
|
|
242
|
+
{{ordered_list_of_decisions_for_implementation}}
|
|
243
|
+
|
|
244
|
+
**Cross-Component Dependencies:**
|
|
245
|
+
{{how_decisions_affect_each_other}}
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### 6. Present Content and Menu
|
|
249
|
+
|
|
250
|
+
Show the generated decisions content and present choices:
|
|
251
|
+
|
|
252
|
+
"I've documented all the core architectural decisions we've made together.
|
|
253
|
+
|
|
254
|
+
**Here's what I'll add to the document:**
|
|
255
|
+
|
|
256
|
+
[Show the complete markdown content from step 5]
|
|
257
|
+
|
|
258
|
+
**What would you like to do?**
|
|
259
|
+
[A] Advanced Elicitation - Explore innovative approaches to any specific decisions
|
|
260
|
+
[P] Party Mode - Review decisions from multiple perspectives
|
|
261
|
+
[C] Continue - Save these decisions and move to implementation patterns"
|
|
262
|
+
|
|
263
|
+
### 7. Handle Menu Selection
|
|
264
|
+
|
|
265
|
+
#### If 'A' (Advanced Elicitation)
|
|
266
|
+
|
|
267
|
+
- Execute {project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml with specific decision categories
|
|
268
|
+
- Process enhanced insights about particular decisions
|
|
269
|
+
- Ask user: "Accept these enhancements to the architectural decisions? (y/n)"
|
|
270
|
+
- If yes: Update content, then return to A/P/C menu
|
|
271
|
+
- If no: Keep original content, then return to A/P/C menu
|
|
272
|
+
|
|
273
|
+
#### If 'P' (Party Mode)
|
|
274
|
+
|
|
275
|
+
- Execute {project-root}/_bmad/core/workflows/party-mode/workflow.md with architectural decisions context
|
|
276
|
+
- Process collaborative insights about decision trade-offs
|
|
277
|
+
- Ask user: "Accept these changes to the architectural decisions? (y/n)"
|
|
278
|
+
- If yes: Update content, then return to A/P/C menu
|
|
279
|
+
- If no: Keep original content, then return to A/P/C menu
|
|
280
|
+
|
|
281
|
+
#### If 'C' (Continue)
|
|
282
|
+
|
|
283
|
+
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
284
|
+
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
|
285
|
+
- Load `./step-05-patterns.md`
|
|
286
|
+
|
|
287
|
+
## APPEND TO DOCUMENT
|
|
288
|
+
|
|
289
|
+
When user selects 'C', append the content directly to the document using the structure from step 5.
|
|
290
|
+
|
|
291
|
+
## SUCCESS METRICS
|
|
292
|
+
|
|
293
|
+
✅ All critical architectural decisions made collaboratively
|
|
294
|
+
✅ Technology versions verified using web search
|
|
295
|
+
✅ Decision rationale clearly documented
|
|
296
|
+
✅ Cascading implications identified and addressed
|
|
297
|
+
✅ User provided appropriate level of explanation for skill level
|
|
298
|
+
✅ A/P/C menu presented and handled correctly for each category
|
|
299
|
+
✅ Content properly appended to document when C selected
|
|
300
|
+
|
|
301
|
+
## FAILURE MODES
|
|
302
|
+
|
|
303
|
+
❌ Making recommendations instead of facilitating decisions
|
|
304
|
+
❌ Not verifying technology versions with web search
|
|
305
|
+
❌ Missing cascading implications between decisions
|
|
306
|
+
❌ Not adapting explanations to user skill level
|
|
307
|
+
❌ Forgetting to document decisions made by starter template
|
|
308
|
+
❌ Not presenting A/P/C menu after content generation
|
|
309
|
+
|
|
310
|
+
❌ **CRITICAL**: Reading only partial step file - leads to incomplete understanding and poor decisions
|
|
311
|
+
❌ **CRITICAL**: Proceeding with 'C' without fully reading and understanding the next step file
|
|
312
|
+
❌ **CRITICAL**: Making decisions without complete understanding of step requirements and protocols
|
|
313
|
+
|
|
314
|
+
## NEXT STEP
|
|
315
|
+
|
|
316
|
+
After user selects 'C' and content is saved to document, load `./step-05-patterns.md` to define implementation patterns that ensure consistency across AI agents.
|
|
317
|
+
|
|
318
|
+
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|