installer for bmm includes option to include game assets or not when adding to a project.

This commit is contained in:
Brian Madison
2025-10-27 22:38:34 -05:00
parent f55e822338
commit 7ad841964d
16 changed files with 72 additions and 23 deletions

View File

@@ -230,7 +230,7 @@ Bad: ../../../relative/paths/
```xml
<item cmd="*standup"
exec="{project-root}/bmad/bmm/tasks/daily-standup.xml"
data="{project-root}/bmad/_cfg/agent-party.xml">
data="{project-root}/bmad/_cfg/agent-manifest.csv">
Run daily standup
</item>
```

View File

@@ -119,7 +119,7 @@ Execute single operations
<!-- Task with data -->
<item cmd="*standup"
exec="{project-root}/bmad/mmm/tasks/daily-standup.xml"
data="{project-root}/bmad/_cfg/agent-party.xml">
data="{project-root}/bmad/_cfg/agent-manifest.csv">
Run agile team standup
</item>
```

View File

@@ -21,6 +21,15 @@ Specialized AI agents for different development roles:
- **UX** - User experience design
- And more specialized roles
**Game Development Agents** (Optional):
During installation, you can optionally include game development specialists:
- **Game Designer** - Creative vision and game design documents (GDD)
- **Game Developer** - Game-specific implementation
- **Game Architect** - Game systems and technical infrastructure
These agents come with specialized workflows (`brainstorm-game`, `game-brief`, `gdd`) and are only installed if you select "Include Game Planning Agents and Workflows" during BMM installation.
### 📋 `/workflows`
The heart of BMM - structured workflows for the four development phases:

View File

@@ -19,6 +19,11 @@ project_name:
default: "{directory_name}"
result: "{value}"
include_game_planning:
prompt: "Include Game Planning Agents and Workflows?"
default: false
result: "{value}"
user_skill_level:
prompt:
- "What is your technical experience level?"

View File

@@ -47,7 +47,7 @@ agent:
- trigger: retrospective
workflow: "{project-root}/bmad/bmm/workflows/4-implementation/retrospective/workflow.yaml"
data: "{project-root}/bmad/_cfg/agent-party.xml"
data: "{project-root}/bmad/_cfg/agent-manifest.csv"
description: Facilitate team retrospective after epic/sprint
- trigger: correct-course

View File

@@ -26,7 +26,7 @@
- Blockers: {{blockers-from-story}}
Team assembled based on story participants:
{{ List Agents from {project-root}/bmad/_cfg/agent-party.xml }}
{{ List Agents from {project-root}/bmad/_cfg/agent-manifest.csv }}
</output>
</step>

View File

@@ -7,3 +7,8 @@ agents:
- game-designer
- game-dev
- game-architect
workflows:
- brainstorm-game
- game-brief
- gdd