2025-09-28 23:17:07 -05:00
|
|
|
# Brainstorm Project - Workflow Instructions
|
|
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
```xml
|
2025-10-03 21:46:53 -05:00
|
|
|
<critical>The workflow execution engine is governed by: {project_root}/bmad/core/tasks/workflow.xml</critical>
|
2025-09-28 23:17:07 -05:00
|
|
|
<critical>You MUST have already loaded and processed: {installed_path}/workflow.yaml</critical>
|
2025-10-16 07:24:38 -05:00
|
|
|
<critical>Communicate all responses in {communication_language}</critical>
|
2025-09-28 23:17:07 -05:00
|
|
|
<critical>This is a meta-workflow that orchestrates the CIS brainstorming workflow with project-specific context</critical>
|
|
|
|
|
|
|
|
|
|
<workflow>
|
|
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
<step n="1" goal="Validate workflow readiness">
|
2025-10-17 22:34:21 -05:00
|
|
|
<invoke-workflow path="{project-root}/bmad/bmm/workflows/workflow-status">
|
2025-10-17 16:44:06 -05:00
|
|
|
<param>mode: validate</param>
|
|
|
|
|
<param>calling_workflow: brainstorm-project</param>
|
|
|
|
|
</invoke-workflow>
|
2025-10-12 22:19:28 -05:00
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
<check if="status_exists == false">
|
|
|
|
|
<output>{{suggestion}}</output>
|
|
|
|
|
<output>Note: Brainstorming is optional. Continuing without progress tracking.</output>
|
|
|
|
|
<action>Set standalone_mode = true</action>
|
2025-10-12 22:19:28 -05:00
|
|
|
</check>
|
|
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
<check if="status_exists == true">
|
|
|
|
|
<action>Store {{status_file_path}} for later updates</action>
|
2025-10-12 22:19:28 -05:00
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
<check if="warning != ''">
|
|
|
|
|
<output>{{warning}}</output>
|
|
|
|
|
<output>Note: Brainstorming can be valuable at any project stage.</output>
|
|
|
|
|
</check>
|
2025-10-12 22:19:28 -05:00
|
|
|
</check>
|
|
|
|
|
</step>
|
|
|
|
|
|
|
|
|
|
<step n="2" goal="Load project brainstorming context">
|
2025-09-28 23:17:07 -05:00
|
|
|
<action>Read the project context document from: {project_context}</action>
|
|
|
|
|
<action>This context provides project-specific guidance including:
|
|
|
|
|
- Focus areas for project ideation
|
|
|
|
|
- Key considerations for software/product projects
|
|
|
|
|
- Recommended techniques for project brainstorming
|
|
|
|
|
- Output structure guidance
|
|
|
|
|
</action>
|
|
|
|
|
</step>
|
|
|
|
|
|
2025-10-12 22:19:28 -05:00
|
|
|
<step n="3" goal="Invoke core brainstorming with project context">
|
2025-09-28 23:17:07 -05:00
|
|
|
<action>Execute the CIS brainstorming workflow with project context</action>
|
2025-10-04 19:01:37 -05:00
|
|
|
<invoke-workflow path="{core_brainstorming}" data="{project_context}">
|
2025-09-28 23:17:07 -05:00
|
|
|
The CIS brainstorming workflow will:
|
|
|
|
|
- Present interactive brainstorming techniques menu
|
|
|
|
|
- Guide the user through selected ideation methods
|
|
|
|
|
- Generate and capture brainstorming session results
|
|
|
|
|
- Save output to: {output_folder}/brainstorming-session-results-{{date}}.md
|
|
|
|
|
</invoke-workflow>
|
|
|
|
|
</step>
|
|
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
<step n="4" goal="Update status and complete">
|
|
|
|
|
<check if="standalone_mode != true">
|
2025-10-17 23:44:43 -05:00
|
|
|
<invoke-workflow path="{project-root}/bmad/bmm/workflows/workflow-status">
|
|
|
|
|
<param>mode: update</param>
|
|
|
|
|
<param>action: complete_workflow</param>
|
|
|
|
|
<param>workflow_name: brainstorm-project</param>
|
|
|
|
|
</invoke-workflow>
|
|
|
|
|
|
|
|
|
|
<check if="success == true">
|
|
|
|
|
<output>Status updated! Next: {{next_workflow}}</output>
|
|
|
|
|
</check>
|
2025-10-17 16:44:06 -05:00
|
|
|
</check>
|
|
|
|
|
|
|
|
|
|
<output>**✅ Brainstorming Session Complete, {user_name}!**
|
2025-10-12 22:19:28 -05:00
|
|
|
|
|
|
|
|
**Session Results:**
|
2025-10-17 16:44:06 -05:00
|
|
|
- Brainstorming results saved to: {output_folder}/bmm-brainstorming-session-{{date}}.md
|
2025-10-12 22:19:28 -05:00
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
{{#if standalone_mode != true}}
|
|
|
|
|
**Status Updated:**
|
|
|
|
|
- Progress tracking updated
|
|
|
|
|
{{/if}}
|
2025-10-12 22:19:28 -05:00
|
|
|
|
|
|
|
|
**Next Steps:**
|
|
|
|
|
1. Review brainstorming results
|
|
|
|
|
2. Consider running:
|
|
|
|
|
- `research` workflow for market/technical research
|
|
|
|
|
- `product-brief` workflow to formalize product vision
|
|
|
|
|
- Or proceed directly to `plan-project` if ready
|
|
|
|
|
|
2025-10-17 16:44:06 -05:00
|
|
|
{{#if standalone_mode != true}}
|
2025-10-12 22:19:28 -05:00
|
|
|
Check status anytime with: `workflow-status`
|
2025-10-17 16:44:06 -05:00
|
|
|
{{/if}}
|
|
|
|
|
</output>
|
2025-09-28 23:17:07 -05:00
|
|
|
</step>
|
|
|
|
|
|
|
|
|
|
</workflow>
|
2025-10-17 16:44:06 -05:00
|
|
|
```
|