bmad-method 6.0.0-alpha.5 → 6.0.0-alpha.7
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/.claude/settings.local.json +12 -6
- package/.github/workflows/{lint.yaml → quality.yaml} +19 -2
- package/.husky/pre-commit +4 -0
- package/CONTRIBUTING.md +1 -13
- package/README.md +59 -1
- package/bmad/_cfg/agent-manifest.csv +1 -13
- package/bmad/_cfg/files-manifest.csv +10 -256
- package/bmad/_cfg/ides/claude-code.yaml +2 -2
- package/bmad/_cfg/manifest.yaml +4 -5
- package/bmad/_cfg/task-manifest.csv +4 -1
- package/bmad/_cfg/tool-manifest.csv +1 -0
- package/bmad/_cfg/workflow-manifest.csv +2 -35
- package/bmad/bmb/config.yaml +2 -2
- package/bmad/bmb/workflows/audit-workflow/instructions.md +1 -1
- package/bmad/bmb/workflows/create-agent/instructions.md +25 -9
- package/bmad/bmb/workflows/create-module/module-structure.md +34 -0
- package/bmad/core/config.yaml +2 -2
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +61 -0
- package/package.json +5 -3
- package/src/core/tasks/adv-elicit.xml +1 -1
- package/src/modules/bmb/workflows/create-agent/instructions.md +25 -9
- package/src/modules/bmb/workflows/create-module/module-structure.md +34 -0
- package/src/modules/bmgd/README.md +208 -0
- package/src/modules/bmgd/_module-installer/install-config.yaml +66 -0
- package/src/modules/{bmm → bmgd}/agents/game-architect.agent.yaml +5 -12
- package/src/modules/{bmm → bmgd}/agents/game-designer.agent.yaml +10 -22
- package/src/modules/{bmm → bmgd}/agents/game-dev.agent.yaml +9 -10
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +70 -0
- package/{bmad/bmm → src/modules/bmgd}/teams/team-gamedev.yaml +3 -1
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/workflow.yaml +7 -7
- package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/workflow.yaml +9 -9
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +81 -0
- package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/narrative/workflow.yaml +6 -6
- package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/instructions.md +7 -18
- package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/workflow.yaml +16 -16
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/retrospective/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-done/workflow.yaml +3 -1
- package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-ready/workflow.yaml +3 -1
- package/src/modules/bmm/_module-installer/install-config.yaml +5 -0
- package/src/modules/bmm/docs/README.md +18 -18
- package/src/modules/bmm/docs/agents-guide.md +1 -2
- package/src/modules/bmm/docs/brownfield-guide.md +10 -15
- package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
- package/src/modules/bmm/docs/faq.md +10 -12
- package/src/modules/bmm/docs/glossary.md +8 -9
- package/src/modules/bmm/docs/quick-spec-flow.md +7 -7
- package/src/modules/bmm/docs/quick-start.md +9 -9
- package/src/modules/bmm/docs/scale-adaptive-system.md +6 -6
- package/src/modules/bmm/docs/test-architecture.md +394 -0
- package/src/modules/bmm/docs/workflows-analysis.md +229 -529
- package/src/modules/bmm/docs/workflows-implementation.md +196 -1670
- package/src/modules/bmm/docs/workflows-planning.md +364 -849
- package/src/modules/bmm/docs/workflows-solutioning.md +268 -493
- package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +65 -32
- package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +4 -0
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +1 -1
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +34 -5
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +1 -1
- package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +8 -0
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +6 -0
- package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +47 -0
- package/src/modules/bmm/workflows/techdoc/documentation-standards.md +24 -1
- package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +50 -0
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +18 -11
- package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +18 -11
- package/src/modules/bmm/workflows/workflow-status/paths/game-design.yaml +42 -65
- package/test/test-installation-components.js +214 -0
- package/tools/cli/bundlers/web-bundler.js +127 -8
- package/tools/cli/installers/lib/core/config-collector.js +39 -11
- package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
- package/tools/cli/installers/lib/core/installer.js +20 -9
- package/tools/cli/installers/lib/core/manifest-generator.js +3 -1
- package/tools/cli/installers/lib/core/manifest.js +6 -2
- package/tools/cli/installers/lib/ide/auggie.js +9 -20
- package/tools/cli/installers/lib/ide/claude-code.js +33 -3
- package/tools/cli/installers/lib/ide/cursor.js +17 -0
- package/tools/cli/installers/lib/modules/manager.js +134 -0
- package/tools/cli/lib/config.js +3 -1
- package/tools/cli/lib/ui.js +5 -5
- package/tools/cli/lib/yaml-format.js +2 -1
- package/tools/cli/lib/yaml-xml-builder.js +9 -1
- package/tools/schema/agent.js +3 -0
- package/v6-open-items.md +3 -9
- package/web-bundles/bmm/agents/analyst.xml +5028 -0
- package/web-bundles/bmm/agents/architect.xml +2047 -0
- package/web-bundles/bmm/agents/dev.xml +68 -0
- package/web-bundles/bmm/agents/pm.xml +3808 -0
- package/web-bundles/bmm/agents/sm.xml +77 -0
- package/web-bundles/bmm/agents/tea.xml +66 -0
- package/web-bundles/bmm/agents/tech-writer.xml +84 -0
- package/web-bundles/bmm/agents/ux-designer.xml +2018 -0
- package/web-bundles/bmm/teams/team-fullstack.xml +12039 -0
- package/.claude/commands/bmad/bmb/workflows/README.md +0 -67
- package/.claude/commands/bmad/bmm/agents/analyst.md +0 -67
- package/.claude/commands/bmad/bmm/agents/architect.md +0 -72
- package/.claude/commands/bmad/bmm/agents/dev.md +0 -69
- package/.claude/commands/bmad/bmm/agents/paige.md +0 -82
- package/.claude/commands/bmad/bmm/agents/pm.md +0 -76
- package/.claude/commands/bmad/bmm/agents/sm.md +0 -85
- package/.claude/commands/bmad/bmm/agents/tea.md +0 -72
- package/.claude/commands/bmad/bmm/agents/tech-writer.md +0 -82
- package/.claude/commands/bmad/bmm/agents/ux-designer.md +0 -71
- package/.claude/commands/bmad/bmm/workflows/README.md +0 -132
- package/.claude/commands/bmad/bmm/workflows/architecture.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/brainstorm-project.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/code-review.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/correct-course.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-epics-and-stories.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-story.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/create-ux-design.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/dev-story.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/document-project.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/epic-tech-context.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/narrative.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/prd.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/product-brief.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/research.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/retrospective.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/solutioning-gate-check.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/sprint-planning.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-context.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-done.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/story-ready.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/tech-spec-sm.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/tech-spec.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/workflow-init.md +0 -15
- package/.claude/commands/bmad/bmm/workflows/workflow-status.md +0 -15
- package/.claude/commands/bmad/cis/agents/README.md +0 -104
- package/.claude/commands/bmad/cis/agents/brainstorming-coach.md +0 -62
- package/.claude/commands/bmad/cis/agents/creative-problem-solver.md +0 -62
- package/.claude/commands/bmad/cis/agents/design-thinking-coach.md +0 -62
- package/.claude/commands/bmad/cis/agents/innovation-strategist.md +0 -62
- package/.claude/commands/bmad/cis/agents/storyteller.md +0 -59
- package/.claude/commands/bmad/cis/workflows/README.md +0 -37
- package/.claude/commands/bmad/cis/workflows/design-thinking.md +0 -15
- package/.claude/commands/bmad/cis/workflows/innovation-strategy.md +0 -15
- package/.claude/commands/bmad/cis/workflows/problem-solving.md +0 -15
- package/.claude/commands/bmad/cis/workflows/storytelling.md +0 -15
- package/.claude/commands/bmad/core/workflows/README.md +0 -37
- package/bmad/_cfg/agents/bmm-analyst.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-architect.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-dev.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-paige.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-pm.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-sm.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-tea.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-tech-writer.customize.yaml +0 -42
- package/bmad/_cfg/agents/bmm-ux-designer.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-brainstorming-coach.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-creative-problem-solver.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-design-thinking-coach.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-innovation-strategist.customize.yaml +0 -42
- package/bmad/_cfg/agents/cis-storyteller.customize.yaml +0 -42
- package/bmad/bmb/agents/bmad-builder.md.bak +0 -70
- package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -23
- package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -42
- package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
- package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -40
- package/bmad/bmb/workflows/edit-agent/workflow.yaml.bak +0 -33
- package/bmad/bmb/workflows/edit-module/workflow.yaml.bak +0 -34
- package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -27
- package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -29
- package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -32
- package/bmad/bmm/README.md +0 -128
- package/bmad/bmm/README.md.bak +0 -169
- package/bmad/bmm/agents/analyst.md +0 -67
- package/bmad/bmm/agents/analyst.md.bak +0 -67
- package/bmad/bmm/agents/architect.md +0 -72
- package/bmad/bmm/agents/architect.md.bak +0 -73
- package/bmad/bmm/agents/dev.md +0 -69
- package/bmad/bmm/agents/dev.md.bak +0 -69
- package/bmad/bmm/agents/paige.md.bak +0 -82
- package/bmad/bmm/agents/pm.md +0 -76
- package/bmad/bmm/agents/pm.md.bak +0 -76
- package/bmad/bmm/agents/sm.md +0 -85
- package/bmad/bmm/agents/sm.md.bak +0 -85
- package/bmad/bmm/agents/tea.md +0 -72
- package/bmad/bmm/agents/tea.md.bak +0 -72
- package/bmad/bmm/agents/tech-writer.md +0 -82
- package/bmad/bmm/agents/ux-designer.md +0 -71
- package/bmad/bmm/agents/ux-designer.md.bak +0 -71
- package/bmad/bmm/config.yaml +0 -17
- package/bmad/bmm/docs/README.md +0 -235
- package/bmad/bmm/docs/agents-guide.md +0 -1057
- package/bmad/bmm/docs/brownfield-guide.md +0 -759
- package/bmad/bmm/docs/enterprise-agentic-development.md +0 -680
- package/bmad/bmm/docs/faq.md +0 -589
- package/bmad/bmm/docs/glossary.md +0 -321
- package/bmad/bmm/docs/party-mode.md +0 -224
- package/bmad/bmm/docs/quick-spec-flow.md +0 -652
- package/bmad/bmm/docs/quick-start.md +0 -366
- package/bmad/bmm/docs/scale-adaptive-system.md +0 -599
- package/bmad/bmm/docs/troubleshooting.md +0 -680
- package/bmad/bmm/docs/workflow-architecture-reference.md +0 -371
- package/bmad/bmm/docs/workflow-document-project-reference.md +0 -487
- package/bmad/bmm/docs/workflows-analysis.md +0 -670
- package/bmad/bmm/docs/workflows-implementation.md +0 -1758
- package/bmad/bmm/docs/workflows-planning.md +0 -1086
- package/bmad/bmm/docs/workflows-solutioning.md +0 -726
- package/bmad/bmm/tasks/daily-standup.xml +0 -85
- package/bmad/bmm/teams/team-fullstack.yaml +0 -11
- package/bmad/bmm/testarch/knowledge/ci-burn-in.md +0 -675
- package/bmad/bmm/testarch/knowledge/component-tdd.md +0 -486
- package/bmad/bmm/testarch/knowledge/contract-testing.md +0 -957
- package/bmad/bmm/testarch/knowledge/data-factories.md +0 -500
- package/bmad/bmm/testarch/knowledge/email-auth.md +0 -721
- package/bmad/bmm/testarch/knowledge/error-handling.md +0 -725
- package/bmad/bmm/testarch/knowledge/feature-flags.md +0 -750
- package/bmad/bmm/testarch/knowledge/fixture-architecture.md +0 -401
- package/bmad/bmm/testarch/knowledge/network-first.md +0 -486
- package/bmad/bmm/testarch/knowledge/nfr-criteria.md +0 -670
- package/bmad/bmm/testarch/knowledge/playwright-config.md +0 -730
- package/bmad/bmm/testarch/knowledge/probability-impact.md +0 -601
- package/bmad/bmm/testarch/knowledge/risk-governance.md +0 -615
- package/bmad/bmm/testarch/knowledge/selective-testing.md +0 -732
- package/bmad/bmm/testarch/knowledge/selector-resilience.md +0 -527
- package/bmad/bmm/testarch/knowledge/test-healing-patterns.md +0 -644
- package/bmad/bmm/testarch/knowledge/test-levels-framework.md +0 -473
- package/bmad/bmm/testarch/knowledge/test-priorities-matrix.md +0 -373
- package/bmad/bmm/testarch/knowledge/test-quality.md +0 -664
- package/bmad/bmm/testarch/knowledge/timing-debugging.md +0 -372
- package/bmad/bmm/testarch/knowledge/visual-debugging.md +0 -524
- package/bmad/bmm/testarch/tea-index.csv +0 -22
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -110
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
- package/bmad/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -26
- package/bmad/bmm/workflows/1-analysis/domain-research/instructions.md +0 -423
- package/bmad/bmm/workflows/1-analysis/domain-research/template.md +0 -180
- package/bmad/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -36
- package/bmad/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
- package/bmad/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
- package/bmad/bmm/workflows/1-analysis/product-brief/template.md +0 -181
- package/bmad/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -45
- package/bmad/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
- package/bmad/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
- package/bmad/bmm/workflows/1-analysis/research/checklist.md +0 -299
- package/bmad/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
- package/bmad/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -439
- package/bmad/bmm/workflows/1-analysis/research/instructions-market.md +0 -679
- package/bmad/bmm/workflows/1-analysis/research/instructions-router.md +0 -133
- package/bmad/bmm/workflows/1-analysis/research/instructions-technical.md +0 -538
- package/bmad/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
- package/bmad/bmm/workflows/1-analysis/research/template-market.md +0 -347
- package/bmad/bmm/workflows/1-analysis/research/template-technical.md +0 -245
- package/bmad/bmm/workflows/1-analysis/research/workflow.yaml +0 -44
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1319
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +0 -145
- package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -64
- package/bmad/bmm/workflows/2-plan-workflows/narrative/workflow.yaml +0 -29
- package/bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -349
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +0 -63
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +0 -395
- package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +0 -33
- package/bmad/bmm/workflows/2-plan-workflows/prd/domain-complexity.csv +0 -13
- package/bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -423
- package/bmad/bmm/workflows/2-plan-workflows/prd/prd-template.md +0 -237
- package/bmad/bmm/workflows/2-plan-workflows/prd/project-types.csv +0 -11
- package/bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -46
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -214
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -58
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level0-story.md +0 -200
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions-level1-stories.md +0 -451
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -1133
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -87
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -60
- package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml.bak +0 -60
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/checklist.md +0 -175
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +0 -322
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/template.md +0 -146
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/validation-criteria.yaml +0 -189
- package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +0 -64
- package/bmad/bmm/workflows/document-project/checklist.md +0 -245
- package/bmad/bmm/workflows/document-project/documentation-requirements.csv +0 -12
- package/bmad/bmm/workflows/document-project/instructions.md +0 -222
- package/bmad/bmm/workflows/document-project/templates/deep-dive-template.md +0 -345
- package/bmad/bmm/workflows/document-project/templates/index-template.md +0 -169
- package/bmad/bmm/workflows/document-project/templates/project-overview-template.md +0 -103
- package/bmad/bmm/workflows/document-project/templates/project-scan-report-schema.json +0 -160
- package/bmad/bmm/workflows/document-project/templates/source-tree-template.md +0 -135
- package/bmad/bmm/workflows/document-project/workflow.yaml +0 -34
- package/bmad/bmm/workflows/document-project/workflows/deep-dive-instructions.md +0 -298
- package/bmad/bmm/workflows/document-project/workflows/deep-dive.yaml +0 -31
- package/bmad/bmm/workflows/document-project/workflows/full-scan-instructions.md +0 -1106
- package/bmad/bmm/workflows/document-project/workflows/full-scan.yaml +0 -31
- package/bmad/bmm/workflows/techdoc/documentation-standards.md +0 -239
- package/bmad/bmm/workflows/techdoc/documentation-standards.md.bak +0 -238
- package/bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +0 -363
- package/bmad/bmm/workflows/testarch/atdd/checklist.md +0 -373
- package/bmad/bmm/workflows/testarch/atdd/instructions.md +0 -785
- package/bmad/bmm/workflows/testarch/atdd/workflow.yaml +0 -52
- package/bmad/bmm/workflows/testarch/automate/checklist.md +0 -580
- package/bmad/bmm/workflows/testarch/automate/instructions.md +0 -1303
- package/bmad/bmm/workflows/testarch/automate/workflow.yaml +0 -61
- package/bmad/bmm/workflows/testarch/ci/checklist.md +0 -246
- package/bmad/bmm/workflows/testarch/ci/github-actions-template.yaml +0 -165
- package/bmad/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +0 -128
- package/bmad/bmm/workflows/testarch/ci/instructions.md +0 -517
- package/bmad/bmm/workflows/testarch/ci/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/framework/checklist.md +0 -321
- package/bmad/bmm/workflows/testarch/framework/instructions.md +0 -455
- package/bmad/bmm/workflows/testarch/framework/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/nfr-assess/checklist.md +0 -405
- package/bmad/bmm/workflows/testarch/nfr-assess/instructions.md +0 -722
- package/bmad/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +0 -443
- package/bmad/bmm/workflows/testarch/nfr-assess/workflow.yaml +0 -56
- package/bmad/bmm/workflows/testarch/test-design/checklist.md +0 -234
- package/bmad/bmm/workflows/testarch/test-design/instructions.md +0 -621
- package/bmad/bmm/workflows/testarch/test-design/test-design-template.md +0 -285
- package/bmad/bmm/workflows/testarch/test-design/workflow.yaml +0 -52
- package/bmad/bmm/workflows/testarch/test-review/checklist.md +0 -470
- package/bmad/bmm/workflows/testarch/test-review/instructions.md +0 -608
- package/bmad/bmm/workflows/testarch/test-review/test-review-template.md +0 -388
- package/bmad/bmm/workflows/testarch/test-review/workflow.yaml +0 -53
- package/bmad/bmm/workflows/testarch/trace/checklist.md +0 -654
- package/bmad/bmm/workflows/testarch/trace/instructions.md +0 -1045
- package/bmad/bmm/workflows/testarch/trace/trace-template.md +0 -673
- package/bmad/bmm/workflows/testarch/trace/workflow.yaml +0 -66
- package/bmad/bmm/workflows/workflow-status/init/instructions.md +0 -771
- package/bmad/bmm/workflows/workflow-status/init/workflow.yaml +0 -27
- package/bmad/bmm/workflows/workflow-status/init/workflow.yaml.bak +0 -27
- package/bmad/bmm/workflows/workflow-status/instructions.md +0 -386
- package/bmad/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +0 -120
- package/bmad/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +0 -108
- package/bmad/bmm/workflows/workflow-status/paths/game-design.yaml +0 -75
- package/bmad/bmm/workflows/workflow-status/paths/method-brownfield.yaml +0 -97
- package/bmad/bmm/workflows/workflow-status/paths/method-greenfield.yaml +0 -88
- package/bmad/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
- package/bmad/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
- package/bmad/bmm/workflows/workflow-status/project-levels.yaml +0 -59
- package/bmad/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +0 -49
- package/bmad/bmm/workflows/workflow-status/workflow-status-template.yaml +0 -31
- package/bmad/bmm/workflows/workflow-status/workflow.yaml +0 -28
- package/bmad/cis/README.md +0 -153
- package/bmad/cis/agents/README.md +0 -104
- package/bmad/cis/agents/brainstorming-coach.md +0 -62
- package/bmad/cis/agents/brainstorming-coach.md.bak +0 -62
- package/bmad/cis/agents/creative-problem-solver.md +0 -62
- package/bmad/cis/agents/creative-problem-solver.md.bak +0 -62
- package/bmad/cis/agents/design-thinking-coach.md +0 -62
- package/bmad/cis/agents/design-thinking-coach.md.bak +0 -62
- package/bmad/cis/agents/innovation-strategist.md +0 -62
- package/bmad/cis/agents/innovation-strategist.md.bak +0 -62
- package/bmad/cis/agents/storyteller.md +0 -59
- package/bmad/cis/agents/storyteller.md.bak +0 -59
- package/bmad/cis/config.yaml +0 -10
- package/bmad/cis/teams/creative-squad.yaml +0 -6
- package/bmad/cis/workflows/README.md +0 -139
- package/bmad/cis/workflows/design-thinking/README.md +0 -56
- package/bmad/cis/workflows/design-thinking/design-methods.csv +0 -31
- package/bmad/cis/workflows/design-thinking/instructions.md +0 -200
- package/bmad/cis/workflows/design-thinking/template.md +0 -111
- package/bmad/cis/workflows/design-thinking/workflow.yaml +0 -32
- package/bmad/cis/workflows/innovation-strategy/README.md +0 -56
- package/bmad/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
- package/bmad/cis/workflows/innovation-strategy/instructions.md +0 -274
- package/bmad/cis/workflows/innovation-strategy/template.md +0 -189
- package/bmad/cis/workflows/innovation-strategy/workflow.yaml +0 -32
- package/bmad/cis/workflows/problem-solving/README.md +0 -56
- package/bmad/cis/workflows/problem-solving/instructions.md +0 -250
- package/bmad/cis/workflows/problem-solving/solving-methods.csv +0 -31
- package/bmad/cis/workflows/problem-solving/template.md +0 -165
- package/bmad/cis/workflows/problem-solving/workflow.yaml +0 -32
- package/bmad/cis/workflows/storytelling/README.md +0 -58
- package/bmad/cis/workflows/storytelling/instructions.md +0 -291
- package/bmad/cis/workflows/storytelling/story-types.csv +0 -26
- package/bmad/cis/workflows/storytelling/template.md +0 -113
- package/bmad/cis/workflows/storytelling/workflow.yaml +0 -32
- package/bmad/core/agents/bmad-master.md.bak +0 -71
- package/src/modules/bmm/docs/troubleshooting.md +0 -680
- package/src/modules/bmm/teams/team-gamedev.yaml +0 -14
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/workflow.yaml +0 -81
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/checklist.md +0 -139
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +0 -608
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/narrative-template.md +0 -195
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-brain-methods.csv +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/game-context.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/brainstorm-game/instructions.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/instructions.md +0 -0
- /package/src/modules/{bmm/workflows/1-analysis → bmgd/workflows/1-preproduction}/game-brief/template.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/checklist.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/action-platformer.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/adventure.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/card-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/fighting.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/horror.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/idle-incremental.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/metroidvania.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/moba.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/party-game.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/puzzle.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/racing.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rhythm.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/roguelike.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/rpg.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sandbox.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/shooter.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/simulation.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/sports.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/strategy.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/survival.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/text-based.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/tower-defense.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/turn-based-tactics.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types/visual-novel.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/game-types.csv +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/gdd-template.md +0 -0
- /package/src/modules/{bmm/workflows/2-plan-workflows → bmgd/workflows/2-design}/gdd/instructions-gdd.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/checklist.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/instructions-narrative.md +0 -0
- /package/{bmad/bmm/workflows/2-plan-workflows → src/modules/bmgd/workflows/2-design}/narrative/narrative-template.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/architecture-patterns.yaml +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/architecture-template.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/checklist.md +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/decision-catalog.yaml +0 -0
- /package/{bmad/bmm/workflows/3-solutioning/architecture → src/modules/bmgd/workflows/3-technical/game-architecture}/pattern-categories.csv +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/backlog_template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/code-review/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/correct-course/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/create-story/template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/AUDIT-REPORT.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/dev-story/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/epic-tech-context/template.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/retrospective/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/sprint-planning/sprint-status-template.yaml +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/checklist.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/context-template.xml +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-context/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-done/instructions.md +0 -0
- /package/{bmad/bmm/workflows/4-implementation → src/modules/bmgd/workflows/4-production}/story-ready/instructions.md +0 -0
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'storyteller'
|
|
3
|
-
description: 'Master Storyteller'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
|
|
7
|
-
|
|
8
|
-
```xml
|
|
9
|
-
<agent id="bmad/cis/agents/storyteller.md" name="Sophia" title="Master Storyteller" icon="📖">
|
|
10
|
-
<activation critical="MANDATORY">
|
|
11
|
-
<step n="1">Load persona from this current agent file (already in context)</step>
|
|
12
|
-
<step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
|
|
13
|
-
- Load and read {project-root}/bmad/cis/config.yaml NOW
|
|
14
|
-
- Store ALL fields as session variables: {user_name}, {communication_language}, {output_folder}
|
|
15
|
-
- VERIFY: If config not loaded, STOP and report error to user
|
|
16
|
-
- DO NOT PROCEED to step 3 until config is successfully loaded and variables stored</step>
|
|
17
|
-
<step n="3">Remember: user's name is {user_name}</step>
|
|
18
|
-
|
|
19
|
-
<step n="4">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of
|
|
20
|
-
ALL menu items from menu section</step>
|
|
21
|
-
<step n="5">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or trigger text</step>
|
|
22
|
-
<step n="6">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
|
|
23
|
-
to clarify | No match → show "Not recognized"</step>
|
|
24
|
-
<step n="7">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
|
|
25
|
-
(workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
|
|
26
|
-
|
|
27
|
-
<menu-handlers>
|
|
28
|
-
<handlers>
|
|
29
|
-
<handler type="exec">
|
|
30
|
-
When menu item has: exec="path/to/file.md"
|
|
31
|
-
Actually LOAD and EXECUTE the file at that path - do not improvise
|
|
32
|
-
Read the complete file and follow all instructions within it
|
|
33
|
-
</handler>
|
|
34
|
-
|
|
35
|
-
</handlers>
|
|
36
|
-
</menu-handlers>
|
|
37
|
-
|
|
38
|
-
<rules>
|
|
39
|
-
- ALWAYS communicate in {communication_language} UNLESS contradicted by communication_style
|
|
40
|
-
- Stay in character until exit selected
|
|
41
|
-
- Menu triggers use asterisk (*) - NOT markdown, display exactly as shown
|
|
42
|
-
- Number all lists, use letters for sub-options
|
|
43
|
-
- Load files ONLY when executing menu items or a workflow or command requires it. EXCEPTION: Config file MUST be loaded at startup step 2
|
|
44
|
-
- CRITICAL: Written File Output in workflows will be +2sd your communication style and use professional {communication_language}.
|
|
45
|
-
</rules>
|
|
46
|
-
</activation>
|
|
47
|
-
<persona>
|
|
48
|
-
<role>Expert Storytelling Guide + Narrative Strategist</role>
|
|
49
|
-
<identity>Master storyteller with 50+ years crafting compelling narratives across multiple mediums. Expert in narrative frameworks, emotional psychology, and audience engagement. Background in journalism, screenwriting, and brand storytelling with deep understanding of universal human themes.</identity>
|
|
50
|
-
<communication_style>Speaks in a flowery whimsical manner, every communication is like being enraptured by the master story teller. Insightful and engaging with natural storytelling ability. Articulate and empathetic approach that connects emotionally with audiences. Strategic in narrative construction while maintaining creative flexibility and authenticity.</communication_style>
|
|
51
|
-
<principles>I believe that powerful narratives connect with audiences on deep emotional levels by leveraging timeless human truths that transcend context while being carefully tailored to platform and audience needs. My approach centers on finding and amplifying the authentic story within any subject, applying proven frameworks flexibly to showcase change and growth through vivid details that make the abstract concrete. I craft stories designed to stick in hearts and minds, building and resolving tension in ways that create lasting engagement and meaningful impact.</principles>
|
|
52
|
-
</persona>
|
|
53
|
-
<menu>
|
|
54
|
-
<item cmd="*help">Show numbered menu</item>
|
|
55
|
-
<item cmd="*story" exec="{project-root}/bmad/cis/workflows/storytelling/workflow.yaml">Craft compelling narrative using proven frameworks</item>
|
|
56
|
-
<item cmd="*exit">Exit with confirmation</item>
|
|
57
|
-
</menu>
|
|
58
|
-
</agent>
|
|
59
|
-
```
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'storyteller'
|
|
3
|
-
description: 'Master Storyteller'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
|
|
7
|
-
|
|
8
|
-
```xml
|
|
9
|
-
<agent id="bmad/cis/agents/storyteller.md" name="Sophia" title="Master Storyteller" icon="📖">
|
|
10
|
-
<activation critical="MANDATORY">
|
|
11
|
-
<step n="1">Load persona from this current agent file (already in context)</step>
|
|
12
|
-
<step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
|
|
13
|
-
- Load and read {project-root}/bmad/cis/config.yaml NOW
|
|
14
|
-
- Store ALL fields as session variables: {user_name}, {communication_language}, {output_folder}
|
|
15
|
-
- VERIFY: If config not loaded, STOP and report error to user
|
|
16
|
-
- DO NOT PROCEED to step 3 until config is successfully loaded and variables stored</step>
|
|
17
|
-
<step n="3">Remember: user's name is {user_name}</step>
|
|
18
|
-
|
|
19
|
-
<step n="4">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of
|
|
20
|
-
ALL menu items from menu section</step>
|
|
21
|
-
<step n="5">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or trigger text</step>
|
|
22
|
-
<step n="6">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
|
|
23
|
-
to clarify | No match → show "Not recognized"</step>
|
|
24
|
-
<step n="7">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
|
|
25
|
-
(workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
|
|
26
|
-
|
|
27
|
-
<menu-handlers>
|
|
28
|
-
<handlers>
|
|
29
|
-
<handler type="exec">
|
|
30
|
-
When menu item has: exec="path/to/file.md"
|
|
31
|
-
Actually LOAD and EXECUTE the file at that path - do not improvise
|
|
32
|
-
Read the complete file and follow all instructions within it
|
|
33
|
-
</handler>
|
|
34
|
-
|
|
35
|
-
</handlers>
|
|
36
|
-
</menu-handlers>
|
|
37
|
-
|
|
38
|
-
<rules>
|
|
39
|
-
- ALWAYS communicate in {communication_language} UNLESS contradicted by communication_style
|
|
40
|
-
- Stay in character until exit selected
|
|
41
|
-
- Menu triggers use asterisk (*) - NOT markdown, display exactly as shown
|
|
42
|
-
- Number all lists, use letters for sub-options
|
|
43
|
-
- Load files ONLY when executing menu items or a workflow or command requires it. EXCEPTION: Config file MUST be loaded at startup step 2
|
|
44
|
-
- CRITICAL: Written File Output in workflows will be +2sd your communication style and use professional {communication_language}.
|
|
45
|
-
</rules>
|
|
46
|
-
</activation>
|
|
47
|
-
<persona>
|
|
48
|
-
<role>Expert Storytelling Guide + Narrative Strategist</role>
|
|
49
|
-
<identity>Master storyteller with 50+ years crafting compelling narratives across multiple mediums. Expert in narrative frameworks, emotional psychology, and audience engagement. Background in journalism, screenwriting, and brand storytelling with deep understanding of universal human themes.</identity>
|
|
50
|
-
<communication_style>Speaks in a flowery whimsical manner, every communication is like being enraptured by the master story teller. Insightful and engaging with natural storytelling ability. Articulate and empathetic approach that connects emotionally with audiences. Strategic in narrative construction while maintaining creative flexibility and authenticity.</communication_style>
|
|
51
|
-
<principles>I believe that powerful narratives connect with audiences on deep emotional levels by leveraging timeless human truths that transcend context while being carefully tailored to platform and audience needs. My approach centers on finding and amplifying the authentic story within any subject, applying proven frameworks flexibly to showcase change and growth through vivid details that make the abstract concrete. I craft stories designed to stick in hearts and minds, building and resolving tension in ways that create lasting engagement and meaningful impact.</principles>
|
|
52
|
-
</persona>
|
|
53
|
-
<menu>
|
|
54
|
-
<item cmd="*help">Show numbered menu</item>
|
|
55
|
-
<item cmd="*story" exec="{project-root}/bmad/cis/workflows/storytelling/workflow.yaml">Craft compelling narrative using proven frameworks</item>
|
|
56
|
-
<item cmd="*exit">Exit with confirmation</item>
|
|
57
|
-
</menu>
|
|
58
|
-
</agent>
|
|
59
|
-
```
|
package/bmad/cis/config.yaml
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# CIS Module Configuration
|
|
2
|
-
# Generated by BMAD installer
|
|
3
|
-
# Version: 6.0.0-alpha.4
|
|
4
|
-
# Date: 2025-11-04T02:59:22.716Z
|
|
5
|
-
|
|
6
|
-
# Core Configuration Values
|
|
7
|
-
user_name: BMad
|
|
8
|
-
communication_language: English
|
|
9
|
-
document_output_language: English
|
|
10
|
-
output_folder: "{project-root}/docs"
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
# CIS Workflows
|
|
2
|
-
|
|
3
|
-
Five interactive workflows facilitating creative and strategic processes through curated technique libraries and structured facilitation.
|
|
4
|
-
|
|
5
|
-
## Table of Contents
|
|
6
|
-
|
|
7
|
-
- [Workflow Overview](#workflow-overview)
|
|
8
|
-
- [Common Features](#common-features)
|
|
9
|
-
- [Usage](#usage)
|
|
10
|
-
- [Configuration](#configuration)
|
|
11
|
-
|
|
12
|
-
## Workflow Overview
|
|
13
|
-
|
|
14
|
-
### [Brainstorming](./brainstorming)
|
|
15
|
-
|
|
16
|
-
**Purpose:** Interactive ideation using 36 techniques across 7 categories
|
|
17
|
-
|
|
18
|
-
**Approach:** Master facilitation with "Yes, and..." methodology
|
|
19
|
-
|
|
20
|
-
**Techniques:** Collaborative, structured, creative, deep, theatrical, wild, introspective
|
|
21
|
-
|
|
22
|
-
**Selection Modes:** User-selected, AI-recommended, random, or progressive
|
|
23
|
-
|
|
24
|
-
### [Design Thinking](./design-thinking)
|
|
25
|
-
|
|
26
|
-
**Purpose:** Human-centered design through five phases
|
|
27
|
-
|
|
28
|
-
**Process:** Empathize → Define → Ideate → Prototype → Test
|
|
29
|
-
|
|
30
|
-
**Focus:** Divergent thinking before convergent action
|
|
31
|
-
|
|
32
|
-
**Output:** User empathy insights and rapid prototypes
|
|
33
|
-
|
|
34
|
-
### [Innovation Strategy](./innovation-strategy)
|
|
35
|
-
|
|
36
|
-
**Purpose:** Identify disruption opportunities and business model innovation
|
|
37
|
-
|
|
38
|
-
**Frameworks:** Jobs-to-be-Done, Blue Ocean Strategy, Value Chain Analysis
|
|
39
|
-
|
|
40
|
-
**Focus:** Sustainable competitive advantage over features
|
|
41
|
-
|
|
42
|
-
**Output:** Strategic innovation roadmap
|
|
43
|
-
|
|
44
|
-
### [Problem Solving](./problem-solving)
|
|
45
|
-
|
|
46
|
-
**Purpose:** Systematic challenge resolution
|
|
47
|
-
|
|
48
|
-
**Methods:** TRIZ, Theory of Constraints, Systems Thinking, Root Cause Analysis
|
|
49
|
-
|
|
50
|
-
**Approach:** Detective-style puzzle solving
|
|
51
|
-
|
|
52
|
-
**Output:** Root cause identification and solution strategies
|
|
53
|
-
|
|
54
|
-
### [Storytelling](./storytelling)
|
|
55
|
-
|
|
56
|
-
**Purpose:** Craft compelling narratives
|
|
57
|
-
|
|
58
|
-
**Frameworks:** Hero's Journey, Three-Act Structure, Story Brand (25 total)
|
|
59
|
-
|
|
60
|
-
**Customization:** Platform and audience-specific adaptation
|
|
61
|
-
|
|
62
|
-
**Style:** Whimsical master storyteller facilitation
|
|
63
|
-
|
|
64
|
-
## Common Features
|
|
65
|
-
|
|
66
|
-
All workflows share:
|
|
67
|
-
|
|
68
|
-
- **Interactive Facilitation** - AI guides through questions, not generation
|
|
69
|
-
- **Technique Libraries** - CSV databases of proven methods
|
|
70
|
-
- **Context Integration** - Optional document input for domain relevance
|
|
71
|
-
- **Structured Output** - Comprehensive reports with insights and actions
|
|
72
|
-
- **Energy Monitoring** - Adaptive pacing based on engagement
|
|
73
|
-
|
|
74
|
-
## Usage
|
|
75
|
-
|
|
76
|
-
### Basic Invocation
|
|
77
|
-
|
|
78
|
-
```bash
|
|
79
|
-
workflow brainstorming
|
|
80
|
-
workflow design-thinking
|
|
81
|
-
workflow innovation-strategy
|
|
82
|
-
workflow problem-solving
|
|
83
|
-
workflow storytelling
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
### With Context
|
|
87
|
-
|
|
88
|
-
```bash
|
|
89
|
-
workflow [workflow-name] --data /path/to/context.md
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
### Via Agent
|
|
93
|
-
|
|
94
|
-
```bash
|
|
95
|
-
agent cis/brainstorming-coach
|
|
96
|
-
> *brainstorm
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
## Configuration
|
|
100
|
-
|
|
101
|
-
Edit `/bmad/cis/config.yaml`:
|
|
102
|
-
|
|
103
|
-
| Setting | Purpose | Default |
|
|
104
|
-
| ---------------------- | ----------------------- | ------------------ |
|
|
105
|
-
| output_folder | Result storage location | ./creative-outputs |
|
|
106
|
-
| user_name | Session participant | User |
|
|
107
|
-
| communication_language | Facilitation language | english |
|
|
108
|
-
|
|
109
|
-
## Workflow Structure
|
|
110
|
-
|
|
111
|
-
Each workflow contains:
|
|
112
|
-
|
|
113
|
-
```
|
|
114
|
-
workflow-name/
|
|
115
|
-
├── workflow.yaml # Configuration
|
|
116
|
-
├── instructions.md # Facilitation guide
|
|
117
|
-
├── techniques.csv # Method library
|
|
118
|
-
└── README.md # Documentation
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
## Best Practices
|
|
122
|
-
|
|
123
|
-
1. **Prepare context** - Provide background documents for better results
|
|
124
|
-
2. **Set clear objectives** - Define goals before starting
|
|
125
|
-
3. **Trust the process** - Let facilitation guide discovery
|
|
126
|
-
4. **Capture everything** - Document insights as they emerge
|
|
127
|
-
5. **Take breaks** - Pause when energy drops
|
|
128
|
-
|
|
129
|
-
## Integration
|
|
130
|
-
|
|
131
|
-
CIS workflows integrate with:
|
|
132
|
-
|
|
133
|
-
- **BMM** - Project brainstorming and ideation
|
|
134
|
-
- **BMB** - Creative module design
|
|
135
|
-
- **Custom Modules** - Shared creative resource
|
|
136
|
-
|
|
137
|
-
---
|
|
138
|
-
|
|
139
|
-
For detailed workflow instructions, see individual workflow directories.
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
last-redoc-date: 2025-09-28
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# Design Thinking Workflow
|
|
6
|
-
|
|
7
|
-
**Type:** Interactive Document Workflow
|
|
8
|
-
**Module:** Creative Intelligence System (CIS)
|
|
9
|
-
|
|
10
|
-
## Purpose
|
|
11
|
-
|
|
12
|
-
Guides human-centered design processes through the complete design thinking methodology: Empathize, Define, Ideate, Prototype, and Test. Creates solutions deeply rooted in user needs by combining empathy-driven research with systematic creative problem-solving.
|
|
13
|
-
|
|
14
|
-
## Distinctive Features
|
|
15
|
-
|
|
16
|
-
- **Phase-Based Structure**: Full five-phase design thinking journey from empathy to testing
|
|
17
|
-
- **Method Library**: Curated collection of design methods in `design-methods.csv` organized by phase
|
|
18
|
-
- **Context Integration**: Accepts design briefs or user research via data attribute
|
|
19
|
-
- **Facilitation Principles**: Guides divergent thinking before convergent action, emphasizes rapid prototyping over discussion
|
|
20
|
-
|
|
21
|
-
## Usage
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
# Basic invocation
|
|
25
|
-
workflow design-thinking
|
|
26
|
-
|
|
27
|
-
# With project context
|
|
28
|
-
workflow design-thinking --data /path/to/product-context.md
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
## Inputs
|
|
32
|
-
|
|
33
|
-
- **design_challenge**: Problem or opportunity being explored
|
|
34
|
-
- **users_stakeholders**: Primary users and affected parties
|
|
35
|
-
- **constraints**: Time, budget, technology limitations
|
|
36
|
-
- **recommended_inputs**: Existing research or context documents
|
|
37
|
-
|
|
38
|
-
## Outputs
|
|
39
|
-
|
|
40
|
-
**File:** `{output_folder}/design-thinking-{date}.md`
|
|
41
|
-
|
|
42
|
-
**Structure:**
|
|
43
|
-
|
|
44
|
-
- Design challenge statement and point-of-view
|
|
45
|
-
- User insights and empathy mapping
|
|
46
|
-
- "How Might We" questions and problem framing
|
|
47
|
-
- Generated solution concepts
|
|
48
|
-
- Prototype designs and test plans
|
|
49
|
-
- Validated learning and iteration roadmap
|
|
50
|
-
|
|
51
|
-
## Workflow Components
|
|
52
|
-
|
|
53
|
-
- `workflow.yaml` - Configuration with design_methods CSV reference
|
|
54
|
-
- `instructions.md` - 7-step facilitation guide through design thinking phases
|
|
55
|
-
- `template.md` - Structured output format
|
|
56
|
-
- `design-methods.csv` - Phase-specific design techniques library
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
phase,method_name,description,facilitation_prompts
|
|
2
|
-
empathize,User Interviews,Conduct deep conversations to understand user needs experiences and pain points through active listening,What brings you here today?|Walk me through a recent experience|What frustrates you most?|What would make this easier?|Tell me more about that
|
|
3
|
-
empathize,Empathy Mapping,Create visual representation of what users say think do and feel to build deep understanding,What did they say?|What might they be thinking?|What actions did they take?|What emotions surfaced?
|
|
4
|
-
empathize,Shadowing,Observe users in their natural environment to see unspoken behaviors and contextual factors,Watch without interrupting|Note their workarounds|What patterns emerge?|What do they not say?
|
|
5
|
-
empathize,Journey Mapping,Document complete user experience across touchpoints to identify pain points and opportunities,What's their starting point?|What steps do they take?|Where do they struggle?|What delights them?|What's the emotional arc?
|
|
6
|
-
empathize,Diary Studies,Have users document experiences over time to capture authentic moments and evolving needs,What did you experience today?|How did you feel?|What worked or didn't?|What surprised you?
|
|
7
|
-
define,Problem Framing,Transform observations into clear actionable problem statements that inspire solution generation,What's the real problem?|Who experiences this?|Why does it matter?|What would success look like?
|
|
8
|
-
define,How Might We,Reframe problems as opportunity questions that open solution space without prescribing answers,How might we help users...?|How might we make it easier to...?|How might we reduce the friction of...?
|
|
9
|
-
define,Point of View Statement,Create specific user-centered problem statements that capture who what and why,User type needs what because insight|What's driving this need?|Why does it matter to them?
|
|
10
|
-
define,Affinity Clustering,Group related observations and insights to reveal patterns and opportunity themes,What connects these?|What themes emerge?|Group similar items|Name each cluster|What story do they tell?
|
|
11
|
-
define,Jobs to be Done,Identify functional emotional and social jobs users are hiring solutions to accomplish,What job are they trying to do?|What progress do they want?|What are they really hiring this for?|What alternatives exist?
|
|
12
|
-
ideate,Brainstorming,Generate large quantity of diverse ideas without judgment to explore solution space fully,No bad ideas|Build on others|Go for quantity|Be visual|Stay on topic|Defer judgment
|
|
13
|
-
ideate,Crazy 8s,Rapidly sketch eight solution variations in eight minutes to force quick creative thinking,Fold paper in 8|1 minute per sketch|No overthinking|Quantity over quality|Push past obvious
|
|
14
|
-
ideate,SCAMPER Design,Apply seven design lenses to existing solutions - Substitute Combine Adapt Modify Purposes Eliminate Reverse,What could we substitute?|How could we combine elements?|What could we adapt?|How could we modify it?|Other purposes?|What to eliminate?|What if reversed?
|
|
15
|
-
ideate,Provotype Sketching,Create deliberately provocative or extreme prototypes to spark breakthrough thinking,What's the most extreme version?|Make it ridiculous|Push boundaries|What useful insights emerge?
|
|
16
|
-
ideate,Analogous Inspiration,Find inspiration from completely different domains to spark innovative connections,What other field solves this?|How does nature handle this?|What's an analogous problem?|What can we borrow?
|
|
17
|
-
prototype,Paper Prototyping,Create quick low-fidelity sketches and mockups to make ideas tangible for testing,Sketch it out|Make it rough|Focus on core concept|Test assumptions|Learn fast
|
|
18
|
-
prototype,Role Playing,Act out user scenarios and service interactions to test experience flow and pain points,Play the user|Act out the scenario|What feels awkward?|Where does it break?|What works?
|
|
19
|
-
prototype,Wizard of Oz,Simulate complex functionality manually behind scenes to test concept before building,Fake the backend|Focus on experience|What do they think is happening?|Does the concept work?
|
|
20
|
-
prototype,Storyboarding,Visualize user experience across time and touchpoints as sequential illustrated narrative,What's scene 1?|How does it progress?|What's the emotional journey?|Where's the climax?|How does it resolve?
|
|
21
|
-
prototype,Physical Mockups,Build tangible artifacts users can touch and interact with to test form and function,Make it 3D|Use basic materials|Make it interactive|Test ergonomics|Gather reactions
|
|
22
|
-
test,Usability Testing,Watch users attempt tasks with prototype to identify friction points and opportunities,Try to accomplish X|Think aloud please|Don't help them|Where do they struggle?|What surprises them?
|
|
23
|
-
test,Feedback Capture Grid,Organize user feedback across likes questions ideas and changes for actionable insights,What did they like?|What questions arose?|What ideas did they have?|What needs changing?
|
|
24
|
-
test,A/B Testing,Compare two variations to understand which approach better serves user needs,Show version A|Show version B|Which works better?|Why the difference?|What does data show?
|
|
25
|
-
test,Assumption Testing,Identify and validate critical assumptions underlying your solution to reduce risk,What are we assuming?|How can we test this?|What would prove us wrong?|What's the riskiest assumption?
|
|
26
|
-
test,Iterate and Refine,Use test insights to improve prototype through rapid cycles of refinement and re-testing,What did we learn?|What needs fixing?|What stays?|Make changes quickly|Test again
|
|
27
|
-
implement,Pilot Programs,Launch small-scale real-world implementation to learn before full rollout,Start small|Real users|Real context|What breaks?|What works?|Scale lessons learned
|
|
28
|
-
implement,Service Blueprinting,Map all service components interactions and touchpoints to guide implementation,What's visible to users?|What happens backstage?|What systems are needed?|Where are handoffs?
|
|
29
|
-
implement,Design System Creation,Build consistent patterns components and guidelines for scalable implementation,What patterns repeat?|Create reusable components|Document standards|Enable consistency
|
|
30
|
-
implement,Stakeholder Alignment,Bring team and stakeholders along journey to build shared understanding and commitment,Show the research|Walk through prototypes|Share user stories|Build empathy|Get buy-in
|
|
31
|
-
implement,Measurement Framework,Define success metrics and feedback loops to track impact and inform future iterations,How will we measure success?|What are key metrics?|How do we gather feedback?|When do we revisit?
|
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
# Design Thinking Workflow Instructions
|
|
2
|
-
|
|
3
|
-
<critical>The workflow execution engine is governed by: {project_root}/bmad/core/tasks/workflow.xml</critical>
|
|
4
|
-
<critical>You MUST have already loaded and processed: {project_root}/bmad/cis/workflows/design-thinking/workflow.yaml</critical>
|
|
5
|
-
<critical>Load and understand design methods from: {design_methods}</critical>
|
|
6
|
-
|
|
7
|
-
<facilitation-principles>
|
|
8
|
-
YOU ARE A HUMAN-CENTERED DESIGN FACILITATOR:
|
|
9
|
-
- Keep users at the center of every decision
|
|
10
|
-
- Encourage divergent thinking before convergent action
|
|
11
|
-
- Make ideas tangible quickly - prototype beats discussion
|
|
12
|
-
- Embrace failure as feedback, not defeat
|
|
13
|
-
- Test with real users, not assumptions
|
|
14
|
-
- Balance empathy with action momentum
|
|
15
|
-
</facilitation-principles>
|
|
16
|
-
|
|
17
|
-
<workflow>
|
|
18
|
-
|
|
19
|
-
<step n="1" goal="Gather context and define design challenge">
|
|
20
|
-
Ask the user about their design challenge:
|
|
21
|
-
- What problem or opportunity are you exploring?
|
|
22
|
-
- Who are the primary users or stakeholders?
|
|
23
|
-
- What constraints exist (time, budget, technology)?
|
|
24
|
-
- What success looks like for this project?
|
|
25
|
-
- Any existing research or context to consider?
|
|
26
|
-
|
|
27
|
-
Load any context data provided via the data attribute.
|
|
28
|
-
|
|
29
|
-
Create a clear design challenge statement.
|
|
30
|
-
|
|
31
|
-
<template-output>design_challenge</template-output>
|
|
32
|
-
<template-output>challenge_statement</template-output>
|
|
33
|
-
</step>
|
|
34
|
-
|
|
35
|
-
<step n="2" goal="EMPATHIZE - Build understanding of users">
|
|
36
|
-
Guide the user through empathy-building activities. Explain in your own voice why deep empathy with users is essential before jumping to solutions.
|
|
37
|
-
|
|
38
|
-
Review empathy methods from {design_methods} (phase: empathize) and select 3-5 that fit the design challenge context. Consider:
|
|
39
|
-
|
|
40
|
-
- Available resources and access to users
|
|
41
|
-
- Time constraints
|
|
42
|
-
- Type of product/service being designed
|
|
43
|
-
- Depth of understanding needed
|
|
44
|
-
|
|
45
|
-
Offer selected methods with guidance on when each works best, then ask which the user has used or can use, or offer a recommendation based on their specific challenge.
|
|
46
|
-
|
|
47
|
-
Help gather and synthesize user insights:
|
|
48
|
-
|
|
49
|
-
- What did users say, think, do, and feel?
|
|
50
|
-
- What pain points emerged?
|
|
51
|
-
- What surprised you?
|
|
52
|
-
- What patterns do you see?
|
|
53
|
-
|
|
54
|
-
<template-output>user_insights</template-output>
|
|
55
|
-
<template-output>key_observations</template-output>
|
|
56
|
-
<template-output>empathy_map</template-output>
|
|
57
|
-
</step>
|
|
58
|
-
|
|
59
|
-
<step n="3" goal="DEFINE - Frame the problem clearly">
|
|
60
|
-
<energy-checkpoint>
|
|
61
|
-
Check in: "We've gathered rich user insights. How are you feeling? Ready to synthesize into problem statements?"
|
|
62
|
-
</energy-checkpoint>
|
|
63
|
-
|
|
64
|
-
Transform observations into actionable problem statements.
|
|
65
|
-
|
|
66
|
-
Guide through problem framing (phase: define methods):
|
|
67
|
-
|
|
68
|
-
1. Create Point of View statement: "[User type] needs [need] because [insight]"
|
|
69
|
-
2. Generate "How Might We" questions that open solution space
|
|
70
|
-
3. Identify key insights and opportunity areas
|
|
71
|
-
|
|
72
|
-
Ask probing questions:
|
|
73
|
-
|
|
74
|
-
- What's the REAL problem we're solving?
|
|
75
|
-
- Why does this matter to users?
|
|
76
|
-
- What would success look like for them?
|
|
77
|
-
- What assumptions are we making?
|
|
78
|
-
|
|
79
|
-
<template-output>pov_statement</template-output>
|
|
80
|
-
<template-output>hmw_questions</template-output>
|
|
81
|
-
<template-output>problem_insights</template-output>
|
|
82
|
-
</step>
|
|
83
|
-
|
|
84
|
-
<step n="4" goal="IDEATE - Generate diverse solutions">
|
|
85
|
-
Facilitate creative solution generation. Explain in your own voice the importance of divergent thinking and deferring judgment during ideation.
|
|
86
|
-
|
|
87
|
-
Review ideation methods from {design_methods} (phase: ideate) and select 3-5 methods appropriate for the context. Consider:
|
|
88
|
-
|
|
89
|
-
- Group vs individual ideation
|
|
90
|
-
- Time available
|
|
91
|
-
- Problem complexity
|
|
92
|
-
- Team creativity comfort level
|
|
93
|
-
|
|
94
|
-
Offer selected methods with brief descriptions of when each works best.
|
|
95
|
-
|
|
96
|
-
Walk through chosen method(s):
|
|
97
|
-
|
|
98
|
-
- Generate 15-30 ideas minimum
|
|
99
|
-
- Build on others' ideas
|
|
100
|
-
- Go for wild and practical
|
|
101
|
-
- Defer judgment
|
|
102
|
-
|
|
103
|
-
Help cluster and select top concepts:
|
|
104
|
-
|
|
105
|
-
- Which ideas excite you most?
|
|
106
|
-
- Which address the core user need?
|
|
107
|
-
- Which are feasible given constraints?
|
|
108
|
-
- Select 2-3 to prototype
|
|
109
|
-
|
|
110
|
-
<template-output>ideation_methods</template-output>
|
|
111
|
-
<template-output>generated_ideas</template-output>
|
|
112
|
-
<template-output>top_concepts</template-output>
|
|
113
|
-
</step>
|
|
114
|
-
|
|
115
|
-
<step n="5" goal="PROTOTYPE - Make ideas tangible">
|
|
116
|
-
<energy-checkpoint>
|
|
117
|
-
Check in: "We've generated lots of ideas! How's your energy for making some of these tangible through prototyping?"
|
|
118
|
-
</energy-checkpoint>
|
|
119
|
-
|
|
120
|
-
Guide creation of low-fidelity prototypes for testing. Explain in your own voice why rough and quick prototypes are better than polished ones at this stage.
|
|
121
|
-
|
|
122
|
-
Review prototyping methods from {design_methods} (phase: prototype) and select 2-4 appropriate for the solution type. Consider:
|
|
123
|
-
|
|
124
|
-
- Physical vs digital product
|
|
125
|
-
- Service vs product
|
|
126
|
-
- Available materials and tools
|
|
127
|
-
- What needs to be tested
|
|
128
|
-
|
|
129
|
-
Offer selected methods with guidance on fit.
|
|
130
|
-
|
|
131
|
-
Help define prototype:
|
|
132
|
-
|
|
133
|
-
- What's the minimum to test your assumptions?
|
|
134
|
-
- What are you trying to learn?
|
|
135
|
-
- What should users be able to do?
|
|
136
|
-
- What can you fake vs build?
|
|
137
|
-
|
|
138
|
-
<template-output>prototype_approach</template-output>
|
|
139
|
-
<template-output>prototype_description</template-output>
|
|
140
|
-
<template-output>features_to_test</template-output>
|
|
141
|
-
</step>
|
|
142
|
-
|
|
143
|
-
<step n="6" goal="TEST - Validate with users">
|
|
144
|
-
Design validation approach and capture learnings. Explain in your own voice why observing what users DO matters more than what they SAY.
|
|
145
|
-
|
|
146
|
-
Help plan testing (phase: test methods):
|
|
147
|
-
|
|
148
|
-
- Who will you test with? (aim for 5-7 users)
|
|
149
|
-
- What tasks will they attempt?
|
|
150
|
-
- What questions will you ask?
|
|
151
|
-
- How will you capture feedback?
|
|
152
|
-
|
|
153
|
-
Guide feedback collection:
|
|
154
|
-
|
|
155
|
-
- What worked well?
|
|
156
|
-
- Where did they struggle?
|
|
157
|
-
- What surprised them (and you)?
|
|
158
|
-
- What questions arose?
|
|
159
|
-
- What would they change?
|
|
160
|
-
|
|
161
|
-
Synthesize learnings:
|
|
162
|
-
|
|
163
|
-
- What assumptions were validated/invalidated?
|
|
164
|
-
- What needs to change?
|
|
165
|
-
- What should stay?
|
|
166
|
-
- What new insights emerged?
|
|
167
|
-
|
|
168
|
-
<template-output>testing_plan</template-output>
|
|
169
|
-
<template-output>user_feedback</template-output>
|
|
170
|
-
<template-output>key_learnings</template-output>
|
|
171
|
-
</step>
|
|
172
|
-
|
|
173
|
-
<step n="7" goal="Plan next iteration">
|
|
174
|
-
<energy-checkpoint>
|
|
175
|
-
Check in: "Great work! How's your energy for final planning - defining next steps and success metrics?"
|
|
176
|
-
</energy-checkpoint>
|
|
177
|
-
|
|
178
|
-
Define clear next steps and success criteria.
|
|
179
|
-
|
|
180
|
-
Based on testing insights:
|
|
181
|
-
|
|
182
|
-
- What refinements are needed?
|
|
183
|
-
- What's the priority action?
|
|
184
|
-
- Who needs to be involved?
|
|
185
|
-
- What timeline makes sense?
|
|
186
|
-
- How will you measure success?
|
|
187
|
-
|
|
188
|
-
Determine next cycle:
|
|
189
|
-
|
|
190
|
-
- Do you need more empathy work?
|
|
191
|
-
- Should you reframe the problem?
|
|
192
|
-
- Ready to refine prototype?
|
|
193
|
-
- Time to pilot with real users?
|
|
194
|
-
|
|
195
|
-
<template-output>refinements</template-output>
|
|
196
|
-
<template-output>action_items</template-output>
|
|
197
|
-
<template-output>success_metrics</template-output>
|
|
198
|
-
</step>
|
|
199
|
-
|
|
200
|
-
</workflow>
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
# Design Thinking Session: {{project_name}}
|
|
2
|
-
|
|
3
|
-
**Date:** {{date}}
|
|
4
|
-
**Facilitator:** {{user_name}}
|
|
5
|
-
**Design Challenge:** {{design_challenge}}
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## 🎯 Design Challenge
|
|
10
|
-
|
|
11
|
-
{{challenge_statement}}
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## 👥 EMPATHIZE: Understanding Users
|
|
16
|
-
|
|
17
|
-
### User Insights
|
|
18
|
-
|
|
19
|
-
{{user_insights}}
|
|
20
|
-
|
|
21
|
-
### Key Observations
|
|
22
|
-
|
|
23
|
-
{{key_observations}}
|
|
24
|
-
|
|
25
|
-
### Empathy Map Summary
|
|
26
|
-
|
|
27
|
-
{{empathy_map}}
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
## 🎨 DEFINE: Frame the Problem
|
|
32
|
-
|
|
33
|
-
### Point of View Statement
|
|
34
|
-
|
|
35
|
-
{{pov_statement}}
|
|
36
|
-
|
|
37
|
-
### How Might We Questions
|
|
38
|
-
|
|
39
|
-
{{hmw_questions}}
|
|
40
|
-
|
|
41
|
-
### Key Insights
|
|
42
|
-
|
|
43
|
-
{{problem_insights}}
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
## 💡 IDEATE: Generate Solutions
|
|
48
|
-
|
|
49
|
-
### Selected Methods
|
|
50
|
-
|
|
51
|
-
{{ideation_methods}}
|
|
52
|
-
|
|
53
|
-
### Generated Ideas
|
|
54
|
-
|
|
55
|
-
{{generated_ideas}}
|
|
56
|
-
|
|
57
|
-
### Top Concepts
|
|
58
|
-
|
|
59
|
-
{{top_concepts}}
|
|
60
|
-
|
|
61
|
-
---
|
|
62
|
-
|
|
63
|
-
## 🛠️ PROTOTYPE: Make Ideas Tangible
|
|
64
|
-
|
|
65
|
-
### Prototype Approach
|
|
66
|
-
|
|
67
|
-
{{prototype_approach}}
|
|
68
|
-
|
|
69
|
-
### Prototype Description
|
|
70
|
-
|
|
71
|
-
{{prototype_description}}
|
|
72
|
-
|
|
73
|
-
### Key Features to Test
|
|
74
|
-
|
|
75
|
-
{{features_to_test}}
|
|
76
|
-
|
|
77
|
-
---
|
|
78
|
-
|
|
79
|
-
## ✅ TEST: Validate with Users
|
|
80
|
-
|
|
81
|
-
### Testing Plan
|
|
82
|
-
|
|
83
|
-
{{testing_plan}}
|
|
84
|
-
|
|
85
|
-
### User Feedback
|
|
86
|
-
|
|
87
|
-
{{user_feedback}}
|
|
88
|
-
|
|
89
|
-
### Key Learnings
|
|
90
|
-
|
|
91
|
-
{{key_learnings}}
|
|
92
|
-
|
|
93
|
-
---
|
|
94
|
-
|
|
95
|
-
## 🚀 Next Steps
|
|
96
|
-
|
|
97
|
-
### Refinements Needed
|
|
98
|
-
|
|
99
|
-
{{refinements}}
|
|
100
|
-
|
|
101
|
-
### Action Items
|
|
102
|
-
|
|
103
|
-
{{action_items}}
|
|
104
|
-
|
|
105
|
-
### Success Metrics
|
|
106
|
-
|
|
107
|
-
{{success_metrics}}
|
|
108
|
-
|
|
109
|
-
---
|
|
110
|
-
|
|
111
|
-
_Generated using BMAD Creative Intelligence Suite - Design Thinking Workflow_
|