bmad-method 6.0.0-alpha.17 → 6.0.0-alpha.19
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 +117 -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 +140 -592
- package/tools/cli/installers/lib/modules/manager.js +15 -3
- 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,250 @@
|
|
|
1
|
+
# BMGD Quick Start Guide
|
|
2
|
+
|
|
3
|
+
Get started building games with the BMad Game Development Module.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Prerequisites
|
|
8
|
+
|
|
9
|
+
Before starting with BMGD, ensure you have:
|
|
10
|
+
|
|
11
|
+
1. **BMAD-METHOD installed** - Follow the main installation guide
|
|
12
|
+
2. **A game idea** - Even a rough concept is enough to start
|
|
13
|
+
3. **Your preferred AI tool** - Claude Code, Cursor, or web-based chat
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
BMGD is a custom module that extends BMM. Install it using the BMAD installer:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# During installation, select BMGD when prompted for custom modules
|
|
23
|
+
npx bmad-cli install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Or add to an existing installation:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npx bmad-cli install --add-module bmgd
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Understanding the Phases
|
|
35
|
+
|
|
36
|
+
BMGD follows four game development phases:
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+
|
|
40
|
+
### Phase 1: Preproduction
|
|
41
|
+
|
|
42
|
+
**What happens:** Capture your game vision and core concept.
|
|
43
|
+
|
|
44
|
+
**Workflows:**
|
|
45
|
+
|
|
46
|
+
- `brainstorm-game` - Guided ideation with game-specific techniques
|
|
47
|
+
- `create-game-brief` - Document vision, market, pillars, and fundamentals
|
|
48
|
+
|
|
49
|
+
**Output:** Game Brief document
|
|
50
|
+
|
|
51
|
+
### Phase 2: Design
|
|
52
|
+
|
|
53
|
+
**What happens:** Detail your game's mechanics, systems, and (optionally) narrative.
|
|
54
|
+
|
|
55
|
+
**Workflows:**
|
|
56
|
+
|
|
57
|
+
- `create-gdd` - Create comprehensive Game Design Document
|
|
58
|
+
- `narrative` - Create Narrative Design Document (for story-driven games)
|
|
59
|
+
|
|
60
|
+
**Output:** GDD (and Narrative Design document if applicable)
|
|
61
|
+
|
|
62
|
+
### Phase 3: Technical
|
|
63
|
+
|
|
64
|
+
**What happens:** Plan how you'll build the game.
|
|
65
|
+
|
|
66
|
+
**Workflows:**
|
|
67
|
+
|
|
68
|
+
- `create-architecture` - Define engine, systems, patterns, and structure
|
|
69
|
+
|
|
70
|
+
**Output:** Game Architecture document
|
|
71
|
+
|
|
72
|
+
### Phase 4: Production
|
|
73
|
+
|
|
74
|
+
**What happens:** Build your game in sprints.
|
|
75
|
+
|
|
76
|
+
**Workflows:**
|
|
77
|
+
|
|
78
|
+
- `sprint-planning` - Plan and track sprints
|
|
79
|
+
- `sprint-status` - View progress and get recommendations
|
|
80
|
+
- `create-story` - Create implementable stories
|
|
81
|
+
- `dev-story` - Implement stories
|
|
82
|
+
- `code-review` - Quality assurance
|
|
83
|
+
- `retrospective` - Learn and improve after epics
|
|
84
|
+
|
|
85
|
+
**Output:** Working game code
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Your First Game Project
|
|
90
|
+
|
|
91
|
+
### Step 1: Start with Brainstorming (Optional)
|
|
92
|
+
|
|
93
|
+
If you have a vague idea and want help developing it:
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
You: brainstorm-game
|
|
97
|
+
Agent: [Guides you through game-specific ideation techniques]
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Step 2: Create Your Game Brief
|
|
101
|
+
|
|
102
|
+
Capture your game's core vision:
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
You: create-game-brief
|
|
106
|
+
Agent: [Walks you through game concept, pillars, market, and fundamentals]
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
**Output:** `{output_folder}/game-brief.md`
|
|
110
|
+
|
|
111
|
+
### Step 3: Create Your GDD
|
|
112
|
+
|
|
113
|
+
Detail your game's design:
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
You: create-gdd
|
|
117
|
+
Agent: [Guides you through mechanics, systems, and game-type-specific sections]
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**Output:** `{output_folder}/gdd.md` (or sharded into `{output_folder}/gdd/`)
|
|
121
|
+
|
|
122
|
+
### Step 4: Add Narrative Design (If Story-Driven)
|
|
123
|
+
|
|
124
|
+
For games with significant story:
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
You: narrative
|
|
128
|
+
Agent: [Facilitates story, characters, world, and dialogue design]
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
**Output:** `{output_folder}/narrative-design.md`
|
|
132
|
+
|
|
133
|
+
### Step 5: Create Architecture
|
|
134
|
+
|
|
135
|
+
Plan your technical implementation:
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
You: create-architecture
|
|
139
|
+
Agent: [Guides engine selection, system design, and technical decisions]
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**Output:** `{output_folder}/game-architecture.md`
|
|
143
|
+
|
|
144
|
+
### Step 6: Start Building
|
|
145
|
+
|
|
146
|
+
Begin sprint-based development:
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
You: sprint-planning
|
|
150
|
+
Agent: [Sets up sprint tracking and epic management]
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Choosing Your Agent
|
|
156
|
+
|
|
157
|
+
BMGD provides six specialized agents:
|
|
158
|
+
|
|
159
|
+
| Agent | Icon | When to Use |
|
|
160
|
+
| --------------------- | ---- | ----------------------------------------- |
|
|
161
|
+
| **Game Designer** | 🎲 | Brainstorming, Game Brief, GDD, Narrative |
|
|
162
|
+
| **Game Architect** | 🏛️ | Architecture, technical decisions |
|
|
163
|
+
| **Game Developer** | 🕹️ | Implementation, code reviews |
|
|
164
|
+
| **Game Scrum Master** | 🎯 | Sprint planning, story management |
|
|
165
|
+
| **Game QA** | 🧪 | Test framework, test design, automation |
|
|
166
|
+
| **Game Solo Dev** | 🎮 | Quick prototyping, indie development |
|
|
167
|
+
|
|
168
|
+
### Typical Flow
|
|
169
|
+
|
|
170
|
+
1. **Game Designer** (Phases 1-2): Brainstorm → Brief → GDD → Narrative
|
|
171
|
+
2. **Game Architect** (Phase 3): Architecture
|
|
172
|
+
3. **Game Scrum Master** (Phase 4): Sprint planning, story creation
|
|
173
|
+
4. **Game Developer** (Phase 4): Implementation, code reviews
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
## Quick Command Reference
|
|
178
|
+
|
|
179
|
+
### Phase 1: Preproduction
|
|
180
|
+
|
|
181
|
+
- `brainstorm-game` - Ideation session
|
|
182
|
+
- `create-game-brief` - Create Game Brief
|
|
183
|
+
|
|
184
|
+
### Phase 2: Design
|
|
185
|
+
|
|
186
|
+
- `create-gdd` - Create GDD
|
|
187
|
+
- `narrative` - Create Narrative Design
|
|
188
|
+
|
|
189
|
+
### Phase 3: Technical
|
|
190
|
+
|
|
191
|
+
- `create-architecture` - Create Architecture
|
|
192
|
+
|
|
193
|
+
### Phase 4: Production
|
|
194
|
+
|
|
195
|
+
- `sprint-planning` - Plan sprints
|
|
196
|
+
- `sprint-status` - View progress and recommendations
|
|
197
|
+
- `create-story` - Create story
|
|
198
|
+
- `dev-story` - Implement story
|
|
199
|
+
- `code-review` - Review code
|
|
200
|
+
- `retrospective` - Team retrospective
|
|
201
|
+
- `correct-course` - Handle sprint changes
|
|
202
|
+
|
|
203
|
+
### Quick-Flow (Fast-Track)
|
|
204
|
+
|
|
205
|
+
- `quick-prototype` - Rapid prototyping (IDE only)
|
|
206
|
+
- `quick-dev` - Flexible development (IDE only)
|
|
207
|
+
|
|
208
|
+
### Utility
|
|
209
|
+
|
|
210
|
+
- `workflow-status` - Check project status
|
|
211
|
+
- `party-mode` - Multi-agent collaboration
|
|
212
|
+
- `advanced-elicitation` - Deep exploration
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## Tips for Success
|
|
217
|
+
|
|
218
|
+
### 1. Start Small
|
|
219
|
+
|
|
220
|
+
Begin with a simple game concept. You can always expand later.
|
|
221
|
+
|
|
222
|
+
### 2. Use Game Type Templates
|
|
223
|
+
|
|
224
|
+
When creating your GDD, BMGD offers 24 game type templates that provide genre-specific sections.
|
|
225
|
+
|
|
226
|
+
### 3. Iterate
|
|
227
|
+
|
|
228
|
+
Documents are living artifacts. Return to update them as your vision evolves.
|
|
229
|
+
|
|
230
|
+
### 4. Trust the Process
|
|
231
|
+
|
|
232
|
+
Each workflow builds on previous outputs. The Game Brief informs the GDD, which informs the Architecture, which informs implementation.
|
|
233
|
+
|
|
234
|
+
### 5. Collaborate with Agents
|
|
235
|
+
|
|
236
|
+
Use `party-mode` to get perspectives from multiple agents when facing complex decisions.
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Next Steps
|
|
241
|
+
|
|
242
|
+
- **[Agents Guide](./agents-guide.md)** - Learn about each agent's capabilities
|
|
243
|
+
- **[Workflows Guide](./workflows-guide.md)** - Detailed workflow reference
|
|
244
|
+
- **[Quick-Flow Guide](./quick-flow-guide.md)** - Rapid prototyping and development
|
|
245
|
+
- **[Game Types Guide](./game-types-guide.md)** - Understand game type templates
|
|
246
|
+
- **[Glossary](./glossary.md)** - Game development terminology
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
250
|
+
**Ready to start?** Chat with the **Game Designer** agent and say `brainstorm-game` or `create-game-brief`!
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
# BMGD Troubleshooting
|
|
2
|
+
|
|
3
|
+
Common issues and solutions when using BMGD workflows.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Installation Issues
|
|
8
|
+
|
|
9
|
+
### BMGD module not appearing
|
|
10
|
+
|
|
11
|
+
**Symptom:** BMGD agents and workflows are not available after installation.
|
|
12
|
+
|
|
13
|
+
**Solutions:**
|
|
14
|
+
|
|
15
|
+
1. Verify BMGD was selected during installation
|
|
16
|
+
2. Check `_bmad/bmgd/` folder exists in your project
|
|
17
|
+
3. Re-run installer with `--add-module bmgd`
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
### Config file missing
|
|
22
|
+
|
|
23
|
+
**Symptom:** Workflows fail with "config not found" errors.
|
|
24
|
+
|
|
25
|
+
**Solution:**
|
|
26
|
+
Check for `_bmad/bmgd/config.yaml` in your project. If missing, create it:
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
# BMGD Configuration
|
|
30
|
+
output_folder: '{project-root}/docs/game-design'
|
|
31
|
+
user_name: 'Your Name'
|
|
32
|
+
communication_language: 'English'
|
|
33
|
+
document_output_language: 'English'
|
|
34
|
+
game_dev_experience: 'intermediate'
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Workflow Issues
|
|
40
|
+
|
|
41
|
+
### "GDD not found" in Narrative workflow
|
|
42
|
+
|
|
43
|
+
**Symptom:** Narrative workflow can't find the GDD.
|
|
44
|
+
|
|
45
|
+
**Solutions:**
|
|
46
|
+
|
|
47
|
+
1. Ensure GDD exists in `{output_folder}`
|
|
48
|
+
2. Check GDD filename contains "gdd" (e.g., `game-gdd.md`, `my-gdd.md`)
|
|
49
|
+
3. If using sharded GDD, verify `{output_folder}/gdd/index.md` exists
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
### Workflow state not persisting
|
|
54
|
+
|
|
55
|
+
**Symptom:** Returning to a workflow starts from the beginning.
|
|
56
|
+
|
|
57
|
+
**Solutions:**
|
|
58
|
+
|
|
59
|
+
1. Check the output document's frontmatter for `stepsCompleted` array
|
|
60
|
+
2. Ensure document was saved before ending session
|
|
61
|
+
3. Use "Continue existing" option when re-entering workflow
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
### Wrong game type sections in GDD
|
|
66
|
+
|
|
67
|
+
**Symptom:** GDD includes irrelevant sections for your game type.
|
|
68
|
+
|
|
69
|
+
**Solutions:**
|
|
70
|
+
|
|
71
|
+
1. Review game type selection at Step 7 of GDD workflow
|
|
72
|
+
2. You can select multiple types for hybrid games
|
|
73
|
+
3. Irrelevant sections can be marked N/A or removed
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Agent Issues
|
|
78
|
+
|
|
79
|
+
### Agent not recognizing commands
|
|
80
|
+
|
|
81
|
+
**Symptom:** Typing a command like `create-gdd` doesn't trigger the workflow.
|
|
82
|
+
|
|
83
|
+
**Solutions:**
|
|
84
|
+
|
|
85
|
+
1. Ensure you're chatting with the correct agent (Game Designer for GDD)
|
|
86
|
+
2. Check exact command spelling (case-sensitive)
|
|
87
|
+
3. Try `workflow-status` to verify agent is loaded correctly
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
### Agent using wrong persona
|
|
92
|
+
|
|
93
|
+
**Symptom:** Agent responses don't match expected personality.
|
|
94
|
+
|
|
95
|
+
**Solutions:**
|
|
96
|
+
|
|
97
|
+
1. Verify correct agent file is loaded
|
|
98
|
+
2. Check `_bmad/bmgd/agents/` for agent definitions
|
|
99
|
+
3. Start a fresh chat session with the correct agent
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Document Issues
|
|
104
|
+
|
|
105
|
+
### Document too large for context
|
|
106
|
+
|
|
107
|
+
**Symptom:** AI can't process the entire GDD or narrative document.
|
|
108
|
+
|
|
109
|
+
**Solutions:**
|
|
110
|
+
|
|
111
|
+
1. Use sharded document structure (index.md + section files)
|
|
112
|
+
2. Request specific sections rather than full document
|
|
113
|
+
3. GDD workflow supports automatic sharding for large documents
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
### Template placeholders not replaced
|
|
118
|
+
|
|
119
|
+
**Symptom:** Output contains `{{placeholder}}` text.
|
|
120
|
+
|
|
121
|
+
**Solutions:**
|
|
122
|
+
|
|
123
|
+
1. Workflow may have been interrupted before completion
|
|
124
|
+
2. Re-run the specific step that generates that section
|
|
125
|
+
3. Manually edit the document to fill in missing values
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
### Frontmatter parsing errors
|
|
130
|
+
|
|
131
|
+
**Symptom:** YAML errors when loading documents.
|
|
132
|
+
|
|
133
|
+
**Solutions:**
|
|
134
|
+
|
|
135
|
+
1. Validate YAML syntax (proper indentation, quotes around special characters)
|
|
136
|
+
2. Check for tabs vs spaces (YAML requires spaces)
|
|
137
|
+
3. Ensure frontmatter is bounded by `---` markers
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## Phase 4 (Production) Issues
|
|
142
|
+
|
|
143
|
+
### Sprint status not updating
|
|
144
|
+
|
|
145
|
+
**Symptom:** Story status changes don't reflect in sprint-status.yaml.
|
|
146
|
+
|
|
147
|
+
**Solutions:**
|
|
148
|
+
|
|
149
|
+
1. Run `sprint-planning` to refresh status
|
|
150
|
+
2. Check file permissions on sprint-status.yaml
|
|
151
|
+
3. Verify workflow-install files exist in `_bmad/bmgd/workflows/4-production/`
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
### Story context missing code references
|
|
156
|
+
|
|
157
|
+
**Symptom:** Generated story context doesn't include relevant code.
|
|
158
|
+
|
|
159
|
+
**Solutions:**
|
|
160
|
+
|
|
161
|
+
1. Ensure project-context.md exists and is current
|
|
162
|
+
2. Check that architecture document references correct file paths
|
|
163
|
+
3. Story may need more specific file references in acceptance criteria
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
### Code review not finding issues
|
|
168
|
+
|
|
169
|
+
**Symptom:** Code review passes but bugs exist.
|
|
170
|
+
|
|
171
|
+
**Solutions:**
|
|
172
|
+
|
|
173
|
+
1. Code review is AI-assisted, not comprehensive testing
|
|
174
|
+
2. Always run actual tests before marking story done
|
|
175
|
+
3. Consider manual review for critical code paths
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## Performance Issues
|
|
180
|
+
|
|
181
|
+
### Workflows running slowly
|
|
182
|
+
|
|
183
|
+
**Symptom:** Long wait times between workflow steps.
|
|
184
|
+
|
|
185
|
+
**Solutions:**
|
|
186
|
+
|
|
187
|
+
1. Use IDE-based workflows (faster than web)
|
|
188
|
+
2. Keep documents concise (avoid unnecessary detail)
|
|
189
|
+
3. Use sharded documents for large projects
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
### Context limit reached mid-workflow
|
|
194
|
+
|
|
195
|
+
**Symptom:** Workflow stops or loses context partway through.
|
|
196
|
+
|
|
197
|
+
**Solutions:**
|
|
198
|
+
|
|
199
|
+
1. Save progress frequently (workflows auto-save on Continue)
|
|
200
|
+
2. Break complex sections into multiple sessions
|
|
201
|
+
3. Use step-file architecture (workflows resume from last step)
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
## Common Error Messages
|
|
206
|
+
|
|
207
|
+
### "Input file not found"
|
|
208
|
+
|
|
209
|
+
**Cause:** Workflow requires a document that doesn't exist.
|
|
210
|
+
|
|
211
|
+
**Fix:** Complete prerequisite workflow first (e.g., Game Brief before GDD).
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
### "Invalid game type"
|
|
216
|
+
|
|
217
|
+
**Cause:** Selected game type not in supported list.
|
|
218
|
+
|
|
219
|
+
**Fix:** Check `game-types.csv` for valid type IDs.
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
### "Validation failed"
|
|
224
|
+
|
|
225
|
+
**Cause:** Document doesn't meet checklist requirements.
|
|
226
|
+
|
|
227
|
+
**Fix:** Review the validation output and address flagged items.
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## Getting Help
|
|
232
|
+
|
|
233
|
+
### Community Support
|
|
234
|
+
|
|
235
|
+
- **[Discord Community](https://discord.gg/gk8jAdXWmj)** - Real-time help from the community
|
|
236
|
+
- **[GitHub Issues](https://github.com/bmad-code-org/BMAD-METHOD/issues)** - Report bugs or request features
|
|
237
|
+
|
|
238
|
+
### Self-Help
|
|
239
|
+
|
|
240
|
+
1. Check `workflow-status` to understand current state
|
|
241
|
+
2. Review workflow markdown files for expected behavior
|
|
242
|
+
3. Look at completed example documents in the module
|
|
243
|
+
|
|
244
|
+
### Reporting Issues
|
|
245
|
+
|
|
246
|
+
When reporting issues, include:
|
|
247
|
+
|
|
248
|
+
1. Which workflow and step
|
|
249
|
+
2. Error message (if any)
|
|
250
|
+
3. Relevant document frontmatter
|
|
251
|
+
4. Steps to reproduce
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## Next Steps
|
|
256
|
+
|
|
257
|
+
- **[Quick Start Guide](./quick-start.md)** - Getting started
|
|
258
|
+
- **[Workflows Guide](./workflows-guide.md)** - Workflow reference
|
|
259
|
+
- **[Glossary](./glossary.md)** - Terminology
|
|
Binary file
|