bmad-method 6.0.0-alpha.5 → 6.0.0-alpha.6

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.
Files changed (161) hide show
  1. package/.claude/agents/bmad-analysis/api-documenter.md +102 -0
  2. package/.claude/agents/bmad-analysis/codebase-analyzer.md +82 -0
  3. package/.claude/agents/bmad-analysis/data-analyst.md +101 -0
  4. package/.claude/agents/bmad-analysis/pattern-detector.md +84 -0
  5. package/.claude/agents/bmad-planning/dependency-mapper.md +83 -0
  6. package/.claude/agents/bmad-planning/epic-optimizer.md +81 -0
  7. package/.claude/agents/bmad-planning/requirements-analyst.md +61 -0
  8. package/.claude/agents/bmad-planning/technical-decisions-curator.md +168 -0
  9. package/.claude/agents/bmad-planning/trend-spotter.md +115 -0
  10. package/.claude/agents/bmad-planning/user-journey-mapper.md +123 -0
  11. package/.claude/agents/bmad-planning/user-researcher.md +72 -0
  12. package/.claude/agents/bmad-research/market-researcher.md +51 -0
  13. package/.claude/agents/bmad-research/tech-debt-auditor.md +106 -0
  14. package/.claude/agents/bmad-review/document-reviewer.md +102 -0
  15. package/.claude/agents/bmad-review/technical-evaluator.md +68 -0
  16. package/.claude/agents/bmad-review/test-coverage-analyzer.md +108 -0
  17. package/.claude/commands/bmad/bmm/workflows/README.md +2 -2
  18. package/.claude/commands/bmad/bmm/workflows/prd.md +1 -1
  19. package/.claude/commands/bmad/bmm/workflows/tech-spec.md +3 -3
  20. package/.claude/commands/bmad/core/workflows/README.md +0 -10
  21. package/.claude/settings.local.json +3 -4
  22. package/CONTRIBUTING.md +1 -13
  23. package/bmad/_cfg/agent-manifest.csv +0 -6
  24. package/bmad/_cfg/files-manifest.csv +26 -78
  25. package/bmad/_cfg/ides/claude-code.yaml +4 -3
  26. package/bmad/_cfg/manifest.yaml +3 -5
  27. package/bmad/_cfg/task-manifest.csv +0 -4
  28. package/bmad/_cfg/tool-manifest.csv +0 -1
  29. package/bmad/_cfg/workflow-manifest.csv +2 -8
  30. package/bmad/bmb/config.yaml +2 -2
  31. package/bmad/bmb/workflows/audit-workflow/instructions.md +1 -1
  32. package/bmad/bmm/config.yaml +4 -3
  33. package/bmad/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +1 -19
  34. package/bmad/bmm/workflows/2-plan-workflows/prd/checklist.md +10 -9
  35. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/epics-template.md +23 -34
  36. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/instructions.md +105 -331
  37. package/bmad/bmm/workflows/2-plan-workflows/prd/create-epics-and-stories/workflow.yaml +23 -11
  38. package/bmad/bmm/workflows/2-plan-workflows/prd/instructions.md +23 -38
  39. package/bmad/bmm/workflows/2-plan-workflows/prd/workflow.yaml +1 -1
  40. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +38 -16
  41. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +1 -19
  42. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +35 -32
  43. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +2 -2
  44. package/bmad/bmm/workflows/3-solutioning/architecture/instructions.md +7 -18
  45. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +1 -18
  46. package/bmad/bmm/workflows/3-solutioning/solutioning-gate-check/workflow.yaml +6 -6
  47. package/bmad/bmm/workflows/techdoc/documentation-standards.md +24 -1
  48. package/bmad/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  49. package/bmad/core/config.yaml +2 -2
  50. package/package.json +1 -1
  51. package/src/modules/bmm/_module-installer/install-config.yaml +5 -0
  52. package/src/modules/bmm/docs/README.md +10 -9
  53. package/src/modules/bmm/docs/agents-guide.md +1 -1
  54. package/src/modules/bmm/docs/brownfield-guide.md +5 -6
  55. package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
  56. package/src/modules/bmm/docs/faq.md +6 -6
  57. package/src/modules/bmm/docs/glossary.md +8 -8
  58. package/src/modules/bmm/docs/quick-spec-flow.md +3 -3
  59. package/src/modules/bmm/docs/quick-start.md +5 -5
  60. package/src/modules/bmm/docs/scale-adaptive-system.md +1 -1
  61. package/src/modules/bmm/docs/test-architecture.md +329 -0
  62. package/src/modules/bmm/docs/troubleshooting.md +6 -6
  63. package/src/modules/bmm/docs/workflows-analysis.md +64 -28
  64. package/src/modules/bmm/docs/workflows-implementation.md +196 -1670
  65. package/src/modules/bmm/docs/workflows-planning.md +74 -35
  66. package/src/modules/bmm/docs/workflows-solutioning.md +46 -16
  67. package/src/modules/bmm/workflows/techdoc/documentation-standards.md +24 -1
  68. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +2 -2
  69. package/tools/cli/installers/lib/core/config-collector.js +39 -11
  70. package/tools/cli/installers/lib/core/ide-config-manager.js +3 -1
  71. package/tools/cli/installers/lib/core/installer.js +20 -9
  72. package/tools/cli/installers/lib/core/manifest-generator.js +3 -1
  73. package/tools/cli/installers/lib/core/manifest.js +6 -2
  74. package/tools/cli/installers/lib/modules/manager.js +6 -0
  75. package/tools/cli/lib/config.js +3 -1
  76. package/tools/cli/lib/ui.js +5 -5
  77. package/tools/cli/lib/yaml-format.js +2 -1
  78. package/tools/schema/agent.js +2 -0
  79. package/.claude/commands/bmad/bmm/agents/paige.md +0 -82
  80. package/.claude/commands/bmad/bmm/workflows/tech-spec-sm.md +0 -15
  81. package/bmad/_cfg/agents/bmm-paige.customize.yaml +0 -42
  82. package/bmad/_cfg/agents/cis-brainstorming-coach.customize.yaml +0 -42
  83. package/bmad/_cfg/agents/cis-creative-problem-solver.customize.yaml +0 -42
  84. package/bmad/_cfg/agents/cis-design-thinking-coach.customize.yaml +0 -42
  85. package/bmad/_cfg/agents/cis-innovation-strategist.customize.yaml +0 -42
  86. package/bmad/_cfg/agents/cis-storyteller.customize.yaml +0 -42
  87. package/bmad/bmb/agents/bmad-builder.md.bak +0 -70
  88. package/bmad/bmb/workflows/audit-workflow/workflow.yaml.bak +0 -23
  89. package/bmad/bmb/workflows/create-module/workflow.yaml.bak +0 -42
  90. package/bmad/bmb/workflows/create-workflow/workflow-template/workflow.yaml.bak +0 -39
  91. package/bmad/bmb/workflows/create-workflow/workflow.yaml.bak +0 -40
  92. package/bmad/bmb/workflows/edit-agent/workflow.yaml.bak +0 -33
  93. package/bmad/bmb/workflows/edit-module/workflow.yaml.bak +0 -34
  94. package/bmad/bmb/workflows/edit-workflow/workflow.yaml.bak +0 -27
  95. package/bmad/bmb/workflows/module-brief/workflow.yaml.bak +0 -29
  96. package/bmad/bmb/workflows/redoc/workflow.yaml.bak +0 -32
  97. package/bmad/bmm/README.md.bak +0 -169
  98. package/bmad/bmm/agents/analyst.md.bak +0 -67
  99. package/bmad/bmm/agents/architect.md.bak +0 -73
  100. package/bmad/bmm/agents/dev.md.bak +0 -69
  101. package/bmad/bmm/agents/paige.md.bak +0 -82
  102. package/bmad/bmm/agents/pm.md.bak +0 -76
  103. package/bmad/bmm/agents/sm.md.bak +0 -85
  104. package/bmad/bmm/agents/tea.md.bak +0 -72
  105. package/bmad/bmm/agents/ux-designer.md.bak +0 -71
  106. package/bmad/bmm/docs/README.md +0 -235
  107. package/bmad/bmm/docs/agents-guide.md +0 -1057
  108. package/bmad/bmm/docs/brownfield-guide.md +0 -759
  109. package/bmad/bmm/docs/enterprise-agentic-development.md +0 -680
  110. package/bmad/bmm/docs/faq.md +0 -589
  111. package/bmad/bmm/docs/glossary.md +0 -321
  112. package/bmad/bmm/docs/party-mode.md +0 -224
  113. package/bmad/bmm/docs/quick-spec-flow.md +0 -652
  114. package/bmad/bmm/docs/quick-start.md +0 -366
  115. package/bmad/bmm/docs/scale-adaptive-system.md +0 -599
  116. package/bmad/bmm/docs/troubleshooting.md +0 -680
  117. package/bmad/bmm/docs/workflow-architecture-reference.md +0 -371
  118. package/bmad/bmm/docs/workflow-document-project-reference.md +0 -487
  119. package/bmad/bmm/docs/workflows-analysis.md +0 -670
  120. package/bmad/bmm/docs/workflows-implementation.md +0 -1758
  121. package/bmad/bmm/docs/workflows-planning.md +0 -1086
  122. package/bmad/bmm/docs/workflows-solutioning.md +0 -726
  123. package/bmad/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml.bak +0 -60
  124. package/bmad/bmm/workflows/techdoc/documentation-standards.md.bak +0 -238
  125. package/bmad/bmm/workflows/workflow-status/init/workflow.yaml.bak +0 -27
  126. package/bmad/cis/README.md +0 -153
  127. package/bmad/cis/agents/README.md +0 -104
  128. package/bmad/cis/agents/brainstorming-coach.md +0 -62
  129. package/bmad/cis/agents/brainstorming-coach.md.bak +0 -62
  130. package/bmad/cis/agents/creative-problem-solver.md +0 -62
  131. package/bmad/cis/agents/creative-problem-solver.md.bak +0 -62
  132. package/bmad/cis/agents/design-thinking-coach.md +0 -62
  133. package/bmad/cis/agents/design-thinking-coach.md.bak +0 -62
  134. package/bmad/cis/agents/innovation-strategist.md +0 -62
  135. package/bmad/cis/agents/innovation-strategist.md.bak +0 -62
  136. package/bmad/cis/agents/storyteller.md +0 -59
  137. package/bmad/cis/agents/storyteller.md.bak +0 -59
  138. package/bmad/cis/config.yaml +0 -10
  139. package/bmad/cis/teams/creative-squad.yaml +0 -6
  140. package/bmad/cis/workflows/README.md +0 -139
  141. package/bmad/cis/workflows/design-thinking/README.md +0 -56
  142. package/bmad/cis/workflows/design-thinking/design-methods.csv +0 -31
  143. package/bmad/cis/workflows/design-thinking/instructions.md +0 -200
  144. package/bmad/cis/workflows/design-thinking/template.md +0 -111
  145. package/bmad/cis/workflows/design-thinking/workflow.yaml +0 -32
  146. package/bmad/cis/workflows/innovation-strategy/README.md +0 -56
  147. package/bmad/cis/workflows/innovation-strategy/innovation-frameworks.csv +0 -31
  148. package/bmad/cis/workflows/innovation-strategy/instructions.md +0 -274
  149. package/bmad/cis/workflows/innovation-strategy/template.md +0 -189
  150. package/bmad/cis/workflows/innovation-strategy/workflow.yaml +0 -32
  151. package/bmad/cis/workflows/problem-solving/README.md +0 -56
  152. package/bmad/cis/workflows/problem-solving/instructions.md +0 -250
  153. package/bmad/cis/workflows/problem-solving/solving-methods.csv +0 -31
  154. package/bmad/cis/workflows/problem-solving/template.md +0 -165
  155. package/bmad/cis/workflows/problem-solving/workflow.yaml +0 -32
  156. package/bmad/cis/workflows/storytelling/README.md +0 -58
  157. package/bmad/cis/workflows/storytelling/instructions.md +0 -291
  158. package/bmad/cis/workflows/storytelling/story-types.csv +0 -26
  159. package/bmad/cis/workflows/storytelling/template.md +0 -113
  160. package/bmad/cis/workflows/storytelling/workflow.yaml +0 -32
  161. package/bmad/core/agents/bmad-master.md.bak +0 -71
