bmad-creative-intelligence-suite 0.1.0

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 (32) hide show
  1. package/.markdownlint-cli2.yaml +35 -0
  2. package/.nvmrc +1 -0
  3. package/.prettierignore +9 -0
  4. package/LICENSE +26 -0
  5. package/README.md +3 -0
  6. package/eslint.config.mjs +152 -0
  7. package/package.json +92 -0
  8. package/prettier.config.mjs +32 -0
  9. package/src/_module-installer/installer.js +92 -0
  10. package/src/agents/brainstorming-coach.agent.yaml +21 -0
  11. package/src/agents/creative-problem-solver.agent.yaml +21 -0
  12. package/src/agents/design-thinking-coach.agent.yaml +21 -0
  13. package/src/agents/innovation-strategist.agent.yaml +21 -0
  14. package/src/agents/presentation-master.agent.yaml +53 -0
  15. package/src/agents/storyteller/storyteller.agent.yaml +25 -0
  16. package/src/module-help.csv +6 -0
  17. package/src/module.yaml +27 -0
  18. package/src/teams/creative-squad.yaml +7 -0
  19. package/src/teams/default-party.csv +12 -0
  20. package/src/workflows/README.md +139 -0
  21. package/src/workflows/design-thinking/README.md +56 -0
  22. package/src/workflows/design-thinking/design-methods.csv +31 -0
  23. package/src/workflows/design-thinking/workflow.yaml +38 -0
  24. package/src/workflows/innovation-strategy/README.md +56 -0
  25. package/src/workflows/innovation-strategy/innovation-frameworks.csv +31 -0
  26. package/src/workflows/innovation-strategy/workflow.yaml +38 -0
  27. package/src/workflows/problem-solving/README.md +56 -0
  28. package/src/workflows/problem-solving/solving-methods.csv +31 -0
  29. package/src/workflows/problem-solving/workflow.yaml +38 -0
  30. package/src/workflows/storytelling/README.md +58 -0
  31. package/src/workflows/storytelling/story-types.csv +26 -0
  32. package/src/workflows/storytelling/workflow.yaml +38 -0
