bmad-method 6.0.0-alpha.17 → 6.0.0-alpha.18
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/CHANGELOG.md +97 -0
- package/package.json +1 -1
- package/src/modules/bmgd/_module-installer/installer.js +160 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/claude-code.js +23 -0
- package/src/modules/bmgd/_module-installer/platform-specifics/windsurf.js +18 -0
- package/src/modules/bmgd/agents/game-architect.agent.yaml +23 -8
- package/src/modules/bmgd/agents/game-designer.agent.yaml +38 -18
- package/src/modules/bmgd/agents/game-dev.agent.yaml +30 -14
- package/src/modules/bmgd/agents/game-qa.agent.yaml +64 -0
- package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +27 -39
- package/src/modules/bmgd/agents/game-solo-dev.agent.yaml +56 -0
- package/src/modules/bmgd/docs/README.md +180 -0
- package/src/modules/bmgd/docs/agents-guide.md +407 -0
- package/src/modules/bmgd/docs/game-types-guide.md +503 -0
- package/src/modules/bmgd/docs/glossary.md +294 -0
- package/src/modules/bmgd/docs/quick-flow-guide.md +288 -0
- package/src/modules/bmgd/docs/quick-start.md +250 -0
- package/src/modules/bmgd/docs/troubleshooting.md +259 -0
- package/src/modules/bmgd/docs/workflow-overview.jpg +0 -0
- package/src/modules/bmgd/docs/workflows-guide.md +463 -0
- package/src/modules/bmgd/gametest/knowledge/balance-testing.md +220 -0
- package/src/modules/bmgd/gametest/knowledge/certification-testing.md +319 -0
- package/src/modules/bmgd/gametest/knowledge/compatibility-testing.md +228 -0
- package/src/modules/bmgd/gametest/knowledge/godot-testing.md +376 -0
- package/src/modules/bmgd/gametest/knowledge/input-testing.md +315 -0
- package/src/modules/bmgd/gametest/knowledge/localization-testing.md +304 -0
- package/src/modules/bmgd/gametest/knowledge/multiplayer-testing.md +322 -0
- package/src/modules/bmgd/gametest/knowledge/performance-testing.md +204 -0
- package/src/modules/bmgd/gametest/knowledge/playtesting.md +384 -0
- package/src/modules/bmgd/gametest/knowledge/qa-automation.md +190 -0
- package/src/modules/bmgd/gametest/knowledge/regression-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/save-testing.md +280 -0
- package/src/modules/bmgd/gametest/knowledge/smoke-testing.md +404 -0
- package/src/modules/bmgd/gametest/knowledge/test-priorities.md +271 -0
- package/src/modules/bmgd/gametest/knowledge/unity-testing.md +383 -0
- package/src/modules/bmgd/gametest/knowledge/unreal-testing.md +388 -0
- package/src/modules/bmgd/gametest/qa-index.csv +17 -0
- package/src/modules/bmgd/module.yaml +25 -9
- package/src/modules/bmgd/teams/default-party.csv +2 -0
- package/src/modules/bmgd/teams/team-gamedev.yaml +12 -1
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-01-init.md +164 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-02-context.md +210 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-03-ideation.md +289 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/steps/step-04-complete.md +275 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.md +49 -0
- package/src/modules/bmgd/workflows/1-preproduction/brainstorm-game/workflow.yaml +29 -8
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-01b-continue.md +151 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-02-vision.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-03-market.md +218 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-04-fundamentals.md +231 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-05-scope.md +242 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-06-references.md +224 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-07-content.md +282 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/steps/step-08-complete.md +296 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.md +62 -0
- package/src/modules/bmgd/workflows/1-preproduction/game-brief/workflow.yaml +40 -9
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01-init.md +248 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-01b-continue.md +173 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-02-context.md +332 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-03-platforms.md +245 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-04-vision.md +229 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-05-core-gameplay.md +258 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-06-mechanics.md +249 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-07-game-type.md +266 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-08-progression.md +272 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-09-levels.md +264 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-10-art-audio.md +255 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-11-technical.md +275 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-12-epics.md +284 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-13-metrics.md +250 -0
- package/src/modules/bmgd/workflows/2-design/gdd/steps/step-14-complete.md +335 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.md +61 -0
- package/src/modules/bmgd/workflows/2-design/gdd/workflow.yaml +27 -7
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01-init.md +228 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-01b-continue.md +163 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-02-foundation.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-03-story.md +238 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-04-characters.md +297 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-05-world.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-06-dialogue.md +250 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-07-environmental.md +244 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-08-delivery.md +264 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-09-integration.md +254 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-10-production.md +262 -0
- package/src/modules/bmgd/workflows/2-design/narrative/steps/step-11-complete.md +331 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.md +57 -0
- package/src/modules/bmgd/workflows/2-design/narrative/workflow.yaml +53 -8
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01-init.md +223 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-01b-continue.md +153 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-02-context.md +262 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-03-starter.md +290 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-04-decisions.md +300 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-05-crosscutting.md +319 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-06-structure.md +304 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-07-patterns.md +349 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-08-validation.md +293 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/steps/step-09-complete.md +302 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.md +55 -0
- package/src/modules/bmgd/workflows/3-technical/game-architecture/workflow.yaml +50 -21
- package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +23 -0
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.xml +225 -0
- package/src/modules/bmgd/workflows/4-production/code-review/workflow.yaml +18 -15
- package/src/modules/bmgd/workflows/4-production/correct-course/checklist.md +1 -1
- package/src/modules/bmgd/workflows/4-production/correct-course/instructions.md +1 -1
- package/src/modules/bmgd/workflows/4-production/correct-course/workflow.yaml +11 -6
- package/src/modules/bmgd/workflows/4-production/create-story/checklist.md +332 -214
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.xml +298 -0
- package/src/modules/bmgd/workflows/4-production/create-story/template.md +3 -5
- package/src/modules/bmgd/workflows/4-production/create-story/workflow.yaml +12 -7
- package/src/modules/bmgd/workflows/4-production/dev-story/checklist.md +65 -23
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.xml +409 -0
- package/src/modules/bmgd/workflows/4-production/dev-story/workflow.yaml +13 -3
- package/src/modules/bmgd/workflows/4-production/retrospective/instructions.md +4 -4
- package/src/modules/bmgd/workflows/4-production/retrospective/workflow.yaml +12 -7
- package/src/modules/bmgd/workflows/4-production/sprint-planning/instructions.md +32 -41
- package/src/modules/bmgd/workflows/4-production/sprint-planning/sprint-status-template.yaml +13 -13
- package/src/modules/bmgd/workflows/4-production/sprint-planning/workflow.yaml +6 -1
- package/src/modules/bmgd/workflows/4-production/sprint-status/instructions.md +229 -0
- package/src/modules/bmgd/workflows/4-production/sprint-status/workflow.yaml +35 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/instructions.md +140 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/workflow.yaml +27 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/checklist.md +37 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/instructions.md +220 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-dev/workflow.yaml +45 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/checklist.md +26 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/instructions.md +156 -0
- package/src/modules/bmgd/workflows/bmgd-quick-flow/quick-prototype/workflow.yaml +36 -0
- package/src/modules/bmgd/workflows/gametest/automate/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/automate/instructions.md +317 -0
- package/src/modules/bmgd/workflows/gametest/automate/workflow.yaml +50 -0
- package/src/modules/bmgd/workflows/gametest/performance/checklist.md +96 -0
- package/src/modules/bmgd/workflows/gametest/performance/instructions.md +323 -0
- package/src/modules/bmgd/workflows/gametest/performance/performance-template.md +256 -0
- package/src/modules/bmgd/workflows/gametest/performance/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/checklist.md +93 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/instructions.md +297 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/playtest-template.md +208 -0
- package/src/modules/bmgd/workflows/gametest/playtest-plan/workflow.yaml +59 -0
- package/src/modules/bmgd/workflows/gametest/test-design/checklist.md +98 -0
- package/src/modules/bmgd/workflows/gametest/test-design/instructions.md +280 -0
- package/src/modules/bmgd/workflows/gametest/test-design/test-design-template.md +205 -0
- package/src/modules/bmgd/workflows/gametest/test-design/workflow.yaml +47 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/checklist.md +103 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/instructions.md +348 -0
- package/src/modules/bmgd/workflows/gametest/test-framework/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/gametest/test-review/checklist.md +87 -0
- package/src/modules/bmgd/workflows/gametest/test-review/instructions.md +272 -0
- package/src/modules/bmgd/workflows/gametest/test-review/test-review-template.md +203 -0
- package/src/modules/bmgd/workflows/gametest/test-review/workflow.yaml +48 -0
- package/src/modules/bmgd/workflows/workflow-status/init/instructions.md +299 -0
- package/src/modules/bmgd/workflows/workflow-status/init/workflow.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/instructions.md +395 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-brownfield.yaml +65 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/gamedev-greenfield.yaml +71 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-brownfield.yaml +29 -0
- package/src/modules/bmgd/workflows/workflow-status/paths/quickflow-greenfield.yaml +39 -0
- package/src/modules/bmgd/workflows/workflow-status/project-levels.yaml +63 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/modules/bmgd/workflows/workflow-status/workflow.yaml +30 -0
- package/tools/cli/commands/install.js +9 -0
- package/tools/cli/installers/lib/core/installer.js +109 -109
- package/tools/cli/installers/lib/core/installer.js.bak +3204 -0
- package/tools/cli/installers/lib/modules/manager.js +16 -4
- package/tools/cli/lib/agent/compiler.js +99 -0
- package/tools/cli/lib/ui.js +78 -27
- package/src/modules/bmgd/workflows/2-design/gdd/instructions-gdd.md +0 -502
- package/src/modules/bmgd/workflows/4-production/code-review/instructions.md +0 -398
- package/src/modules/bmgd/workflows/4-production/create-story/instructions.md +0 -256
- package/src/modules/bmgd/workflows/4-production/dev-story/instructions.md +0 -267
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/checklist.md +0 -17
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/instructions.md +0 -164
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/template.md +0 -76
- package/src/modules/bmgd/workflows/4-production/epic-tech-context/workflow.yaml +0 -58
- package/src/modules/bmgd/workflows/4-production/story-context/checklist.md +0 -16
- package/src/modules/bmgd/workflows/4-production/story-context/context-template.xml +0 -34
- package/src/modules/bmgd/workflows/4-production/story-context/instructions.md +0 -209
- package/src/modules/bmgd/workflows/4-production/story-context/workflow.yaml +0 -63
- package/src/modules/bmgd/workflows/4-production/story-done/instructions.md +0 -111
- package/src/modules/bmgd/workflows/4-production/story-done/workflow.yaml +0 -28
- package/src/modules/bmgd/workflows/4-production/story-ready/instructions.md +0 -117
- package/src/modules/bmgd/workflows/4-production/story-ready/workflow.yaml +0 -25
- /package/src/modules/bmgd/workflows/1-preproduction/game-brief/{template.md → templates/game-brief-template.md} +0 -0
- /package/src/modules/bmgd/workflows/2-design/gdd/{gdd-template.md → templates/gdd-template.md} +0 -0
- /package/src/modules/bmgd/workflows/2-design/narrative/{narrative-template.md → templates/narrative-template.md} +0 -0
- /package/src/modules/bmgd/workflows/3-technical/game-architecture/{architecture-template.md → templates/architecture-template.md} +0 -0
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
# Workflow Init - Game Project Setup 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: workflow-init/workflow.yaml</critical>
|
|
5
|
+
<critical>Communicate in {communication_language} with {user_name}</critical>
|
|
6
|
+
<critical>This workflow handles BOTH new game projects AND existing game projects</critical>
|
|
7
|
+
|
|
8
|
+
<workflow>
|
|
9
|
+
|
|
10
|
+
<step n="1" goal="Scan for existing work">
|
|
11
|
+
<output>Welcome to BMGD Game Development, {user_name}! 🎮</output>
|
|
12
|
+
|
|
13
|
+
<action>Perform comprehensive scan for existing work:
|
|
14
|
+
|
|
15
|
+
- BMGD artifacts: GDD, game brief, architecture, narrative design
|
|
16
|
+
- Implementation: stories, sprint-status, workflow-status
|
|
17
|
+
- Game project: engine files (Unity, Unreal, Godot), source directories
|
|
18
|
+
- Check both {output_folder} and {sprint_artifacts} locations
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>Categorize into one of these states:
|
|
22
|
+
|
|
23
|
+
- CLEAN: No artifacts or code (or scaffold only)
|
|
24
|
+
- DESIGN: Has GDD/brief but no implementation
|
|
25
|
+
- ACTIVE: Has stories or sprint status
|
|
26
|
+
- EXISTING: Has game code but no BMGD artifacts
|
|
27
|
+
- UNCLEAR: Mixed state needs clarification
|
|
28
|
+
</action>
|
|
29
|
+
|
|
30
|
+
<ask>What's your game project called? {{#if project_name}}(Config shows: {{project_name}}){{/if}}</ask>
|
|
31
|
+
<action>Store project_name</action>
|
|
32
|
+
<template-output>project_name</template-output>
|
|
33
|
+
</step>
|
|
34
|
+
|
|
35
|
+
<step n="2" goal="Choose setup path">
|
|
36
|
+
<check if="state == CLEAN">
|
|
37
|
+
<output>Perfect! Fresh start detected. Let's design your game!</output>
|
|
38
|
+
<action>Continue to step 3</action>
|
|
39
|
+
</check>
|
|
40
|
+
|
|
41
|
+
<check if="state == ACTIVE AND workflow_status exists">
|
|
42
|
+
<output>✅ You already have workflow tracking at: {{workflow_status_path}}
|
|
43
|
+
|
|
44
|
+
To check progress: Load any BMGD agent and run /bmad:bmgd:workflows:workflow-status
|
|
45
|
+
|
|
46
|
+
Happy game dev! 🎮</output>
|
|
47
|
+
<action>Exit workflow (already initialized)</action>
|
|
48
|
+
</check>
|
|
49
|
+
|
|
50
|
+
<check if="state != CLEAN">
|
|
51
|
+
<output>Found existing work:
|
|
52
|
+
{{summary_of_findings}}</output>
|
|
53
|
+
|
|
54
|
+
<ask>How would you like to proceed?
|
|
55
|
+
|
|
56
|
+
1. **Continue** - Work with existing artifacts
|
|
57
|
+
2. **Archive & Start Fresh** - Move old work to archive
|
|
58
|
+
3. **Express Setup** - I know exactly what I need
|
|
59
|
+
4. **Guided Setup** - Walk me through options
|
|
60
|
+
|
|
61
|
+
Choice [1-4]</ask>
|
|
62
|
+
|
|
63
|
+
<check if="choice == 1">
|
|
64
|
+
<action>Set continuing_existing = true</action>
|
|
65
|
+
<action>Store found artifacts</action>
|
|
66
|
+
<action>Continue to step 7 (detect track from artifacts)</action>
|
|
67
|
+
</check>
|
|
68
|
+
|
|
69
|
+
<check if="choice == 2">
|
|
70
|
+
<ask>Archive existing work? (y/n)</ask>
|
|
71
|
+
<action if="y">Move artifacts to {output_folder}/archive/</action>
|
|
72
|
+
<output>Ready for fresh start!</output>
|
|
73
|
+
<action>Continue to step 3</action>
|
|
74
|
+
</check>
|
|
75
|
+
|
|
76
|
+
<check if="choice == 3">
|
|
77
|
+
<action>Jump to step 3 (express path)</action>
|
|
78
|
+
</check>
|
|
79
|
+
|
|
80
|
+
<check if="choice == 4">
|
|
81
|
+
<action>Continue to step 4 (guided path)</action>
|
|
82
|
+
</check>
|
|
83
|
+
</check>
|
|
84
|
+
|
|
85
|
+
<check if="state == CLEAN">
|
|
86
|
+
<ask>Setup approach:
|
|
87
|
+
|
|
88
|
+
1. **Express** - I know what I need
|
|
89
|
+
2. **Guided** - Show me the options
|
|
90
|
+
|
|
91
|
+
Choice [1 or 2]:</ask>
|
|
92
|
+
|
|
93
|
+
<check if="choice == 1">
|
|
94
|
+
<action>Continue to step 3 (express)</action>
|
|
95
|
+
</check>
|
|
96
|
+
|
|
97
|
+
<check if="choice == 2">
|
|
98
|
+
<action>Continue to step 4 (guided)</action>
|
|
99
|
+
</check>
|
|
100
|
+
</check>
|
|
101
|
+
</step>
|
|
102
|
+
|
|
103
|
+
<step n="3" goal="Express setup path">
|
|
104
|
+
<ask>Is this for:
|
|
105
|
+
1. **New game** (greenfield)
|
|
106
|
+
2. **Existing game codebase** (brownfield)
|
|
107
|
+
|
|
108
|
+
Choice [1/2]:</ask>
|
|
109
|
+
<action>Set field_type based on choice</action>
|
|
110
|
+
|
|
111
|
+
<ask>Development approach:
|
|
112
|
+
|
|
113
|
+
1. **Full Game Dev** - Complete GDD + Architecture + Production pipeline
|
|
114
|
+
2. **Quick Flow** - Rapid prototyping and iteration
|
|
115
|
+
|
|
116
|
+
Choice [1/2]:</ask>
|
|
117
|
+
<action>Map to selected_track: gamedev/quickflow</action>
|
|
118
|
+
|
|
119
|
+
<template-output>field_type</template-output>
|
|
120
|
+
<template-output>selected_track</template-output>
|
|
121
|
+
<action>Jump to step 6 (discovery options)</action>
|
|
122
|
+
</step>
|
|
123
|
+
|
|
124
|
+
<step n="4" goal="Guided setup - understand project">
|
|
125
|
+
<ask>Tell me about your game. What are you making?</ask>
|
|
126
|
+
<action>Store user_description</action>
|
|
127
|
+
|
|
128
|
+
<action>Analyze for field type indicators:
|
|
129
|
+
|
|
130
|
+
- Brownfield: "existing", "current", "enhance", "update", "add to"
|
|
131
|
+
- Greenfield: "new", "build", "create", "from scratch", "fresh"
|
|
132
|
+
- If game project exists, default to brownfield unless user indicates new
|
|
133
|
+
</action>
|
|
134
|
+
|
|
135
|
+
<check if="field_type unclear AND game project exists">
|
|
136
|
+
<ask>I see existing game files. Are you:
|
|
137
|
+
1. **Modifying** existing game (brownfield)
|
|
138
|
+
2. **Starting fresh** - code is just scaffold (greenfield)
|
|
139
|
+
|
|
140
|
+
Choice [1/2]:</ask>
|
|
141
|
+
<action>Set field_type based on answer</action>
|
|
142
|
+
</check>
|
|
143
|
+
|
|
144
|
+
<action if="field_type not set">Set based on project presence</action>
|
|
145
|
+
|
|
146
|
+
<template-output>user_description</template-output>
|
|
147
|
+
<template-output>field_type</template-output>
|
|
148
|
+
<action>Continue to step 5</action>
|
|
149
|
+
</step>
|
|
150
|
+
|
|
151
|
+
<step n="5" goal="Guided setup - select track">
|
|
152
|
+
<output>Based on your game, here are your BMGD development options:
|
|
153
|
+
|
|
154
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
155
|
+
|
|
156
|
+
**1. Full Game Dev** 🎮 {{#if recommended}}(RECOMMENDED){{/if}}
|
|
157
|
+
|
|
158
|
+
- Complete: Game Brief + GDD + Architecture + Production
|
|
159
|
+
- Best for: Indie games, AA projects, complete releases
|
|
160
|
+
- Benefit: AI agents have full game context for better results
|
|
161
|
+
|
|
162
|
+
**2. Quick Flow** 🚀
|
|
163
|
+
|
|
164
|
+
- Rapid: Prototype → Iterate → Ship
|
|
165
|
+
- Best for: Game jams, prototypes, experiments
|
|
166
|
+
- Benefit: Get playable builds fast
|
|
167
|
+
|
|
168
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
169
|
+
|
|
170
|
+
{{#if brownfield}}
|
|
171
|
+
💡 Architecture helps integrate new features with your existing game systems.
|
|
172
|
+
{{/if}}</output>
|
|
173
|
+
|
|
174
|
+
<ask>Which approach fits your game?
|
|
175
|
+
|
|
176
|
+
1. Full Game Dev {{#if recommended}}(recommended){{/if}}
|
|
177
|
+
2. Quick Flow
|
|
178
|
+
3. Help me decide
|
|
179
|
+
|
|
180
|
+
Choice [1/2/3]:</ask>
|
|
181
|
+
|
|
182
|
+
<check if="choice == 3">
|
|
183
|
+
<ask>What concerns you about choosing?</ask>
|
|
184
|
+
<action>Provide tailored guidance based on concerns</action>
|
|
185
|
+
<action>Loop back to choice</action>
|
|
186
|
+
</check>
|
|
187
|
+
|
|
188
|
+
<action>Map choice to selected_track</action>
|
|
189
|
+
<template-output>selected_track</template-output>
|
|
190
|
+
</step>
|
|
191
|
+
|
|
192
|
+
<step n="6" goal="Discovery workflows selection (unified)">
|
|
193
|
+
<action>Determine available discovery workflows based on:
|
|
194
|
+
- field_type (greenfield gets game-brief option)
|
|
195
|
+
- selected_track (gamedev/quickflow options)
|
|
196
|
+
</action>
|
|
197
|
+
|
|
198
|
+
<check if="field_type == greenfield AND selected_track == gamedev">
|
|
199
|
+
<output>Optional pre-production workflows can help clarify your game vision:</output>
|
|
200
|
+
<ask>Select any you'd like to include:
|
|
201
|
+
|
|
202
|
+
1. 🧠 **Brainstorm Game** - Creative exploration and ideation
|
|
203
|
+
2. 📋 **Game Brief** - Strategic game planning (recommended)
|
|
204
|
+
|
|
205
|
+
Enter numbers (e.g., "1,2" or "all" or "none"): </ask>
|
|
206
|
+
</check>
|
|
207
|
+
|
|
208
|
+
<check if="field_type == brownfield AND selected_track == gamedev">
|
|
209
|
+
<output>Optional discovery workflows:</output>
|
|
210
|
+
<ask>Include any of these?
|
|
211
|
+
|
|
212
|
+
1. 🧠 **Brainstorm Game** - Creative exploration for new features
|
|
213
|
+
|
|
214
|
+
Enter "1" or "none": </ask>
|
|
215
|
+
</check>
|
|
216
|
+
|
|
217
|
+
<check if="selected_track == quickflow">
|
|
218
|
+
<output>Quick Flow focuses on rapid iteration. You can brainstorm during development.</output>
|
|
219
|
+
</check>
|
|
220
|
+
|
|
221
|
+
<action>Parse selections and set:
|
|
222
|
+
|
|
223
|
+
- brainstorm_requested
|
|
224
|
+
- game_brief_requested (if applicable)
|
|
225
|
+
</action>
|
|
226
|
+
|
|
227
|
+
<template-output>brainstorm_requested</template-output>
|
|
228
|
+
<template-output>game_brief_requested</template-output>
|
|
229
|
+
</step>
|
|
230
|
+
|
|
231
|
+
<step n="7" goal="Detect track from artifacts" if="continuing_existing">
|
|
232
|
+
<action>Analyze artifacts to detect track:
|
|
233
|
+
- Has GDD → Full Game Dev
|
|
234
|
+
- Has tech-spec only → Quick Flow
|
|
235
|
+
</action>
|
|
236
|
+
|
|
237
|
+
<output>Detected: **{{detected_track}}** based on {{found_artifacts}}</output>
|
|
238
|
+
<ask>Correct? (y/n)</ask>
|
|
239
|
+
|
|
240
|
+
<ask if="n">Which BMGD track instead?
|
|
241
|
+
|
|
242
|
+
1. Full Game Dev
|
|
243
|
+
2. Quick Flow
|
|
244
|
+
|
|
245
|
+
Choice:</ask>
|
|
246
|
+
|
|
247
|
+
<action>Set selected_track</action>
|
|
248
|
+
<template-output>selected_track</template-output>
|
|
249
|
+
</step>
|
|
250
|
+
|
|
251
|
+
<step n="8" goal="Generate workflow path">
|
|
252
|
+
<action>Load path file: {path_files}/{{selected_track}}-{{field_type}}.yaml</action>
|
|
253
|
+
<action>Build workflow_items from path file</action>
|
|
254
|
+
<action>Scan for existing completed work and update statuses</action>
|
|
255
|
+
<action>Set generated date</action>
|
|
256
|
+
|
|
257
|
+
<template-output>generated</template-output>
|
|
258
|
+
<template-output>workflow_path_file</template-output>
|
|
259
|
+
<template-output>workflow_items</template-output>
|
|
260
|
+
</step>
|
|
261
|
+
|
|
262
|
+
<step n="9" goal="Create tracking file">
|
|
263
|
+
<output>Your BMGD workflow path:
|
|
264
|
+
|
|
265
|
+
**Track:** {{selected_track}}
|
|
266
|
+
**Type:** {{field_type}}
|
|
267
|
+
**Project:** {{project_name}}
|
|
268
|
+
|
|
269
|
+
{{#if brownfield}}Prerequisites: Analyze existing game code{{/if}}
|
|
270
|
+
{{#if has_discovery}}Pre-production: {{list_selected_discovery}}{{/if}}
|
|
271
|
+
|
|
272
|
+
{{workflow_path_summary}}
|
|
273
|
+
</output>
|
|
274
|
+
|
|
275
|
+
<ask>Create workflow tracking file? (y/n)</ask>
|
|
276
|
+
|
|
277
|
+
<check if="y">
|
|
278
|
+
<action>Generate YAML from template with all variables</action>
|
|
279
|
+
<action>Save to {output_folder}/bmgd-workflow-status.yaml</action>
|
|
280
|
+
<action>Identify next workflow and agent</action>
|
|
281
|
+
|
|
282
|
+
<output>✅ **Created:** {output_folder}/bmgd-workflow-status.yaml
|
|
283
|
+
|
|
284
|
+
**Next:** {{next_workflow_name}}
|
|
285
|
+
**Agent:** {{next_agent}}
|
|
286
|
+
**Command:** /bmad:bmgd:workflows:{{next_workflow_id}}
|
|
287
|
+
|
|
288
|
+
{{#if next_agent not in [game-designer]}}
|
|
289
|
+
💡 Start new chat with **{{next_agent}}** agent first.
|
|
290
|
+
{{/if}}
|
|
291
|
+
|
|
292
|
+
To check progress: /bmad:bmgd:workflows:workflow-status
|
|
293
|
+
|
|
294
|
+
Happy game dev! 🎮</output>
|
|
295
|
+
</check>
|
|
296
|
+
|
|
297
|
+
</step>
|
|
298
|
+
|
|
299
|
+
</workflow>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Workflow Init - Initial Game Project Setup
|
|
2
|
+
name: workflow-init
|
|
3
|
+
description: "Initialize a new BMGD game project by determining level, type, and creating workflow path"
|
|
4
|
+
author: "BMad"
|
|
5
|
+
|
|
6
|
+
# Critical variables from config
|
|
7
|
+
config_source: "{project-root}/_bmad/bmgd/config.yaml"
|
|
8
|
+
output_folder: "{config_source}:output_folder"
|
|
9
|
+
sprint_artifacts: "{config_source}:sprint_artifacts"
|
|
10
|
+
user_name: "{config_source}:user_name"
|
|
11
|
+
project_name: "{config_source}:project_name"
|
|
12
|
+
communication_language: "{config_source}:communication_language"
|
|
13
|
+
document_output_language: "{config_source}:document_output_language"
|
|
14
|
+
user_skill_level: "{config_source}:game_dev_experience"
|
|
15
|
+
date: system-generated
|
|
16
|
+
|
|
17
|
+
# Workflow components
|
|
18
|
+
installed_path: "{project-root}/_bmad/bmgd/workflows/workflow-status/init"
|
|
19
|
+
instructions: "{installed_path}/instructions.md"
|
|
20
|
+
template: "{project-root}/_bmad/bmgd/workflows/workflow-status/workflow-status-template.yaml"
|
|
21
|
+
|
|
22
|
+
# Path data files
|
|
23
|
+
path_files: "{project-root}/_bmad/bmgd/workflows/workflow-status/paths/"
|
|
24
|
+
|
|
25
|
+
# Output configuration
|
|
26
|
+
default_output_file: "{output_folder}/bmgd-workflow-status.yaml"
|
|
27
|
+
|
|
28
|
+
standalone: true
|
|
29
|
+
web_bundle: false
|