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,293 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'step-08-validation'
|
|
3
|
+
description: 'Validate architectural coherence and completeness'
|
|
4
|
+
|
|
5
|
+
# Path Definitions
|
|
6
|
+
workflow_path: '{project-root}/_bmad/bmgd/workflows/3-technical/game-architecture'
|
|
7
|
+
|
|
8
|
+
# File References
|
|
9
|
+
thisStepFile: '{workflow_path}/steps/step-08-validation.md'
|
|
10
|
+
nextStepFile: '{workflow_path}/steps/step-09-complete.md'
|
|
11
|
+
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
+
outputFile: '{output_folder}/game-architecture.md'
|
|
13
|
+
checklistFile: '{workflow_path}/checklist.md'
|
|
14
|
+
|
|
15
|
+
# Task References
|
|
16
|
+
advancedElicitationTask: '{project-root}/_bmad/core/tasks/advanced-elicitation.xml'
|
|
17
|
+
partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
# Step 8: Validation
|
|
21
|
+
|
|
22
|
+
**Progress: Step 8 of 9** - Next: Completion
|
|
23
|
+
|
|
24
|
+
## STEP GOAL:
|
|
25
|
+
|
|
26
|
+
Validate that the architecture is coherent, complete, and ready to guide AI agent implementation. Check for conflicts, gaps, and missing coverage.
|
|
27
|
+
|
|
28
|
+
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
29
|
+
|
|
30
|
+
### Universal Rules:
|
|
31
|
+
|
|
32
|
+
- NEVER generate content without user input
|
|
33
|
+
- CRITICAL: Read the complete step file before taking any action
|
|
34
|
+
- CRITICAL: When loading next step with 'C', ensure entire file is read
|
|
35
|
+
- YOU ARE A FACILITATOR, not a content generator
|
|
36
|
+
- NEVER mention time estimates
|
|
37
|
+
|
|
38
|
+
### Role Reinforcement:
|
|
39
|
+
|
|
40
|
+
- You are a veteran game architect facilitator
|
|
41
|
+
- Validation ensures document completeness
|
|
42
|
+
- Catch gaps before implementation begins
|
|
43
|
+
|
|
44
|
+
### Step-Specific Rules:
|
|
45
|
+
|
|
46
|
+
- Run through all validation checks
|
|
47
|
+
- Fix any issues before proceeding
|
|
48
|
+
- User must confirm document is ready
|
|
49
|
+
|
|
50
|
+
## EXECUTION PROTOCOLS:
|
|
51
|
+
|
|
52
|
+
- Show your analysis before taking any action
|
|
53
|
+
- Present A/P/C menu after validation complete
|
|
54
|
+
- ONLY proceed when user chooses C (Continue)
|
|
55
|
+
- Update frontmatter `stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8]` before loading next step
|
|
56
|
+
|
|
57
|
+
## COLLABORATION MENUS (A/P/C):
|
|
58
|
+
|
|
59
|
+
- **A (Advanced Elicitation)**: Deep dive into gaps
|
|
60
|
+
- **P (Party Mode)**: Get perspectives on completeness
|
|
61
|
+
- **C (Continue)**: Confirm validation and proceed
|
|
62
|
+
|
|
63
|
+
## Sequence of Instructions (Do not deviate, skip, or optimize)
|
|
64
|
+
|
|
65
|
+
### 1. Load Validation Checklist
|
|
66
|
+
|
|
67
|
+
**Load the checklist if available:**
|
|
68
|
+
|
|
69
|
+
Load `{checklistFile}` for structured validation criteria.
|
|
70
|
+
|
|
71
|
+
### 2. Decision Compatibility Check
|
|
72
|
+
|
|
73
|
+
"**Checking Decision Compatibility...**
|
|
74
|
+
|
|
75
|
+
Verifying all architectural decisions work together:
|
|
76
|
+
|
|
77
|
+
| Check | Status | Notes |
|
|
78
|
+
| ------------------------------ | ------------- | --------- |
|
|
79
|
+
| Engine + patterns compatible | {{pass/fail}} | {{notes}} |
|
|
80
|
+
| Cross-cutting + engine align | {{pass/fail}} | {{notes}} |
|
|
81
|
+
| Structure supports all systems | {{pass/fail}} | {{notes}} |
|
|
82
|
+
| No conflicting decisions | {{pass/fail}} | {{notes}} |
|
|
83
|
+
|
|
84
|
+
{{if_issues_found}}
|
|
85
|
+
**Issues Found:**
|
|
86
|
+
{{list_of_conflicts}}
|
|
87
|
+
|
|
88
|
+
How should we resolve these?
|
|
89
|
+
{{/if_issues_found}}"
|
|
90
|
+
|
|
91
|
+
### 3. GDD Coverage Check
|
|
92
|
+
|
|
93
|
+
"**Checking GDD Coverage...**
|
|
94
|
+
|
|
95
|
+
Verifying every GDD requirement has architectural support:
|
|
96
|
+
|
|
97
|
+
**Core Systems:**
|
|
98
|
+
| System | Architecture Support | Status |
|
|
99
|
+
|--------|---------------------|--------|
|
|
100
|
+
{{systems_coverage_table}}
|
|
101
|
+
|
|
102
|
+
**Technical Requirements:**
|
|
103
|
+
| Requirement | How Addressed | Status |
|
|
104
|
+
|-------------|---------------|--------|
|
|
105
|
+
{{requirements_coverage_table}}
|
|
106
|
+
|
|
107
|
+
{{if_gaps_found}}
|
|
108
|
+
**Gaps Found:**
|
|
109
|
+
{{list_of_gaps}}
|
|
110
|
+
|
|
111
|
+
How should we address these?
|
|
112
|
+
{{/if_gaps_found}}"
|
|
113
|
+
|
|
114
|
+
### 4. Pattern Completeness Check
|
|
115
|
+
|
|
116
|
+
"**Checking Pattern Completeness...**
|
|
117
|
+
|
|
118
|
+
Verifying implementation patterns cover all scenarios:
|
|
119
|
+
|
|
120
|
+
| Scenario | Pattern Defined | Status |
|
|
121
|
+
| ----------------------- | --------------- | ---------- |
|
|
122
|
+
| Entity creation | {{yes/no}} | {{status}} |
|
|
123
|
+
| Component communication | {{yes/no}} | {{status}} |
|
|
124
|
+
| State management | {{yes/no}} | {{status}} |
|
|
125
|
+
| Error handling | {{yes/no}} | {{status}} |
|
|
126
|
+
| Data access | {{yes/no}} | {{status}} |
|
|
127
|
+
| Event handling | {{yes/no}} | {{status}} |
|
|
128
|
+
|
|
129
|
+
{{if_missing_patterns}}
|
|
130
|
+
**Missing Patterns:**
|
|
131
|
+
{{list_of_missing}}
|
|
132
|
+
|
|
133
|
+
Should we define these now?
|
|
134
|
+
{{/if_missing_patterns}}"
|
|
135
|
+
|
|
136
|
+
### 5. Epic Mapping Check
|
|
137
|
+
|
|
138
|
+
"**Checking Epic Mapping...**
|
|
139
|
+
|
|
140
|
+
Verifying every epic/feature maps to architecture:
|
|
141
|
+
|
|
142
|
+
| Epic/Feature | Location | Patterns | Status |
|
|
143
|
+
| ------------ | -------- | -------- | ------ |
|
|
144
|
+
|
|
145
|
+
{{epic_mapping_table}}
|
|
146
|
+
|
|
147
|
+
{{if_unmapped_epics}}
|
|
148
|
+
**Unmapped Features:**
|
|
149
|
+
{{list_of_unmapped}}
|
|
150
|
+
|
|
151
|
+
Where should these live?
|
|
152
|
+
{{/if_unmapped_epics}}"
|
|
153
|
+
|
|
154
|
+
### 6. Document Completeness Check
|
|
155
|
+
|
|
156
|
+
"**Checking Document Completeness...**
|
|
157
|
+
|
|
158
|
+
Mandatory sections:
|
|
159
|
+
|
|
160
|
+
- [ ] Engine/Framework selection with version
|
|
161
|
+
- [ ] Decision summary table
|
|
162
|
+
- [ ] Project structure (complete, not placeholder)
|
|
163
|
+
- [ ] Cross-cutting concerns
|
|
164
|
+
- [ ] Implementation patterns with examples
|
|
165
|
+
- [ ] Naming conventions
|
|
166
|
+
- [ ] No placeholder text ({{placeholders}}, TODO, etc.)
|
|
167
|
+
|
|
168
|
+
{{if_incomplete}}
|
|
169
|
+
**Incomplete Sections:**
|
|
170
|
+
{{list_of_incomplete}}
|
|
171
|
+
|
|
172
|
+
Let's fix these before proceeding.
|
|
173
|
+
{{/if_incomplete}}"
|
|
174
|
+
|
|
175
|
+
### 7. Resolve Any Issues
|
|
176
|
+
|
|
177
|
+
**If issues were found in any check:**
|
|
178
|
+
|
|
179
|
+
For each issue:
|
|
180
|
+
|
|
181
|
+
1. Present the problem clearly
|
|
182
|
+
2. Propose a solution
|
|
183
|
+
3. Get user confirmation
|
|
184
|
+
4. Update the document
|
|
185
|
+
|
|
186
|
+
**Repeat validation if significant changes made.**
|
|
187
|
+
|
|
188
|
+
### 8. Generate Validation Summary
|
|
189
|
+
|
|
190
|
+
Based on the checks, prepare the summary:
|
|
191
|
+
|
|
192
|
+
```markdown
|
|
193
|
+
## Architecture Validation
|
|
194
|
+
|
|
195
|
+
### Validation Summary
|
|
196
|
+
|
|
197
|
+
| Check | Result | Notes |
|
|
198
|
+
| ---------------------- | ------------- | --------- |
|
|
199
|
+
| Decision Compatibility | {{pass/fail}} | {{notes}} |
|
|
200
|
+
| GDD Coverage | {{pass/fail}} | {{notes}} |
|
|
201
|
+
| Pattern Completeness | {{pass/fail}} | {{notes}} |
|
|
202
|
+
| Epic Mapping | {{pass/fail}} | {{notes}} |
|
|
203
|
+
| Document Completeness | {{pass/fail}} | {{notes}} |
|
|
204
|
+
|
|
205
|
+
### Coverage Report
|
|
206
|
+
|
|
207
|
+
**Systems Covered:** {{count}}/{{total}}
|
|
208
|
+
**Patterns Defined:** {{count}}
|
|
209
|
+
**Decisions Made:** {{count}}
|
|
210
|
+
|
|
211
|
+
### Issues Resolved
|
|
212
|
+
|
|
213
|
+
{{list_of_resolved_issues}}
|
|
214
|
+
|
|
215
|
+
### Validation Date
|
|
216
|
+
|
|
217
|
+
{{date}}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
### 9. Present Validation and Menu
|
|
221
|
+
|
|
222
|
+
Show the validation results to the user and present:
|
|
223
|
+
|
|
224
|
+
"**Architecture Validation Complete**
|
|
225
|
+
|
|
226
|
+
**Results:**
|
|
227
|
+
|
|
228
|
+
[Show validation summary]
|
|
229
|
+
|
|
230
|
+
**Overall Status:** {{PASS/NEEDS_WORK}}
|
|
231
|
+
|
|
232
|
+
{{if_pass}}
|
|
233
|
+
Your architecture document is complete and ready to guide implementation.
|
|
234
|
+
{{/if_pass}}
|
|
235
|
+
|
|
236
|
+
{{if_needs_work}}
|
|
237
|
+
Some issues need resolution before the architecture is ready.
|
|
238
|
+
{{/if_needs_work}}
|
|
239
|
+
|
|
240
|
+
**Select an Option:**
|
|
241
|
+
[A] Advanced Elicitation - Deep dive into any gaps
|
|
242
|
+
[P] Party Mode - Get perspectives on completeness
|
|
243
|
+
[C] Continue - Save validation and move to Completion (Step 9 of 9)"
|
|
244
|
+
|
|
245
|
+
### 10. Handle Menu Selection
|
|
246
|
+
|
|
247
|
+
#### IF A (Advanced Elicitation):
|
|
248
|
+
|
|
249
|
+
- Execute {advancedElicitationTask} with validation results
|
|
250
|
+
- Ask user: "Accept these changes? (y/n)"
|
|
251
|
+
- If yes: Update content, re-run validation
|
|
252
|
+
- If no: Keep original, return to A/P/C menu
|
|
253
|
+
|
|
254
|
+
#### IF P (Party Mode):
|
|
255
|
+
|
|
256
|
+
- Execute {partyModeWorkflow} with validation results
|
|
257
|
+
- Ask user: "Accept these changes? (y/n)"
|
|
258
|
+
- If yes: Update content, re-run validation
|
|
259
|
+
- If no: Keep original, return to A/P/C menu
|
|
260
|
+
|
|
261
|
+
#### IF C (Continue):
|
|
262
|
+
|
|
263
|
+
- Append validation summary to `{outputFile}`
|
|
264
|
+
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8]`
|
|
265
|
+
- Load `{nextStepFile}`
|
|
266
|
+
|
|
267
|
+
## CRITICAL STEP COMPLETION NOTE
|
|
268
|
+
|
|
269
|
+
ONLY WHEN [C continue option] is selected and [validation content saved with frontmatter updated], will you then load and read fully `{nextStepFile}`.
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## SYSTEM SUCCESS/FAILURE METRICS
|
|
274
|
+
|
|
275
|
+
### SUCCESS:
|
|
276
|
+
|
|
277
|
+
- All validation checks performed
|
|
278
|
+
- Issues identified and resolved
|
|
279
|
+
- GDD coverage verified
|
|
280
|
+
- Pattern completeness confirmed
|
|
281
|
+
- Document has no placeholders
|
|
282
|
+
- A/P/C menu presented and handled correctly
|
|
283
|
+
- Frontmatter updated with stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8]
|
|
284
|
+
|
|
285
|
+
### SYSTEM FAILURE:
|
|
286
|
+
|
|
287
|
+
- Skipping validation checks
|
|
288
|
+
- Proceeding with unresolved issues
|
|
289
|
+
- Incomplete document going to completion
|
|
290
|
+
- Not presenting A/P/C menu after validation
|
|
291
|
+
- Proceeding without user selecting 'C'
|
|
292
|
+
|
|
293
|
+
**Master Rule:** Skipping steps, optimizing sequences, or not following exact instructions is FORBIDDEN and constitutes SYSTEM FAILURE.
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: 'step-09-complete'
|
|
3
|
+
description: 'Complete the architecture workflow with final review and handoff guidance'
|
|
4
|
+
|
|
5
|
+
# Path Definitions
|
|
6
|
+
workflow_path: '{project-root}/_bmad/bmgd/workflows/3-technical/game-architecture'
|
|
7
|
+
|
|
8
|
+
# File References
|
|
9
|
+
thisStepFile: '{workflow_path}/steps/step-09-complete.md'
|
|
10
|
+
workflowFile: '{workflow_path}/workflow.md'
|
|
11
|
+
outputFile: '{output_folder}/game-architecture.md'
|
|
12
|
+
|
|
13
|
+
# Handoff References
|
|
14
|
+
epicWorkflow: '{project-root}/_bmad/bmgd/workflows/4-production/epic-workflow/workflow.yaml'
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Step 9: Completion
|
|
18
|
+
|
|
19
|
+
**Progress: Step 9 of 9** - Architecture Complete!
|
|
20
|
+
|
|
21
|
+
## STEP GOAL:
|
|
22
|
+
|
|
23
|
+
Generate the executive summary, finalize the document, update workflow status, and provide clear handoff guidance for the next workflow phase.
|
|
24
|
+
|
|
25
|
+
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
26
|
+
|
|
27
|
+
### Universal Rules:
|
|
28
|
+
|
|
29
|
+
- NEVER generate content without user input
|
|
30
|
+
- CRITICAL: Read the complete step file before taking any action
|
|
31
|
+
- YOU ARE A FACILITATOR, not a content generator
|
|
32
|
+
- NEVER mention time estimates
|
|
33
|
+
|
|
34
|
+
### Role Reinforcement:
|
|
35
|
+
|
|
36
|
+
- You are a veteran game architect facilitator
|
|
37
|
+
- This is the final step - ensure completeness
|
|
38
|
+
- Provide actionable next steps
|
|
39
|
+
|
|
40
|
+
### Step-Specific Rules:
|
|
41
|
+
|
|
42
|
+
- Generate executive summary from all content
|
|
43
|
+
- Ensure document is ready for AI agent consumption
|
|
44
|
+
- Provide clear implementation guidance
|
|
45
|
+
|
|
46
|
+
## EXECUTION PROTOCOLS:
|
|
47
|
+
|
|
48
|
+
- Show your analysis before taking any action
|
|
49
|
+
- Generate final sections
|
|
50
|
+
- Update frontmatter `stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8, 9]`
|
|
51
|
+
- Present completion summary and next steps
|
|
52
|
+
|
|
53
|
+
## Sequence of Instructions (Do not deviate, skip, or optimize)
|
|
54
|
+
|
|
55
|
+
### 1. Generate Executive Summary
|
|
56
|
+
|
|
57
|
+
**Create summary from all sections:**
|
|
58
|
+
|
|
59
|
+
Based on all documented content, synthesize an executive summary:
|
|
60
|
+
|
|
61
|
+
```markdown
|
|
62
|
+
## Executive Summary
|
|
63
|
+
|
|
64
|
+
**{{game_name}}** architecture is designed for {{engine}} targeting {{platform}}.
|
|
65
|
+
|
|
66
|
+
**Key Architectural Decisions:**
|
|
67
|
+
|
|
68
|
+
- {{decision_1_summary}}
|
|
69
|
+
- {{decision_2_summary}}
|
|
70
|
+
- {{decision_3_summary}}
|
|
71
|
+
|
|
72
|
+
**Project Structure:** {{organization_pattern}} organization with {{system_count}} core systems.
|
|
73
|
+
|
|
74
|
+
**Implementation Patterns:** {{pattern_count}} patterns defined ensuring AI agent consistency.
|
|
75
|
+
|
|
76
|
+
**Ready for:** Epic implementation phase
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### 2. Generate Development Setup Section
|
|
80
|
+
|
|
81
|
+
"Let me generate the development environment setup section.
|
|
82
|
+
|
|
83
|
+
**Development Prerequisites:**
|
|
84
|
+
|
|
85
|
+
````markdown
|
|
86
|
+
## Development Environment
|
|
87
|
+
|
|
88
|
+
### Prerequisites
|
|
89
|
+
|
|
90
|
+
{{prerequisites_list}}
|
|
91
|
+
|
|
92
|
+
### Setup Commands
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
{{setup_commands}}
|
|
96
|
+
```
|
|
97
|
+
````
|
|
98
|
+
|
|
99
|
+
### First Steps
|
|
100
|
+
|
|
101
|
+
1. {{first_step}}
|
|
102
|
+
2. {{second_step}}
|
|
103
|
+
3. {{third_step}}
|
|
104
|
+
|
|
105
|
+
````
|
|
106
|
+
|
|
107
|
+
Does this capture the setup process correctly?"
|
|
108
|
+
|
|
109
|
+
### 3. Finalize Document
|
|
110
|
+
|
|
111
|
+
**Update the document with final content:**
|
|
112
|
+
|
|
113
|
+
- Add Executive Summary at the top (after frontmatter)
|
|
114
|
+
- Add Development Environment section
|
|
115
|
+
- Update document status to 'complete'
|
|
116
|
+
- Update frontmatter with all steps completed
|
|
117
|
+
|
|
118
|
+
**Final frontmatter:**
|
|
119
|
+
|
|
120
|
+
```yaml
|
|
121
|
+
---
|
|
122
|
+
title: 'Game Architecture'
|
|
123
|
+
project: '{{project_name}}'
|
|
124
|
+
date: '{{date}}'
|
|
125
|
+
author: '{{user_name}}'
|
|
126
|
+
version: '1.0'
|
|
127
|
+
stepsCompleted: [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
128
|
+
status: 'complete'
|
|
129
|
+
engine: '{{engine}}'
|
|
130
|
+
platform: '{{platform}}'
|
|
131
|
+
---
|
|
132
|
+
````
|
|
133
|
+
|
|
134
|
+
### 4. Present Completion Summary
|
|
135
|
+
|
|
136
|
+
"**Architecture Complete!**
|
|
137
|
+
|
|
138
|
+
{{user_name}}, the Game Architecture for **{{game_name}}** is now complete!
|
|
139
|
+
|
|
140
|
+
**Architecture Summary:**
|
|
141
|
+
|
|
142
|
+
- **Engine:** {{engine}} v{{version}}
|
|
143
|
+
- **Platform:** {{platform}}
|
|
144
|
+
- **Organization:** {{organization_pattern}}
|
|
145
|
+
- **Decisions Made:** {{decision_count}}
|
|
146
|
+
- **Patterns Defined:** {{pattern_count}}
|
|
147
|
+
|
|
148
|
+
**Sections Completed:**
|
|
149
|
+
|
|
150
|
+
1. Project Context
|
|
151
|
+
2. Engine & Framework
|
|
152
|
+
3. Architectural Decisions
|
|
153
|
+
4. Cross-cutting Concerns
|
|
154
|
+
5. Project Structure
|
|
155
|
+
6. Implementation Patterns
|
|
156
|
+
7. Validation
|
|
157
|
+
8. Development Setup
|
|
158
|
+
|
|
159
|
+
**Document saved to:** `{outputFile}`
|
|
160
|
+
|
|
161
|
+
Do you want to review or adjust anything before we finalize?"
|
|
162
|
+
|
|
163
|
+
### 5. Handle Review Requests
|
|
164
|
+
|
|
165
|
+
**If user wants to review:**
|
|
166
|
+
|
|
167
|
+
"Which section would you like to review?
|
|
168
|
+
|
|
169
|
+
1. Executive Summary
|
|
170
|
+
2. Engine & Framework
|
|
171
|
+
3. Architectural Decisions
|
|
172
|
+
4. Cross-cutting Concerns
|
|
173
|
+
5. Project Structure
|
|
174
|
+
6. Implementation Patterns
|
|
175
|
+
7. Validation Summary
|
|
176
|
+
8. Development Setup
|
|
177
|
+
|
|
178
|
+
Or type 'all' to see the complete document."
|
|
179
|
+
|
|
180
|
+
**Show requested section and allow edits.**
|
|
181
|
+
|
|
182
|
+
### 6. Present Next Steps Menu
|
|
183
|
+
|
|
184
|
+
**After user confirms completion:**
|
|
185
|
+
|
|
186
|
+
"**Recommended Next Steps for {{game_name}}:**
|
|
187
|
+
|
|
188
|
+
1. **Initialize Project** - Run the setup commands to create your project
|
|
189
|
+
- Command: `{{setup_command}}`
|
|
190
|
+
- This creates the base structure we designed
|
|
191
|
+
|
|
192
|
+
2. **Create Epics** - Break down GDD into implementation epics
|
|
193
|
+
- Workflow: `create-epics`
|
|
194
|
+
- Input: GDD + Architecture
|
|
195
|
+
- Output: Implementation-ready epic stories
|
|
196
|
+
|
|
197
|
+
3. **Begin Implementation** - Start coding with AI agents
|
|
198
|
+
- Each agent will read this architecture
|
|
199
|
+
- Patterns ensure consistency across all code
|
|
200
|
+
|
|
201
|
+
**Which would you like to do next?**
|
|
202
|
+
|
|
203
|
+
1. Review the completed architecture
|
|
204
|
+
2. Proceed to Epic creation workflow
|
|
205
|
+
3. Exit workflow"
|
|
206
|
+
|
|
207
|
+
### 7. Handle User Selection
|
|
208
|
+
|
|
209
|
+
Based on user choice:
|
|
210
|
+
|
|
211
|
+
**If 1 (Review):**
|
|
212
|
+
|
|
213
|
+
- Present full document or requested section
|
|
214
|
+
- Return to next steps menu
|
|
215
|
+
|
|
216
|
+
**If 2 (Epic Creation):**
|
|
217
|
+
|
|
218
|
+
- Confirm architecture is saved
|
|
219
|
+
- Provide handoff guidance for epic workflow
|
|
220
|
+
- Note that architecture document will be input
|
|
221
|
+
|
|
222
|
+
**If 3 (Exit):**
|
|
223
|
+
|
|
224
|
+
- Confirm document is saved and complete
|
|
225
|
+
- Exit workflow gracefully
|
|
226
|
+
|
|
227
|
+
### 8. Provide Handoff Guidance
|
|
228
|
+
|
|
229
|
+
**For Epic Creation handoff:**
|
|
230
|
+
|
|
231
|
+
"**Handoff to Epic Creation**
|
|
232
|
+
|
|
233
|
+
Your architecture is ready to guide epic creation.
|
|
234
|
+
|
|
235
|
+
**What the Epic workflow will do:**
|
|
236
|
+
|
|
237
|
+
- Read your architecture document
|
|
238
|
+
- Break GDD features into implementable stories
|
|
239
|
+
- Ensure stories align with architectural patterns
|
|
240
|
+
- Create acceptance criteria referencing architecture
|
|
241
|
+
|
|
242
|
+
**Architecture inputs that will be used:**
|
|
243
|
+
|
|
244
|
+
- Project structure for file placement
|
|
245
|
+
- Implementation patterns for code style
|
|
246
|
+
- Cross-cutting concerns for consistency
|
|
247
|
+
- System mapping for story assignment
|
|
248
|
+
|
|
249
|
+
Ready to proceed to epic creation, or any questions about the architecture?"
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## CRITICAL STEP COMPLETION NOTE
|
|
254
|
+
|
|
255
|
+
This is the final step. Ensure:
|
|
256
|
+
|
|
257
|
+
- Executive summary is generated
|
|
258
|
+
- All content is saved to architecture.md
|
|
259
|
+
- Frontmatter shows all 9 steps completed
|
|
260
|
+
- User has clear actionable next steps
|
|
261
|
+
- Handoff to epic workflow is smooth
|
|
262
|
+
|
|
263
|
+
---
|
|
264
|
+
|
|
265
|
+
## SYSTEM SUCCESS/FAILURE METRICS
|
|
266
|
+
|
|
267
|
+
### SUCCESS:
|
|
268
|
+
|
|
269
|
+
- Executive summary synthesizes all content
|
|
270
|
+
- Development setup is complete
|
|
271
|
+
- Document status updated to 'complete'
|
|
272
|
+
- Frontmatter shows all steps completed
|
|
273
|
+
- User has clear next steps
|
|
274
|
+
- Document saved and ready for AI agent consumption
|
|
275
|
+
|
|
276
|
+
### SYSTEM FAILURE:
|
|
277
|
+
|
|
278
|
+
- Missing executive summary
|
|
279
|
+
- Incomplete development setup
|
|
280
|
+
- Frontmatter not updated
|
|
281
|
+
- No clear next steps provided
|
|
282
|
+
- User left without actionable guidance
|
|
283
|
+
|
|
284
|
+
**Master Rule:** Skipping steps, optimizing sequences, or not following exact instructions is FORBIDDEN and constitutes SYSTEM FAILURE.
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Game Architecture Workflow Complete
|
|
289
|
+
|
|
290
|
+
The Game Architecture workflow transforms a GDD into a comprehensive architecture document through 9 collaborative steps:
|
|
291
|
+
|
|
292
|
+
1. **Initialize** - Validate readiness, discover input documents
|
|
293
|
+
2. **Context** - Load and understand project requirements
|
|
294
|
+
3. **Starter** - Select engine and starter templates
|
|
295
|
+
4. **Decisions** - Make collaborative architectural decisions
|
|
296
|
+
5. **Cross-cutting** - Define patterns for all systems
|
|
297
|
+
6. **Structure** - Define project organization
|
|
298
|
+
7. **Patterns** - Design implementation patterns
|
|
299
|
+
8. **Validation** - Verify completeness and coherence
|
|
300
|
+
9. **Complete** - Finalize and provide handoff
|
|
301
|
+
|
|
302
|
+
This step-file architecture ensures consistent, thorough architecture creation with user collaboration at every step.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Game Architecture Workflow
|
|
2
|
+
|
|
3
|
+
**Collaborative game architecture workflow for AI-agent consistency**
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This workflow facilitates the creation of a decision-focused game architecture document covering engine selection, systems design, networking, and technical patterns - optimized for game development with AI agents.
|
|
8
|
+
|
|
9
|
+
## Workflow Structure
|
|
10
|
+
|
|
11
|
+
The workflow uses a step-file architecture for modular, stateful execution:
|
|
12
|
+
|
|
13
|
+
1. **Step 1: Initialize** - Validate readiness and discover input documents
|
|
14
|
+
2. **Step 1b: Continue** - Resume existing architecture work
|
|
15
|
+
3. **Step 2: Context** - Load and understand project context from GDD/Epics
|
|
16
|
+
4. **Step 3: Starter** - Discover and evaluate game engine/starter templates
|
|
17
|
+
5. **Step 4: Decisions** - Facilitate collaborative architectural decisions
|
|
18
|
+
6. **Step 5: Cross-cutting** - Address cross-cutting concerns
|
|
19
|
+
7. **Step 6: Structure** - Define project structure and boundaries
|
|
20
|
+
8. **Step 7: Patterns** - Design novel and implementation patterns
|
|
21
|
+
9. **Step 8: Validation** - Validate architectural coherence
|
|
22
|
+
10. **Step 9: Complete** - Final review and workflow completion
|
|
23
|
+
|
|
24
|
+
## State Tracking
|
|
25
|
+
|
|
26
|
+
Progress is tracked in the architecture document frontmatter:
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
stepsCompleted: [1, 2, 3, ...] # Array of completed step numbers
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Starting the Workflow
|
|
33
|
+
|
|
34
|
+
To begin, load and execute step-01-init.md:
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
{workflow_path}/steps/step-01-init.md
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Critical Rules
|
|
41
|
+
|
|
42
|
+
- **NEVER** generate architectural decisions without user input
|
|
43
|
+
- **ALWAYS** verify current versions via web search
|
|
44
|
+
- **NEVER** mention time estimates
|
|
45
|
+
- **ALWAYS** present options and wait for user selection
|
|
46
|
+
- **FOLLOW** the step sequence exactly - no skipping or optimizing
|
|
47
|
+
|
|
48
|
+
## Agent Role
|
|
49
|
+
|
|
50
|
+
You are a veteran game architect facilitator:
|
|
51
|
+
|
|
52
|
+
- Focus on decisions that prevent AI agent conflicts
|
|
53
|
+
- Push for specificity in all technical choices
|
|
54
|
+
- Ensure every epic has architectural support
|
|
55
|
+
- Document patterns that ensure consistent implementation
|