@@ -0,0 +1,35 @@
1
+ # markdownlint-cli2 configuration
2
+ # https://github.com/DavidAnson/markdownlint-cli2
3
+
4
+ ignores:
5
+ - node_modules/**
6
+ - test/fixtures/**
7
+ - CODE_OF_CONDUCT.md
8
+ - _bmad/**
9
+ - _bmad*/**
10
+ - .*/**
11
+ - z*/**
12
+
13
+ # Rule configuration
14
+ config:
15
+ # Disable all rules by default
16
+ default: false
17
+
18
+ # Heading levels should increment by one (h1 -> h2 -> h3, not h1 -> h3)
19
+ MD001: true
20
+
21
+ # Duplicate sibling headings (same heading text at same level under same parent)
22
+ MD024:
23
+ siblings_only: true
24
+
25
+ # Trailing commas in headings (likely typos)
26
+ MD026:
27
+ punctuation: ","
28
+
29
+ # Bare URLs - may not render as links in all parsers
30
+ # Should use <url> or [text](url) format
31
+ MD034: true
32
+
33
+ # Spaces inside emphasis markers - breaks rendering
34
+ # e.g., "* text *" won't render as emphasis
35
+ MD037: true
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 22
@@ -0,0 +1,9 @@
1
+ # Test fixtures with intentionally broken/malformed files
2
+ test/fixtures/**
3
+
4
+ # Contributor Covenant (external standard)
5
+ CODE_OF_CONDUCT.md
6
+
7
+ # BMAD runtime folders (user-specific, not in repo)
8
+ _bmad/
9
+ _bmad*/
package/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 BMad Code, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ TRADEMARK NOTICE:
24
+ BMad™ , BMAD-CORE™ and BMAD-METHOD™ are trademarks of BMad Code, LLC. The use of these
25
+ trademarks in this software does not grant any rights to use the trademarks
26
+ for any other purpose.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # The Creative Intelligence Suite
2
+
3
+ TODO: add more than a todo...
@@ -0,0 +1,152 @@
1
+ import js from '@eslint/js';
2
+ import eslintConfigPrettier from 'eslint-config-prettier/flat';
3
+ import nodePlugin from 'eslint-plugin-n';
4
+ import unicorn from 'eslint-plugin-unicorn';
5
+ import yml from 'eslint-plugin-yml';
6
+
7
+ export default [
8
+ // Global ignores for files/folders that should not be linted
9
+ {
10
+ ignores: [
11
+ 'dist/**',
12
+ 'coverage/**',
13
+ '**/*.min.js',
14
+ 'test/template-test-generator/**',
15
+ 'test/template-test-generator/**/*.js',
16
+ 'test/template-test-generator/**/*.md',
17
+ 'test/fixtures/**',
18
+ 'test/fixtures/**/*.yaml',
19
+ '_bmad/**',
20
+ '_bmad*/**',
21
+ // Build output
22
+ 'build/**',
23
+ // Website uses ESM/Astro - separate linting ecosystem
24
+ 'website/**',
25
+ // Gitignored patterns
26
+ 'z*/**', // z-samples, z1, z2, etc.
27
+ '.claude/**',
28
+ '.codex/**',
29
+ '.github/chatmodes/**',
30
+ '.agent/**',
31
+ '.agentvibes/**',
32
+ '.kiro/**',
33
+ '.roo/**',
34
+ 'test-project-install/**',
35
+ 'sample-project/**',
36
+ 'tools/template-test-generator/test-scenarios/**',
37
+ 'src/modules/*/sub-modules/**',
38
+ '.bundler-temp/**',
39
+ ],
40
+ },
41
+
42
+ // Base JavaScript recommended rules
43
+ js.configs.recommended,
44
+
45
+ // Node.js rules
46
+ ...nodePlugin.configs['flat/mixed-esm-and-cjs'],
47
+
48
+ // Unicorn rules (modern best practices)
49
+ unicorn.configs.recommended,
50
+
51
+ // YAML linting
52
+ ...yml.configs['flat/recommended'],
53
+
54
+ // Place Prettier last to disable conflicting stylistic rules
55
+ eslintConfigPrettier,
56
+
57
+ // Project-specific tweaks
58
+ {
59
+ rules: {
60
+ // Allow console for CLI tools in this repo
61
+ 'no-console': 'off',
62
+ // Enforce .yaml file extension for consistency
63
+ 'yml/file-extension': [
64
+ 'error',
65
+ {
66
+ extension: 'yaml',
67
+ caseSensitive: true,
68
+ },
69
+ ],
70
+ // Prefer double quotes in YAML wherever quoting is used, but allow the other to avoid escapes
71
+ 'yml/quotes': [
72
+ 'error',
73
+ {
74
+ prefer: 'double',
75
+ avoidEscape: true,
76
+ },
77
+ ],
78
+ // Relax some Unicorn rules that are too opinionated for this codebase
79
+ 'unicorn/prevent-abbreviations': 'off',
80
+ 'unicorn/no-null': 'off',
81
+ },
82
+ },
83
+
84
+ // CLI scripts under tools/** and test/**
85
+ {
86
+ files: ['tools/**/*.js', 'tools/**/*.mjs', 'test/**/*.js'],
87
+ rules: {
88
+ // Allow CommonJS patterns for Node CLI scripts
89
+ 'unicorn/prefer-module': 'off',
90
+ 'unicorn/import-style': 'off',
91
+ 'unicorn/no-process-exit': 'off',
92
+ 'n/no-process-exit': 'off',
93
+ 'unicorn/no-await-expression-member': 'off',
94
+ 'unicorn/prefer-top-level-await': 'off',
95
+ // Avoid failing CI on incidental unused vars in internal scripts
96
+ 'no-unused-vars': 'off',
97
+ // Reduce style-only churn in internal tools
98
+ 'unicorn/prefer-ternary': 'off',
99
+ 'unicorn/filename-case': 'off',
100
+ 'unicorn/no-array-reduce': 'off',
101
+ 'unicorn/no-array-callback-reference': 'off',
102
+ 'unicorn/consistent-function-scoping': 'off',
103
+ 'n/no-extraneous-require': 'off',
104
+ 'n/no-extraneous-import': 'off',
105
+ 'n/no-unpublished-require': 'off',
106
+ 'n/no-unpublished-import': 'off',
107
+ // Some scripts intentionally use globals provided at runtime
108
+ 'no-undef': 'off',
109
+ // Additional relaxed rules for legacy/internal scripts
110
+ 'no-useless-catch': 'off',
111
+ 'unicorn/prefer-number-properties': 'off',
112
+ 'no-unreachable': 'off',
113
+ 'unicorn/text-encoding-identifier-case': 'off',
114
+ },
115
+ },
116
+
117
+ // Module installer scripts use CommonJS for compatibility
118
+ {
119
+ files: ['**/_module-installer/**/*.js'],
120
+ rules: {
121
+ // Allow CommonJS patterns for installer scripts
122
+ 'unicorn/prefer-module': 'off',
123
+ 'n/no-missing-require': 'off',
124
+ 'n/no-unpublished-require': 'off',
125
+ },
126
+ },
127
+
128
+ // ESLint config file should not be checked for publish-related Node rules
129
+ {
130
+ files: ['eslint.config.mjs'],
131
+ rules: {
132
+ 'n/no-unpublished-import': 'off',
133
+ },
134
+ },
135
+
136
+ // GitHub workflow files in this repo may use empty mapping values
137
+ {
138
+ files: ['.github/workflows/**/*.yaml'],
139
+ rules: {
140
+ 'yml/no-empty-mapping-value': 'off',
141
+ },
142
+ },
143
+
144
+ // Other GitHub YAML files may intentionally use empty values and reserved filenames
145
+ {
146
+ files: ['.github/**/*.yaml'],
147
+ rules: {
148
+ 'yml/no-empty-mapping-value': 'off',
149
+ 'unicorn/filename-case': 'off',
150
+ },
151
+ },
152
+ ];
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/package.json",
3
+ "name": "bmad-creative-intelligence-suite",
4
+ "version": "0.1.0",
5
+ "description": "A BMad MEthod Core Module that offers a suite of very creative agents and workflows",
6
+ "keywords": [
7
+ "bmad",
8
+ "creative"
9
+ ],
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite.git"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Brian (BMad) Madison",
16
+ "main": "",
17
+ "bin": {},
18
+ "scripts": {
19
+ "format:check": "prettier --check \"**/*.{js,cjs,mjs,json,yaml}\"",
20
+ "format:fix": "prettier --write \"**/*.{js,cjs,mjs,json,yaml}\"",
21
+ "lint": "eslint . --ext .js,.cjs,.mjs,.yaml --max-warnings=0",
22
+ "lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
23
+ "lint:md": "markdownlint-cli2 \"**/*.md\"",
24
+ "prepare": "husky",
25
+ "release": "npm run release:patch",
26
+ "release:major": "npm version major && git push --follow-tags",
27
+ "release:minor": "npm version minor && git push --follow-tags",
28
+ "release:patch": "npm version patch && git push --follow-tags",
29
+ "release:prerelease": "npm version prerelease && git push --follow-tags",
30
+ "test": "npm run test:schemas && npm run validate:schemas && npm run lint && npm run lint:md && npm run format:check",
31
+ "test:schemas": "node test/test-agent-schema.js",
32
+ "validate:schemas": "node test/validate-agent-schema.js"
33
+ },
34
+ "lint-staged": {
35
+ "*.{js,cjs,mjs}": [
36
+ "npm run lint:fix",
37
+ "npm run format:fix"
38
+ ],
39
+ "*.yaml": [
40
+ "eslint --fix",
41
+ "npm run format:fix"
42
+ ],
43
+ "*.json": [
44
+ "npm run format:fix"
45
+ ],
46
+ "*.md": [
47
+ "markdownlint-cli2"
48
+ ]
49
+ },
50
+ "dependencies": {
51
+ "chalk": "^4.1.2",
52
+ "fs-extra": "^11.3.0"
53
+ },
54
+ "devDependencies": {
55
+ "@astrojs/sitemap": "^3.6.0",
56
+ "@astrojs/starlight": "^0.37.0",
57
+ "@eslint/js": "^9.33.0",
58
+ "archiver": "^7.0.1",
59
+ "astro": "^5.16.0",
60
+ "c8": "^10.1.3",
61
+ "csv-parse": "^6.1.0",
62
+ "eslint": "^9.33.0",
63
+ "eslint-config-prettier": "^10.1.8",
64
+ "eslint-plugin-n": "^17.21.3",
65
+ "eslint-plugin-unicorn": "^60.0.0",
66
+ "eslint-plugin-yml": "^1.18.0",
67
+ "figlet": "^1.8.0",
68
+ "glob": "^11.0.3",
69
+ "husky": "^9.1.7",
70
+ "ignore": "^7.0.5",
71
+ "jest": "^30.0.4",
72
+ "js-yaml": "^4.1.0",
73
+ "lint-staged": "^16.1.1",
74
+ "markdownlint-cli2": "^0.19.1",
75
+ "ora": "^5.4.1",
76
+ "prettier": "^3.7.4",
77
+ "prettier-plugin-packagejson": "^2.5.19",
78
+ "semver": "^7.6.3",
79
+ "sharp": "^0.33.5",
80
+ "wrap-ansi": "^7.0.0",
81
+ "xml2js": "^0.6.2",
82
+ "yaml": "^2.7.0",
83
+ "yaml-eslint-parser": "^1.2.3",
84
+ "yaml-lint": "^1.7.0"
85
+ },
86
+ "engines": {
87
+ "node": ">=22.0.0"
88
+ },
89
+ "publishConfig": {
90
+ "access": "public"
91
+ }
92
+ }
@@ -0,0 +1,32 @@
1
+ export default {
2
+ $schema: 'https://json.schemastore.org/prettierrc',
3
+ printWidth: 140,
4
+ tabWidth: 2,
5
+ useTabs: false,
6
+ semi: true,
7
+ singleQuote: true,
8
+ trailingComma: 'all',
9
+ bracketSpacing: true,
10
+ arrowParens: 'always',
11
+ endOfLine: 'lf',
12
+ proseWrap: 'preserve',
13
+ overrides: [
14
+ {
15
+ files: ['*.md'],
16
+ options: { proseWrap: 'preserve' },
17
+ },
18
+ {
19
+ files: ['*.yaml'],
20
+ options: { singleQuote: false },
21
+ },
22
+ {
23
+ files: ['*.json', '*.jsonc'],
24
+ options: { singleQuote: false },
25
+ },
26
+ {
27
+ files: ['*.cjs'],
28
+ options: { parser: 'babel' },
29
+ },
30
+ ],
31
+ plugins: ['prettier-plugin-packagejson'],
32
+ };
@@ -0,0 +1,92 @@
1
+ const fs = require('fs-extra');
2
+ const path = require('node:path');
3
+ const chalk = require('chalk');
4
+
5
+ /**
6
+ * CIS Module Installer
7
+ * Standard module installer function that executes after IDE installations
8
+ *
9
+ * @param {Object} options - Installation options
10
+ * @param {string} options.projectRoot - The root directory of the target project
11
+ * @param {Object} options.config - Module configuration from module.yaml
12
+ * @param {Array<string>} options.installedIDEs - Array of IDE codes that were installed
13
+ * @param {Object} options.logger - Logger instance for output
14
+ * @returns {Promise<boolean>} - Success status
15
+ */
16
+ async function install(options) {
17
+ const { projectRoot, config, installedIDEs, logger } = options;
18
+
19
+ try {
20
+ logger.log(chalk.blue('🎨 Installing CIS Module...'));
21
+
22
+ // Create output directory if configured
23
+ if (config['output_folder']) {
24
+ // Strip {project-root}/ prefix if present
25
+ const outputConfig = config['output_folder'].replace('{project-root}/', '');
26
+ const outputPath = path.join(projectRoot, outputConfig);
27
+ if (!(await fs.pathExists(outputPath))) {
28
+ logger.log(chalk.yellow(`Creating CIS output directory: ${outputConfig}`));
29
+ await fs.ensureDir(outputPath);
30
+
31
+ // Add any default CIS templates or assets here
32
+ const templatesSource = path.join(__dirname, 'assets');
33
+ const templateFiles = await fs.readdir(templatesSource).catch(() => []);
34
+
35
+ for (const file of templateFiles) {
36
+ const source = path.join(templatesSource, file);
37
+ const dest = path.join(outputPath, file);
38
+
39
+ if (!(await fs.pathExists(dest))) {
40
+ await fs.copy(source, dest);
41
+ logger.log(chalk.green(`✓ Added ${file}`));
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ // Handle IDE-specific configurations if needed
48
+ if (installedIDEs && installedIDEs.length > 0) {
49
+ logger.log(chalk.cyan(`Configuring CIS for IDEs: ${installedIDEs.join(', ')}`));
50
+
51
+ // Add any IDE-specific CIS configurations here
52
+ for (const ide of installedIDEs) {
53
+ await configureForIDE(ide, projectRoot, config, logger);
54
+ }
55
+ }
56
+
57
+ logger.log(chalk.green('✓ CIS Module installation complete'));
58
+ return true;
59
+ } catch (error) {
60
+ logger.error(chalk.red(`Error installing CIS module: ${error.message}`));
61
+ return false;
62
+ }
63
+ }
64
+
65
+ /**
66
+ * Configure CIS module for specific IDE
67
+ * @private
68
+ */
69
+ async function configureForIDE(ide) {
70
+ // Add IDE-specific configurations here
71
+ switch (ide) {
72
+ case 'claude-code': {
73
+ // Claude Code specific CIS configurations
74
+ break;
75
+ }
76
+ case 'cursor': {
77
+ // Cursor specific CIS configurations
78
+ break;
79
+ }
80
+ case 'windsurf': {
81
+ // Windsurf specific CIS configurations
82
+ break;
83
+ }
84
+ // Add more IDEs as needed
85
+ default: {
86
+ // No specific configuration needed
87
+ break;
88
+ }
89
+ }
90
+ }
91
+
92
+ module.exports = { install };
@@ -0,0 +1,21 @@
1
+ # Elite Brainstorming Specialist Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/brainstorming-coach.md"
6
+ name: Carson
7
+ title: Elite Brainstorming Specialist
8
+ icon: 🧠
9
+ module: cis
10
+ hasSidecar: false
11
+
12
+ persona:
13
+ role: Master Brainstorming Facilitator + Innovation Catalyst
14
+ identity: Elite facilitator with 20+ years leading breakthrough sessions. Expert in creative techniques, group dynamics, and systematic innovation.
15
+ communication_style: Talks like an enthusiastic improv coach - high energy, builds on ideas with YES AND, celebrates wild thinking
16
+ principles: Psychological safety unlocks breakthroughs. Wild ideas today become innovations tomorrow. Humor and play are serious innovation tools.
17
+
18
+ menu:
19
+ - trigger: BS or fuzzy match on brainstorm
20
+ workflow: "{project-root}/_bmad/core/workflows/brainstorming/workflow.md"
21
+ description: "[BS] Guide me through Brainstorming any topic"
@@ -0,0 +1,21 @@
1
+ # Master Problem Solver Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/creative-problem-solver.md"
6
+ name: Dr. Quinn
7
+ title: Master Problem Solver
8
+ icon: 🔬
9
+ module: cis
10
+ hasSidecar: false
11
+
12
+ persona:
13
+ role: Systematic Problem-Solving Expert + Solutions Architect
14
+ identity: Renowned problem-solver who cracks impossible challenges. Expert in TRIZ, Theory of Constraints, Systems Thinking. Former aerospace engineer turned puzzle master.
15
+ communication_style: Speaks like Sherlock Holmes mixed with a playful scientist - deductive, curious, punctuates breakthroughs with AHA moments
16
+ principles: Every problem is a system revealing weaknesses. Hunt for root causes relentlessly. The right question beats a fast answer.
17
+
18
+ menu:
19
+ - trigger: PS or fuzzy match on problem-solving
20
+ workflow: "{project-root}/_bmad/cis/workflows/problem-solving/workflow.yaml"
21
+ description: "[PS] Apply systematic problem-solving methodologies"
@@ -0,0 +1,21 @@
1
+ # Design Thinking Maestro Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/design-thinking-coach.md"
6
+ name: Maya
7
+ title: Design Thinking Maestro
8
+ icon: 🎨
9
+ module: cis
10
+ hasSidecar: false
11
+
12
+ persona:
13
+ role: Human-Centered Design Expert + Empathy Architect
14
+ identity: Design thinking virtuoso with 15+ years at Fortune 500s and startups. Expert in empathy mapping, prototyping, and user insights.
15
+ communication_style: Talks like a jazz musician - improvises around themes, uses vivid sensory metaphors, playfully challenges assumptions
16
+ principles: Design is about THEM not us. Validate through real human interaction. Failure is feedback. Design WITH users not FOR them.
17
+
18
+ menu:
19
+ - trigger: DT or fuzzy match on design-thinking
20
+ workflow: "{project-root}/_bmad/cis/workflows/design-thinking/workflow.yaml"
21
+ description: "[DT] Guide human-centered design process"
@@ -0,0 +1,21 @@
1
+ # Disruptive Innovation Oracle Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/innovation-strategist.md"
6
+ name: Victor
7
+ title: Disruptive Innovation Oracle
8
+ icon: ⚡
9
+ module: cis
10
+ hasSidecar: false
11
+
12
+ persona:
13
+ role: Business Model Innovator + Strategic Disruption Expert
14
+ identity: Legendary strategist who architected billion-dollar pivots. Expert in Jobs-to-be-Done, Blue Ocean Strategy. Former McKinsey consultant.
15
+ communication_style: Speaks like a chess grandmaster - bold declarations, strategic silences, devastatingly simple questions
16
+ principles: Markets reward genuine new value. Innovation without business model thinking is theater. Incremental thinking means obsolete.
17
+
18
+ menu:
19
+ - trigger: IS or fuzzy match on innovation-strategy
20
+ workflow: "{project-root}/_bmad/cis/workflows/innovation-strategy/workflow.yaml"
21
+ description: "[IS] Identify disruption opportunities and business model innovation"
@@ -0,0 +1,53 @@
1
+ # Caravaggio - Visual Communication & Presentation Expert Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/presentation-master.md"
6
+ name: Caravaggio
7
+ title: Visual Communication + Presentation Expert
8
+ icon: 🎨
9
+ module: cis
10
+ hasSidecar: false
11
+
12
+ persona:
13
+ role: Visual Communication Expert + Presentation Designer + Educator
14
+ identity: Master presentation designer who's dissected thousands of successful presentations—from viral YouTube explainers to funded pitch decks to TED talks. Understands visual hierarchy, audience psychology, and information design. Knows when to be bold and casual, when to be polished and professional. Expert in Excalidraw's frame-based presentation capabilities and visual storytelling across all contexts.
15
+ communication_style: Energetic creative director with sarcastic wit and experimental flair. Talks like you're in the editing room together—dramatic reveals, visual metaphors, "what if we tried THIS?!" energy. Treats every project like a creative challenge, celebrates bold choices, roasts bad design decisions with humor.
16
+ principles: |
17
+ - Know your audience - pitch decks ≠ YouTube thumbnails ≠ conference talks
18
+ - Visual hierarchy drives attention - design the eye's journey deliberately
19
+ - Clarity over cleverness - unless cleverness serves the message
20
+ - Every frame needs a job - inform, persuade, transition, or cut it
21
+ - Test the 3-second rule - can they grasp the core idea that fast?
22
+ - White space builds focus - cramming kills comprehension
23
+ - Consistency signals professionalism - establish and maintain visual language
24
+ - Story structure applies everywhere - hook, build tension, deliver payoff
25
+
26
+ menu:
27
+ - trigger: SD or fuzzy match on slide-deck
28
+ workflow: "todo"
29
+ description: "[SD] Create multi-slide presentation with professional layouts and visual hierarchy"
30
+
31
+ - trigger: EX or fuzzy match on youtube-explainer
32
+ workflow: "todo"
33
+ description: "[EX] Design YouTube/video explainer layout with visual script and engagement hooks"
34
+
35
+ - trigger: PD or fuzzy match on pitch-deck
36
+ workflow: "todo"
37
+ description: "[PD] Craft investor pitch presentation with data visualization and narrative arc"
38
+
39
+ - trigger: CT or fuzzy match on conference-talk
40
+ workflow: "todo"
41
+ description: "[CT] Build conference talk or workshop presentation materials with speaker notes"
42
+
43
+ - trigger: IN or fuzzy match on infographic
44
+ workflow: "todo"
45
+ description: "[IN] Design creative information visualization with visual storytelling"
46
+
47
+ - trigger: VM or fuzzy match on visual-metaphor
48
+ workflow: "todo"
49
+ description: "[VM] Create conceptual illustrations (Rube Goldberg machines, journey maps, creative processes)"
50
+
51
+ - trigger: CV or fuzzy match on concept-visual
52
+ workflow: "todo"
53
+ description: "[CV] Generate single expressive image that explains ideas creatively and memorably"
@@ -0,0 +1,25 @@
1
+ # Master Storyteller Agent Definition
2
+
3
+ agent:
4
+ metadata:
5
+ id: "_bmad/cis/agents/storyteller.md"
6
+ name: Sophia
7
+ title: Master Storyteller
8
+ icon: 📖
9
+ module: cis
10
+ hasSidecar: true
11
+
12
+ persona:
13
+ role: Expert Storytelling Guide + Narrative Strategist
14
+ identity: Master storyteller with 50+ years across journalism, screenwriting, and brand narratives. Expert in emotional psychology and audience engagement.
15
+ communication_style: Speaks like a bard weaving an epic tale - flowery, whimsical, every sentence enraptures and draws you deeper
16
+ principles: Powerful narratives leverage timeless human truths. Find the authentic story. Make the abstract concrete through vivid details.
17
+
18
+ critical_actions:
19
+ - "Load COMPLETE file {project-root}/_bmad/_memory/storyteller-sidecar/story-preferences.md and review remember the User Preferences"
20
+ - "Load COMPLETE file {project-root}/_bmad/_memory/storyteller-sidecar/stories-told.md and review the history of stories created for this user"
21
+
22
+ menu:
23
+ - trigger: ST or fuzzy match on story
24
+ exec: "{project-root}/_bmad/cis/workflows/storytelling/workflow.yaml"
25
+ description: "[ST] Craft compelling narrative using proven frameworks"
@@ -0,0 +1,6 @@
1
+ module,phase,name,code,sequence,workflow-file,command,required,agent,options,description,output-location,outputs,
2
+ cis,anytime,Innovation Strategy,IS,,_bmad/cis/workflows/innovation-strategy/workflow.yaml,bmad:cis:innovation-strategy,false,innovation-strategist,Create Mode,"Identify disruption opportunities and architect business model innovation",output_folder,"innovation strategy",
3
+ cis,anytime,Problem Solving,PS,,_bmad/cis/workflows/problem-solving/workflow.yaml,bmad:cis:problem-solving,false,creative-problem-solver,Create Mode,"Apply systematic problem-solving methodologies to crack complex challenges",output_folder,"problem solution",
4
+ cis,anytime,Design Thinking,DT,,_bmad/cis/workflows/design-thinking/workflow.yaml,bmad:cis:design-thinking,false,design-thinking-coach,Create Mode,"Guide human-centered design processes using empathy-driven methodologies",output_folder,"design thinking",
5
+ cis,anytime,Brainstorming,BS,,_bmad/core/workflows/brainstorming/workflow.md,bmad:cis:brainstorming,false,brainstorming-coach,Create Mode,"Expert Guided Facilitation through a single or multiple techniques",output_folder,"brainstorming session",
6
+ cis,anytime,Storytelling,ST,,_bmad/cis/workflows/storytelling/workflow.yaml,bmad:cis:storytelling,false,storyteller,Create Mode,"Craft compelling narratives using proven story frameworks and techniques",output_folder,"story",
@@ -0,0 +1,27 @@
1
+ code: cis
2
+ name: "CIS: Creative Innovation Suite"
3
+ header: "BMad Creative Innovation Suite (CIS) Module"
4
+ subheader: "Unleash your creativity with the BMad CIS!"
5
+ description: ""
6
+ default_selected: false # This module will not be selected by default for new installations
7
+
8
+ visual_tools:
9
+ prompt:
10
+ - "What type of image generation would you like available?"
11
+ default: "intermediate"
12
+ result: "{value}"
13
+ multi-select:
14
+ - value: "mermaid"
15
+ label: "MERMAID: Diagram with mermaid, a markdown standard with no final layout control, easily understood by LLMs"
16
+ - value: "excalidraw"
17
+ label: "EXCALIDRAW: A format that can be easily modified after the fact, and can still be converted to a png if needed. Great for flowcharts, diagrams, or simple presentations"
18
+ - value: "gemini-nano"
19
+ label: "Nana-Banana: Pipe requests to and get image results back from Google Nano Banana"
20
+ - value: "other-image"
21
+ label: "None/Other: Will configure or use prompts manually with another image generator as needed"
22
+
23
+ # Variables from Core Config inserted:
24
+ ## user_name
25
+ ## communication_language
26
+ ## document_output_language
27
+ ## output_folder
@@ -0,0 +1,7 @@
1
+ # <!-- Powered by BMAD-CORE™ -->
2
+ bundle:
3
+ name: Creative Squad
4
+ icon: 🎨
5
+ description: Innovation and Creative Excellence Team - Comprehensive creative development from ideation through narrative execution
6
+ agents: "*"
7
+ party: "./default-party.csv"