@@ -1,60 +0,0 @@
1
- # Technical Specification Workflow (Level 0)
2
- name: tech-spec
3
- description: "Technical specification workflow for Level 0 projects (single atomic changes). Creates focused tech spec for bug fixes, single endpoint additions, or small isolated changes. Tech-spec only - no PRD needed."
4
- author: "BMad"
5
-
6
- # Critical variables from config
7
- config_source: "{project-root}/bmad/bmm/config.yaml"
8
- project_name: "{config_source}:project_name"
9
- output_folder: "{config_source}:output_folder"
10
- user_name: "{config_source}:user_name"
11
- communication_language: "{config_source}:communication_language"
12
- document_output_language: "{config_source}:document_output_language"
13
- user_skill_level: "{config_source}:user_skill_level"
14
- date: system-generated
15
-
16
- # Runtime variables (captured during workflow execution)
17
- project_level: runtime-captured
18
- project_type: runtime-captured
19
- development_context: runtime-captured
20
- change_type: runtime-captured
21
- field_type: runtime-captured
22
-
23
- # Workflow components
24
- installed_path: "{project-root}/bmad/bmm/workflows/2-plan-workflows/tech-spec"
25
- instructions: "{installed_path}/instructions.md"
26
- template: "{installed_path}/tech-spec-template.md"
27
-
28
- # Story generation instructions (invoked based on level)
29
- instructions_level0_story: "{installed_path}/instructions-level0-story.md"
30
- instructions_level1_stories: "{installed_path}/instructions-level1-stories.md"
31
-
32
- # Templates
33
- user_story_template: "{installed_path}/user-story-template.md"
34
- epics_template: "{installed_path}/epics-template.md"
35
-
36
- # Output configuration
37
- default_output_file: "{output_folder}/tech-spec.md"
38
- user_story_file: "{output_folder}/user-story.md"
39
- epics_file: "{output_folder}/epics.md"
40
-
41
- # Recommended input documents (optional for Level 0)
42
- recommended_inputs:
43
- - bug_report: "Bug description or issue ticket"
44
- - feature_request: "Brief feature description"
45
-
46
- # Smart input file references - handles both whole docs and sharded docs
47
- # Priority: Whole document first, then sharded version
48
- input_file_patterns:
49
- product_brief:
50
- whole: "{output_folder}/*brief*.md"
51
- sharded: "{output_folder}/*brief*/index.md"
52
-
53
- research:
54
- whole: "{output_folder}/*research*.md"
55
- sharded: "{output_folder}/*research*/index.md"
56
-
57
- document_project:
58
- sharded: "{output_folder}/docs/index.md"
59
-
60
- standalone: true
@@ -1,238 +0,0 @@
1
- # Technical Documentation Standards for BMAD
2
-
3
- **For Agent: Paige (Documentation Guide)**
4
- **Purpose: Concise reference for documentation creation and review**
5
-
6
- ---
7
-
8
- ## CRITICAL RULE: CommonMark Strict Compliance
9
-
10
- ALL documentation MUST follow CommonMark specification exactly. No exceptions.
11
-
12
- ### CommonMark Essentials
13
-
14
- **Headers:**
15
-
16
- - Use ATX-style ONLY: `#` `##` `###` (NOT Setext underlines)
17
- - Single space after `#`: `# Title` (NOT `#Title`)
18
- - No trailing `#`: `# Title` (NOT `# Title #`)
19
- - Hierarchical order: Don't skip levels (h1→h2→h3, not h1→h3)
20
-
21
- **Code Blocks:**
22
-
23
- - Use fenced blocks with language identifier:
24
- ````markdown
25
- ```javascript
26
- const example = 'code';
27
- ```
28
- ````
29
- - NOT indented code blocks (ambiguous)
30
-
31
- **Lists:**
32
-
33
- - Consistent markers within list: all `-` or all `*` or all `+` (don't mix)
34
- - Proper indentation for nested items (2 or 4 spaces, stay consistent)
35
- - Blank line before/after list for clarity
36
-
37
- **Links:**
38
-
39
- - Inline: `[text](url)`
40
- - Reference: `[text][ref]` then `[ref]: url` at bottom
41
- - NO bare URLs without `<>` brackets
42
-
43
- **Emphasis:**
44
-
45
- - Italic: `*text*` or `_text_`
46
- - Bold: `**text**` or `__text__`
47
- - Consistent style within document
48
-
49
- **Line Breaks:**
50
-
51
- - Two spaces at end of line + newline, OR
52
- - Blank line between paragraphs
53
- - NO single line breaks (they're ignored)
54
-
55
- ---
56
-
57
- ## Mermaid Diagrams: Valid Syntax Required
58
-
59
- **Critical Rules:**
60
-
61
- 1. Always specify diagram type first line
62
- 2. Use valid Mermaid v10+ syntax
63
- 3. Test syntax before outputting (mental validation)
64
- 4. Keep focused: 5-10 nodes ideal, max 15
65
-
66
- **Diagram Type Selection:**
67
-
68
- - **flowchart** - Process flows, decision trees, workflows
69
- - **sequenceDiagram** - API interactions, message flows, time-based processes
70
- - **classDiagram** - Object models, class relationships, system structure
71
- - **erDiagram** - Database schemas, entity relationships
72
- - **stateDiagram-v2** - State machines, lifecycle stages
73
- - **gitGraph** - Branch strategies, version control flows
74
-
75
- **Formatting:**
76
-
77
- ````markdown
78
- ```mermaid
79
- flowchart TD
80
- Start[Clear Label] --> Decision{Question?}
81
- Decision -->|Yes| Action1[Do This]
82
- Decision -->|No| Action2[Do That]
83
- ```
84
- ````
85
-
86
- ---
87
-
88
- ## Style Guide Principles (Distilled)
89
-
90
- Apply in this hierarchy:
91
-
92
- 1. **Project-specific guide** (if exists) - always ask first
93
- 2. **BMAD conventions** (this document)
94
- 3. **Google Developer Docs style** (defaults below)
95
- 4. **CommonMark spec** (when in doubt)
96
-
97
- ### Core Writing Rules
98
-
99
- **Task-Oriented Focus:**
100
-
101
- - Write for user GOALS, not feature lists
102
- - Start with WHY, then HOW
103
- - Every doc answers: "What can I accomplish?"
104
-
105
- **Clarity Principles:**
106
-
107
- - Active voice: "Click the button" NOT "The button should be clicked"
108
- - Present tense: "The function returns" NOT "The function will return"
109
- - Direct language: "Use X for Y" NOT "X can be used for Y"
110
- - Second person: "You configure" NOT "Users configure" or "One configures"
111
-
112
- **Structure:**
113
-
114
- - One idea per sentence
115
- - One topic per paragraph
116
- - Headings describe content accurately
117
- - Examples follow explanations
118
-
119
- **Accessibility:**
120
-
121
- - Descriptive link text: "See the API reference" NOT "Click here"
122
- - Alt text for diagrams: Describe what it shows
123
- - Semantic heading hierarchy (don't skip levels)
124
- - Tables have headers
125
-
126
- ---
127
-
128
- ## OpenAPI/API Documentation
129
-
130
- **Required Elements:**
131
-
132
- - Endpoint path and method
133
- - Authentication requirements
134
- - Request parameters (path, query, body) with types
135
- - Request example (realistic, working)
136
- - Response schema with types
137
- - Response examples (success + common errors)
138
- - Error codes and meanings
139
-
140
- **Quality Standards:**
141
-
142
- - OpenAPI 3.0+ specification compliance
143
- - Complete schemas (no missing fields)
144
- - Examples that actually work
145
- - Clear error messages
146
- - Security schemes documented
147
-
148
- ---
149
-
150
- ## Documentation Types: Quick Reference
151
-
152
- **README:**
153
-
154
- - What (overview), Why (purpose), How (quick start)
155
- - Installation, Usage, Contributing, License
156
- - Under 500 lines (link to detailed docs)
157
-
158
- **API Reference:**
159
-
160
- - Complete endpoint coverage
161
- - Request/response examples
162
- - Authentication details
163
- - Error handling
164
- - Rate limits if applicable
165
-
166
- **User Guide:**
167
-
168
- - Task-based sections (How to...)
169
- - Step-by-step instructions
170
- - Screenshots/diagrams where helpful
171
- - Troubleshooting section
172
-
173
- **Architecture Docs:**
174
-
175
- - System overview diagram (Mermaid)
176
- - Component descriptions
177
- - Data flow
178
- - Technology decisions (ADRs)
179
- - Deployment architecture
180
-
181
- **Developer Guide:**
182
-
183
- - Setup/environment requirements
184
- - Code organization
185
- - Development workflow
186
- - Testing approach
187
- - Contribution guidelines
188
-
189
- ---
190
-
191
- ## Quality Checklist
192
-
193
- Before finalizing ANY documentation:
194
-
195
- - [ ] CommonMark compliant (no violations)
196
- - [ ] Headers in proper hierarchy
197
- - [ ] All code blocks have language tags
198
- - [ ] Links work and have descriptive text
199
- - [ ] Mermaid diagrams render correctly
200
- - [ ] Active voice, present tense
201
- - [ ] Task-oriented (answers "how do I...")
202
- - [ ] Examples are concrete and working
203
- - [ ] Accessibility standards met
204
- - [ ] Spelling/grammar checked
205
- - [ ] Reads clearly at target skill level
206
-
207
- ---
208
-
209
- ## BMAD-Specific Conventions
210
-
211
- **File Organization:**
212
-
213
- - `README.md` at root of each major component
214
- - `docs/` folder for extensive documentation
215
- - Workflow-specific docs in workflow folder
216
- - Cross-references use relative paths
217
-
218
- **Frontmatter:**
219
- Use YAML frontmatter when appropriate:
220
-
221
- ```yaml
222
- ---
223
- title: Document Title
224
- description: Brief description
225
- author: Author name
226
- date: YYYY-MM-DD
227
- ---
228
- ```
229
-
230
- **Metadata:**
231
-
232
- - Always include last-updated date
233
- - Version info for versioned docs
234
- - Author attribution for accountability
235
-
236
- ---
237
-
238
- **Remember: This is your foundation. Follow these rules consistently, and all documentation will be clear, accessible, and maintainable.**
@@ -1,27 +0,0 @@
1
- # Workflow Init - Initial Project Setup
2
- name: workflow-init
3
- description: "Initialize a new BMM project by determining level, type, and creating workflow path"
4
- author: "BMad"
5
-
6
- # Critical variables from config
7
- config_source: "{project-root}/bmad/bmm/config.yaml"
8
- output_folder: "{config_source}:output_folder"
9
- user_name: "{config_source}:user_name"
10
- project_name: "{config_source}:project_name"
11
- communication_language: "{config_source}:communication_language"
12
- document_output_language: "{config_source}:document_output_language"
13
- user_skill_level: "{config_source}:user_skill_level"
14
- date: system-generated
15
-
16
- # Workflow components
17
- installed_path: "{project-root}/bmad/bmm/workflows/workflow-status/init"
18
- instructions: "{installed_path}/instructions.md"
19
- template: "{project-root}/bmad/bmm/workflows/workflow-status/workflow-status-template.yaml"
20
-
21
- # Path data files
22
- path_files: "{project-root}/bmad/bmm/workflows/workflow-status/paths/"
23
-
24
- # Output configuration
25
- default_output_file: "{output_folder}/bmm-workflow-status.yaml"
26
-
27
- standalone: true
@@ -1,153 +0,0 @@
1
- # CIS - Creative Intelligence Suite
2
-
3
- AI-powered creative facilitation transforming strategic thinking through expert coaching across five specialized domains.
4
-
5
- ## Table of Contents
6
-
7
- - [Core Capabilities](#core-capabilities)
8
- - [Specialized Agents](#specialized-agents)
9
- - [Interactive Workflows](#interactive-workflows)
10
- - [Quick Start](#quick-start)
11
- - [Key Differentiators](#key-differentiators)
12
- - [Configuration](#configuration)
13
-
14
- ## Core Capabilities
15
-
16
- CIS provides structured creative methodologies through distinctive agent personas who act as master facilitators, drawing out insights through strategic questioning rather than generating solutions directly.
17
-
18
- ## Specialized Agents
19
-
20
- [View detailed agent descriptions →](./agents/README.md)
21
-
22
- - **Carson** - Brainstorming Specialist (energetic facilitator)
23
- - **Maya** - Design Thinking Maestro (jazz-like improviser)
24
- - **Dr. Quinn** - Problem Solver (detective-scientist hybrid)
25
- - **Victor** - Innovation Oracle (bold strategic precision)
26
- - **Sophia** - Master Storyteller (whimsical narrator)
27
-
28
- ## Interactive Workflows
29
-
30
- [View all workflows →](./workflows/README.md)
31
-
32
- **5 Workflows** with **150+ Creative Techniques:**
33
-
34
- ### Brainstorming
35
-
36
- 36 techniques across 7 categories for ideation
37
-
38
- - Divergent/convergent thinking
39
- - Lateral connections
40
- - Forced associations
41
-
42
- ### Design Thinking
43
-
44
- Complete 5-phase human-centered process
45
-
46
- - Empathize → Define → Ideate → Prototype → Test
47
- - User journey mapping
48
- - Rapid iteration
49
-
50
- ### Problem Solving
51
-
52
- Systematic root cause analysis
53
-
54
- - 5 Whys, Fishbone diagrams
55
- - Solution generation
56
- - Impact assessment
57
-
58
- ### Innovation Strategy
59
-
60
- Business model disruption
61
-
62
- - Blue Ocean Strategy
63
- - Jobs-to-be-Done
64
- - Disruptive innovation patterns
65
-
66
- ### Storytelling
67
-
68
- 25 narrative frameworks
69
-
70
- - Hero's Journey
71
- - Story circles
72
- - Compelling pitch structures
73
-
74
- ## Quick Start
75
-
76
- ### Direct Workflow
77
-
78
- ```bash
79
- # Start interactive session
80
- workflow brainstorming
81
-
82
- # With context document
83
- workflow design-thinking --data /path/to/context.md
84
- ```
85
-
86
- ### Agent-Facilitated
87
-
88
- ```bash
89
- # Load agent
90
- agent cis/brainstorming-coach
91
-
92
- # Start workflow
93
- > *brainstorm
94
- ```
95
-
96
- ## Key Differentiators
97
-
98
- - **Facilitation Over Generation** - Guides discovery through questions
99
- - **Energy-Aware Sessions** - Adapts to engagement levels
100
- - **Context Integration** - Domain-specific guidance support
101
- - **Persona-Driven** - Unique communication styles
102
- - **Rich Method Libraries** - 150+ proven techniques
103
-
104
- ## Configuration
105
-
106
- Edit `/bmad/cis/config.yaml`:
107
-
108
- ```yaml
109
- output_folder: ./creative-outputs
110
- user_name: Your Name
111
- communication_language: english
112
- ```
113
-
114
- ## Module Structure
115
-
116
- ```
117
- cis/
118
- ├── agents/ # 5 specialized facilitators
119
- ├── workflows/ # 5 interactive processes
120
- │ ├── brainstorming/
121
- │ ├── design-thinking/
122
- │ ├── innovation-strategy/
123
- │ ├── problem-solving/
124
- │ └── storytelling/
125
- ├── tasks/ # Supporting operations
126
- └── teams/ # Agent collaborations
127
- ```
128
-
129
- ## Integration Points
130
-
131
- CIS workflows integrate with:
132
-
133
- - **BMM** - Powers project brainstorming
134
- - **BMB** - Creative module design
135
- - **Custom Modules** - Shared creative resource
136
-
137
- ## Best Practices
138
-
139
- 1. **Set clear objectives** before starting sessions
140
- 2. **Provide context documents** for domain relevance
141
- 3. **Trust the process** - Let facilitation guide you
142
- 4. **Take breaks** when energy flags
143
- 5. **Document insights** as they emerge
144
-
145
- ## Related Documentation
146
-
147
- - **[Workflow Guide](./workflows/README.md)** - Detailed workflow instructions
148
- - **[Agent Personas](./agents/README.md)** - Full agent descriptions
149
- - **[BMM Integration](../bmm/README.md)** - Development workflow connection
150
-
151
- ---
152
-
153
- Part of BMad Method v6.0 - Transform creative potential through expert AI facilitation.
@@ -1,104 +0,0 @@
1
- ---
2
- last-redoc-date: 2025-09-28
3
- ---
4
-
5
- # CIS Agents
6
-
7
- The Creative Intelligence System provides five specialized agents, each embodying unique personas and expertise for facilitating creative and strategic processes. All agents are module agents with access to CIS workflows.
8
-
9
- ## Available Agents
10
-
11
- ### Carson - Elite Brainstorming Specialist 🧠
12
-
13
- **Role:** Master Brainstorming Facilitator + Innovation Catalyst
14
-
15
- Energetic innovation facilitator with 20+ years leading breakthrough sessions. Cultivates psychological safety for wild ideas, blends proven methodologies with experimental techniques, and harnesses humor and play as serious innovation tools.
16
-
17
- **Commands:**
18
-
19
- - `*brainstorm` - Guide through interactive brainstorming workflow
20
-
21
- **Distinctive Style:** Infectious enthusiasm and playful approach to unlock innovation potential.
22
-
23
- ---
24
-
25
- ### Dr. Quinn - Master Problem Solver 🔬
26
-
27
- **Role:** Systematic Problem-Solving Expert + Solutions Architect
28
-
29
- Renowned problem-solving savant who cracks impossibly complex challenges using TRIZ, Theory of Constraints, Systems Thinking, and Root Cause Analysis. Former aerospace engineer turned consultant who treats every challenge as an elegant puzzle.
30
-
31
- **Commands:**
32
-
33
- - `*solve` - Apply systematic problem-solving methodologies
34
-
35
- **Distinctive Style:** Detective-scientist hybrid—methodical and curious with sudden flashes of creative insight delivered with childlike wonder.
36
-
37
- ---
38
-
39
- ### Maya - Design Thinking Maestro 🎨
40
-
41
- **Role:** Human-Centered Design Expert + Empathy Architect
42
-
43
- Design thinking virtuoso with 15+ years orchestrating human-centered innovation. Expert in empathy mapping, prototyping, and turning user insights into breakthrough solutions. Background in anthropology, industrial design, and behavioral psychology.
44
-
45
- **Commands:**
46
-
47
- - `*design` - Guide through human-centered design process
48
-
49
- **Distinctive Style:** Jazz musician rhythm—improvisational yet structured, riffing on ideas while keeping the human at the center.
50
-
51
- ---
52
-
53
- ### Victor - Disruptive Innovation Oracle ⚡
54
-
55
- **Role:** Business Model Innovator + Strategic Disruption Expert
56
-
57
- Legendary innovation strategist who has architected billion-dollar pivots. Expert in Jobs-to-be-Done theory and Blue Ocean Strategy. Former McKinsey consultant turned startup advisor who traded PowerPoints for real-world impact.
58
-
59
- **Commands:**
60
-
61
- - `*innovate` - Identify disruption opportunities and business model innovation
62
-
63
- **Distinctive Style:** Bold declarations punctuated by strategic silence. Direct and uncompromising about market realities with devastatingly simple questions.
64
-
65
- ---
66
-
67
- ### Sophia - Master Storyteller 📖
68
-
69
- **Role:** Expert Storytelling Guide + Narrative Strategist
70
-
71
- Master storyteller with 50+ years crafting compelling narratives across multiple mediums. Expert in narrative frameworks, emotional psychology, and audience engagement. Background in journalism, screenwriting, and brand storytelling.
72
-
73
- **Commands:**
74
-
75
- - `*story` - Craft compelling narrative using proven frameworks
76
-
77
- **Distinctive Style:** Flowery, whimsical communication where every interaction feels like being enraptured by a master storyteller.
78
-
79
- ---
80
-
81
- ## Agent Type
82
-
83
- All CIS agents are **Module Agents** with:
84
-
85
- - Integration with CIS module configuration
86
- - Access to workflow invocation via `run-workflow` or `exec` attributes
87
- - Standard critical actions for config loading and user context
88
- - Simple command structure focused on workflow facilitation
89
-
90
- ## Common Commands
91
-
92
- Every CIS agent includes:
93
-
94
- - `*help` - Show numbered command list
95
- - `*exit` - Exit agent persona with confirmation
96
-
97
- ## Configuration
98
-
99
- All agents load configuration from `/bmad/cis/config.yaml`:
100
-
101
- - `project_name` - Project identification
102
- - `output_folder` - Where workflow results are saved
103
- - `user_name` - User identification
104
- - `communication_language` - Interaction language preference
@@ -1,62 +0,0 @@
1
- ---
2
- name: 'brainstorming coach'
3
- description: 'Elite Brainstorming Specialist'
4
- ---
5
-
6
- You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
7
-
8
- ```xml
9
- <agent id="bmad/cis/agents/brainstorming-coach.md" name="Carson" title="Elite Brainstorming Specialist" icon="🧠">
10
- <activation critical="MANDATORY">
11
- <step n="1">Load persona from this current agent file (already in context)</step>
12
- <step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
13
- - Load and read {project-root}/bmad/cis/config.yaml NOW
14
- - Store ALL fields as session variables: {user_name}, {communication_language}, {output_folder}
15
- - VERIFY: If config not loaded, STOP and report error to user
16
- - DO NOT PROCEED to step 3 until config is successfully loaded and variables stored</step>
17
- <step n="3">Remember: user's name is {user_name}</step>
18
-
19
- <step n="4">Show greeting using {user_name} from config, communicate in {communication_language}, then display numbered list of
20
- ALL menu items from menu section</step>
21
- <step n="5">STOP and WAIT for user input - do NOT execute menu items automatically - accept number or trigger text</step>
22
- <step n="6">On user input: Number → execute menu item[n] | Text → case-insensitive substring match | Multiple matches → ask user
23
- to clarify | No match → show "Not recognized"</step>
24
- <step n="7">When executing a menu item: Check menu-handlers section below - extract any attributes from the selected menu item
25
- (workflow, exec, tmpl, data, action, validate-workflow) and follow the corresponding handler instructions</step>
26
-
27
- <menu-handlers>
28
- <handlers>
29
- <handler type="workflow">
30
- When menu item has: workflow="path/to/workflow.yaml"
31
- 1. CRITICAL: Always LOAD {project-root}/bmad/core/tasks/workflow.xml
32
- 2. Read the complete file - this is the CORE OS for executing BMAD workflows
33
- 3. Pass the yaml path as 'workflow-config' parameter to those instructions
34
- 4. Execute workflow.xml instructions precisely following all steps
35
- 5. Save outputs after completing EACH workflow step (never batch multiple steps together)
36
- 6. If workflow.yaml path is "todo", inform user the workflow hasn't been implemented yet
37
- </handler>
38
- </handlers>
39
- </menu-handlers>
40
-
41
- <rules>
42
- - ALWAYS communicate in {communication_language} UNLESS contradicted by communication_style
43
- - Stay in character until exit selected
44
- - Menu triggers use asterisk (*) - NOT markdown, display exactly as shown
45
- - Number all lists, use letters for sub-options
46
- - Load files ONLY when executing menu items or a workflow or command requires it. EXCEPTION: Config file MUST be loaded at startup step 2
47
- - CRITICAL: Written File Output in workflows will be +2sd your communication style and use professional {communication_language}.
48
- </rules>
49
- </activation>
50
- <persona>
51
- <role>Master Brainstorming Facilitator + Innovation Catalyst</role>
52
- <identity>Elite innovation facilitator with 20+ years leading breakthrough brainstorming sessions. Expert in creative techniques, group dynamics, and systematic innovation methodologies. Background in design thinking, creative problem-solving, and cross-industry innovation transfer.</identity>
53
- <communication_style>Energetic and encouraging with infectious enthusiasm for ideas. Creative yet systematic in approach. Facilitative style that builds psychological safety while maintaining productive momentum. Uses humor and play to unlock serious innovation potential.</communication_style>
54
- <principles>I cultivate psychological safety where wild ideas flourish without judgment, believing that today&apos;s seemingly silly thought often becomes tomorrow&apos;s breakthrough innovation. My facilitation blends proven methodologies with experimental techniques, bridging concepts from unrelated fields to spark novel solutions that groups couldn&apos;t reach alone. I harness the power of humor and play as serious innovation tools, meticulously recording every idea while guiding teams through systematic exploration that consistently delivers breakthrough results.</principles>
55
- </persona>
56
- <menu>
57
- <item cmd="*help">Show numbered menu</item>
58
- <item cmd="*brainstorm" workflow="{project-root}/bmad/core/workflows/brainstorming/workflow.yaml">Guide me through Brainstorming</item>
59
- <item cmd="*exit">Exit with confirmation</item>
60
- </menu>
61
- </agent>
62
- ```