brainstorming moved to core workflows

This commit is contained in:
Brian Madison
2025-10-04 19:01:37 -05:00
parent e60d5cc42d
commit b6d8823d51
31 changed files with 108394 additions and 19 deletions

View File

@@ -24,7 +24,7 @@
<step n="2" goal="Invoke CIS brainstorming with game context">
<action>Execute the CIS brainstorming workflow with game context and additional techniques</action>
<invoke-workflow path="{cis_brainstorming}" data="{game_context}" techniques="{game_brain_methods}">
<invoke-workflow path="{core_brainstorming}" data="{game_context}" techniques="{game_brain_methods}">
The CIS brainstorming workflow will:
- Merge game-specific techniques with standard techniques
- Present interactive brainstorming techniques menu

View File

@@ -17,9 +17,9 @@
</action>
</step>
<step n="2" goal="Invoke CIS brainstorming with project context">
<step n="2" goal="Invoke core brainstorming with project context">
<action>Execute the CIS brainstorming workflow with project context</action>
<invoke-workflow path="{cis_brainstorming}" data="{project_context}">
<invoke-workflow path="{core_brainstorming}" data="{project_context}">
The CIS brainstorming workflow will:
- Present interactive brainstorming techniques menu
- Guide the user through selected ideation methods

View File

@@ -17,8 +17,8 @@ instructions: "{installed_path}/instructions.md"
# Context document for project brainstorming
project_context: "{installed_path}/project-context.md"
# CIS brainstorming workflow to invoke
cis_brainstorming: "{project-root}/bmad/cis/workflows/brainstorming/workflow.yaml"
# CORE brainstorming workflow to invoke
core_brainstorming: "{project-root}/bmad/core/workflows/brainstorming/workflow.yaml"
web_bundle:
name: "brainstorm-project"
@@ -30,6 +30,6 @@ web_bundle:
web_bundle_files:
- "bmad/bmm/workflows/1-analysis/brainstorm-project/instructions.md"
- "bmad/bmm/workflows/1-analysis/brainstorm-project/project-context.md"
- "bmad/cis/workflows/brainstorming/workflow.yaml"
- "bmad/core/workflows/brainstorming/workflow.yaml"
existing_workflows:
- cis_brainstorming: "bmad/cis/workflows/brainstorming/workflow.yaml"
- core_brainstorming: "bmad/core/workflows/brainstorming/workflow.yaml"