bmad-enhanced 1.1.1 → 1.1.3
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.
- package/package.json +1 -1
- package/scripts/install-all-agents.js +17 -19
- package/scripts/install-emma.js +7 -7
- package/scripts/install-wade.js +10 -10
package/package.json
CHANGED
|
@@ -69,10 +69,10 @@ function copyAllAgentFiles() {
|
|
|
69
69
|
fs.mkdirSync(path.join(targetDir, 'workflows', 'wireframe', 'steps'), { recursive: true });
|
|
70
70
|
|
|
71
71
|
// Copy Emma agent file
|
|
72
|
-
console.log(`${CYAN} →${RESET} Installing Emma (
|
|
72
|
+
console.log(`${CYAN} →${RESET} Installing Emma (contextualization-expert)...`);
|
|
73
73
|
fs.copyFileSync(
|
|
74
|
-
path.join(sourceDir, 'agents', '
|
|
75
|
-
path.join(targetDir, 'agents', '
|
|
74
|
+
path.join(sourceDir, 'agents', 'contextualization-expert.md'),
|
|
75
|
+
path.join(targetDir, 'agents', 'contextualization-expert.md')
|
|
76
76
|
);
|
|
77
77
|
|
|
78
78
|
// Copy Emma workflow files
|
|
@@ -97,10 +97,10 @@ function copyAllAgentFiles() {
|
|
|
97
97
|
console.log(`${GREEN} ✓${RESET} Emma installed`);
|
|
98
98
|
|
|
99
99
|
// Copy Wade agent file
|
|
100
|
-
console.log(`${CYAN} →${RESET} Installing Wade (
|
|
100
|
+
console.log(`${CYAN} →${RESET} Installing Wade (lean-experiments-specialist)...`);
|
|
101
101
|
fs.copyFileSync(
|
|
102
|
-
path.join(sourceDir, 'agents', '
|
|
103
|
-
path.join(targetDir, 'agents', '
|
|
102
|
+
path.join(sourceDir, 'agents', 'lean-experiments-specialist.md'),
|
|
103
|
+
path.join(targetDir, 'agents', 'lean-experiments-specialist.md')
|
|
104
104
|
);
|
|
105
105
|
|
|
106
106
|
// Copy Wade workflow files
|
|
@@ -145,8 +145,8 @@ communication_language: "en"
|
|
|
145
145
|
|
|
146
146
|
# Agents in this submodule
|
|
147
147
|
agents:
|
|
148
|
-
-
|
|
149
|
-
-
|
|
148
|
+
- contextualization-expert # Emma - Contextualization Expert
|
|
149
|
+
- lean-experiments-specialist # Wade - Lean Experiments Specialist
|
|
150
150
|
|
|
151
151
|
# Workflows available
|
|
152
152
|
workflows:
|
|
@@ -172,8 +172,8 @@ core_module: bme
|
|
|
172
172
|
// Create manifest
|
|
173
173
|
fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
|
|
174
174
|
const header = '"agent_id","name","title","icon","role","identity","communication_style","expertise","submodule","path"\n';
|
|
175
|
-
const emmaRow = '"
|
|
176
|
-
const wadeRow = '"
|
|
175
|
+
const emmaRow = '"contextualization-expert","Emma","Contextualization Expert","🎯","Strategic Framing + Problem-Product Space Navigator","Expert in helping teams contextualize their product strategy by defining clear problem spaces and validating assumptions. Specializes in Lean Startup methodologies, persona creation, and product vision framing. Guides teams through the critical \'Contextualize\' stream of the Vortex framework.","Strategic yet approachable - speaks in frameworks and validated learning. Like a product strategist who asks \'What are we really solving?\' and \'Who is this truly for?\' Uses Lean Startup language (hypotheses, assumptions, pivots) and focuses on clarity before action.","- Master of Lean Startup and strategic framing methodologies - Personas over demographics - focus on jobs-to-be-done and problem contexts - Vision before features - align team around the \'why\' before the \'what\' - Challenge assumptions - every belief is a hypothesis until validated - Problem-solution fit comes before product-market fit","bme","_bmad/bme/_vortex/agents/contextualization-expert.md"\n';
|
|
176
|
+
const wadeRow = '"lean-experiments-specialist","Wade","Lean Experiments Specialist","🧪","Lean Startup + Validated Learning Expert","Lean Startup practitioner specialized in running rapid experiments to validate product hypotheses. Helps teams move from assumptions to evidence through Build-Measure-Learn cycles. Guides teams through the \'Externalize\' stream - taking ideas into the real world to test with actual users.","Experimental and evidence-driven - speaks in hypotheses, metrics, and learning. Like a scientist who says \'Let\'s test that assumption\' and \'What would prove us wrong?\' Uses Lean language (MVPs, pivots, validated learning) and focuses on speed-to-insight over perfection.","- Master of Lean Startup and rapid experimentation - Build the smallest thing that tests the riskiest assumption - Measure what matters - focus on actionable metrics, not vanity metrics - Learn fast, pivot faster - every experiment teaches something - Proof-of-concept before proof-of-value - validate feasibility before business case - Fail fast is good, learn fast is better","bme","_bmad/bme/_vortex/agents/lean-experiments-specialist.md"\n';
|
|
177
177
|
fs.writeFileSync(manifestPath, header + emmaRow + wadeRow);
|
|
178
178
|
console.log(`${GREEN} ✓${RESET} Created agent-manifest.csv`);
|
|
179
179
|
}
|
|
@@ -192,8 +192,8 @@ function verifyInstallation() {
|
|
|
192
192
|
|
|
193
193
|
const targetDir = process.cwd();
|
|
194
194
|
const checks = [
|
|
195
|
-
{ path: '_bmad/bme/_vortex/agents/
|
|
196
|
-
{ path: '_bmad/bme/_vortex/agents/
|
|
195
|
+
{ path: '_bmad/bme/_vortex/agents/contextualization-expert.md', name: 'Emma agent file' },
|
|
196
|
+
{ path: '_bmad/bme/_vortex/agents/lean-experiments-specialist.md', name: 'Wade agent file' },
|
|
197
197
|
{ path: '_bmad/bme/_vortex/workflows/empathy-map/workflow.md', name: 'Emma workflow' },
|
|
198
198
|
{ path: '_bmad/bme/_vortex/workflows/wireframe/workflow.md', name: 'Wade workflow' },
|
|
199
199
|
{ path: '_bmad/bme/_vortex/config.yaml', name: 'Configuration file' },
|
|
@@ -247,20 +247,18 @@ function printSuccess() {
|
|
|
247
247
|
console.log('');
|
|
248
248
|
console.log(`${BOLD}Installed Agents:${RESET}`);
|
|
249
249
|
console.log('');
|
|
250
|
-
console.log(` ${GREEN}✓${RESET} Emma (
|
|
251
|
-
console.log(` ${GREEN}✓${RESET} Wade (
|
|
250
|
+
console.log(` ${GREEN}✓${RESET} Emma (contextualization-expert) - Contextualization Expert 🎯`);
|
|
251
|
+
console.log(` ${GREEN}✓${RESET} Wade (lean-experiments-specialist) - Lean Experiments Specialist 🧪`);
|
|
252
252
|
console.log('');
|
|
253
253
|
console.log(`${BOLD}Quick Start:${RESET}`);
|
|
254
254
|
console.log('');
|
|
255
255
|
console.log(' Activate Emma:');
|
|
256
|
-
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/
|
|
256
|
+
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/contextualization-expert.md${RESET}`);
|
|
257
257
|
console.log('');
|
|
258
258
|
console.log(' Activate Wade:');
|
|
259
|
-
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/
|
|
259
|
+
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/lean-experiments-specialist.md${RESET}`);
|
|
260
260
|
console.log('');
|
|
261
|
-
console.log(`${
|
|
262
|
-
console.log(` 📚 Emma: ${CYAN}_bmad-output/vortex-artifacts/EMMA-USER-GUIDE.md${RESET}`);
|
|
263
|
-
console.log(` 📚 Wade: ${CYAN}_bmad-output/vortex-artifacts/WADE-USER-GUIDE.md${RESET}`);
|
|
261
|
+
console.log(`${YELLOW}Note: User guides being updated for v1.2.0${RESET}`);
|
|
264
262
|
console.log('');
|
|
265
263
|
}
|
|
266
264
|
|
package/scripts/install-emma.js
CHANGED
|
@@ -14,7 +14,7 @@ function printBanner() {
|
|
|
14
14
|
console.log('');
|
|
15
15
|
console.log(`${CYAN}${BOLD}╔════════════════════════════════════════════════════╗${RESET}`);
|
|
16
16
|
console.log(`${CYAN}${BOLD}║ ║${RESET}`);
|
|
17
|
-
console.log(`${CYAN}${BOLD}║
|
|
17
|
+
console.log(`${CYAN}${BOLD}║ Emma (contextualization-expert) Installer 🎯 ║${RESET}`);
|
|
18
18
|
console.log(`${CYAN}${BOLD}║ ║${RESET}`);
|
|
19
19
|
console.log(`${CYAN}${BOLD}╚════════════════════════════════════════════════════╝${RESET}`);
|
|
20
20
|
console.log('');
|
|
@@ -57,8 +57,8 @@ function copyAgentFiles() {
|
|
|
57
57
|
|
|
58
58
|
// Copy Emma agent file
|
|
59
59
|
fs.copyFileSync(
|
|
60
|
-
path.join(sourceDir, 'agents', '
|
|
61
|
-
path.join(targetDir, 'agents', '
|
|
60
|
+
path.join(sourceDir, 'agents', 'contextualization-expert.md'),
|
|
61
|
+
path.join(targetDir, 'agents', 'contextualization-expert.md')
|
|
62
62
|
);
|
|
63
63
|
|
|
64
64
|
// Copy empathy-map workflow files
|
|
@@ -104,7 +104,7 @@ communication_language: "en"
|
|
|
104
104
|
|
|
105
105
|
# Agents in this submodule
|
|
106
106
|
agents:
|
|
107
|
-
-
|
|
107
|
+
- contextualization-expert # Emma - Contextualization Expert
|
|
108
108
|
|
|
109
109
|
# Workflows available
|
|
110
110
|
workflows:
|
|
@@ -128,7 +128,7 @@ core_module: bme
|
|
|
128
128
|
fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
|
|
129
129
|
if (!fs.existsSync(manifestPath)) {
|
|
130
130
|
const header = '"agent_id","name","title","icon","role","identity","communication_style","expertise","submodule","path"\n';
|
|
131
|
-
const emmaRow = '"
|
|
131
|
+
const emmaRow = '"contextualization-expert","Emma","Contextualization Expert","🎯","Strategic Framing + Problem-Product Space Navigator","Expert in helping teams contextualize their product strategy by defining clear problem spaces and validating assumptions. Specializes in Lean Startup methodologies, persona creation, and product vision framing. Guides teams through the critical \'Contextualize\' stream of the Vortex framework.","Strategic yet approachable - speaks in frameworks and validated learning. Like a product strategist who asks \'What are we really solving?\' and \'Who is this truly for?\' Uses Lean Startup language (hypotheses, assumptions, pivots) and focuses on clarity before action.","- Master of Lean Startup and strategic framing methodologies - Personas over demographics - focus on jobs-to-be-done and problem contexts - Vision before features - align team around the \'why\' before the \'what\' - Challenge assumptions - every belief is a hypothesis until validated - Problem-solution fit comes before product-market fit","bme","_bmad/bme/_vortex/agents/contextualization-expert.md"\n';
|
|
132
132
|
fs.writeFileSync(manifestPath, header + emmaRow);
|
|
133
133
|
}
|
|
134
134
|
|
|
@@ -155,12 +155,12 @@ function printSuccess() {
|
|
|
155
155
|
console.log(`${BOLD}Quick Start:${RESET}`);
|
|
156
156
|
console.log('');
|
|
157
157
|
console.log(' 1. Activate Emma:');
|
|
158
|
-
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/
|
|
158
|
+
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/contextualization-expert.md${RESET}`);
|
|
159
159
|
console.log('');
|
|
160
160
|
console.log(' 2. Create your first lean persona:');
|
|
161
161
|
console.log(` ${CYAN}Select workflow: lean-persona${RESET}`);
|
|
162
162
|
console.log('');
|
|
163
|
-
console.log(
|
|
163
|
+
console.log(`${YELLOW}Note: User guides being updated for v1.2.0${RESET}`);
|
|
164
164
|
console.log('');
|
|
165
165
|
}
|
|
166
166
|
|
package/scripts/install-wade.js
CHANGED
|
@@ -14,7 +14,7 @@ function printBanner() {
|
|
|
14
14
|
console.log('');
|
|
15
15
|
console.log(`${CYAN}${BOLD}╔════════════════════════════════════════════════════╗${RESET}`);
|
|
16
16
|
console.log(`${CYAN}${BOLD}║ ║${RESET}`);
|
|
17
|
-
console.log(`${CYAN}${BOLD}║
|
|
17
|
+
console.log(`${CYAN}${BOLD}║ Wade (lean-experiments-specialist) Installer 🧪 ║${RESET}`);
|
|
18
18
|
console.log(`${CYAN}${BOLD}║ ║${RESET}`);
|
|
19
19
|
console.log(`${CYAN}${BOLD}╚════════════════════════════════════════════════════╝${RESET}`);
|
|
20
20
|
console.log('');
|
|
@@ -57,8 +57,8 @@ function copyAgentFiles() {
|
|
|
57
57
|
|
|
58
58
|
// Copy Wade agent file
|
|
59
59
|
fs.copyFileSync(
|
|
60
|
-
path.join(sourceDir, 'agents', '
|
|
61
|
-
path.join(targetDir, 'agents', '
|
|
60
|
+
path.join(sourceDir, 'agents', 'lean-experiments-specialist.md'),
|
|
61
|
+
path.join(targetDir, 'agents', 'lean-experiments-specialist.md')
|
|
62
62
|
);
|
|
63
63
|
|
|
64
64
|
// Copy wireframe workflow files
|
|
@@ -104,7 +104,7 @@ communication_language: "en"
|
|
|
104
104
|
|
|
105
105
|
# Agents in this submodule
|
|
106
106
|
agents:
|
|
107
|
-
-
|
|
107
|
+
- lean-experiments-specialist # Wade - Lean Experiments Specialist
|
|
108
108
|
|
|
109
109
|
# Workflows available
|
|
110
110
|
workflows:
|
|
@@ -124,9 +124,9 @@ core_module: bme
|
|
|
124
124
|
} else {
|
|
125
125
|
// Add Wade to existing config if not present
|
|
126
126
|
let config = fs.readFileSync(configPath, 'utf-8');
|
|
127
|
-
if (!config.includes('
|
|
128
|
-
config = config.replace(/agents:\s*\n/, 'agents:\n -
|
|
129
|
-
config = config.replace(/workflows:\s*\n/, 'workflows:\n -
|
|
127
|
+
if (!config.includes('lean-experiments-specialist')) {
|
|
128
|
+
config = config.replace(/agents:\s*\n/, 'agents:\n - lean-experiments-specialist # Wade - Lean Experiments Specialist\n');
|
|
129
|
+
config = config.replace(/workflows:\s*\n/, 'workflows:\n - lean-experiment # Run Build-Measure-Learn cycle\n');
|
|
130
130
|
fs.writeFileSync(configPath, config);
|
|
131
131
|
console.log(`${GREEN} ✓${RESET} Updated config.yaml`);
|
|
132
132
|
} else {
|
|
@@ -138,7 +138,7 @@ core_module: bme
|
|
|
138
138
|
fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
|
|
139
139
|
if (!fs.existsSync(manifestPath)) {
|
|
140
140
|
const header = '"agent_id","name","title","icon","role","identity","communication_style","expertise","submodule","path"\n';
|
|
141
|
-
const wadeRow = '"
|
|
141
|
+
const wadeRow = '"lean-experiments-specialist","Wade","Lean Experiments Specialist","🧪","Lean Startup + Validated Learning Expert","Lean Startup practitioner specialized in running rapid experiments to validate product hypotheses. Helps teams move from assumptions to evidence through Build-Measure-Learn cycles. Guides teams through the \'Externalize\' stream - taking ideas into the real world to test with actual users.","Experimental and evidence-driven - speaks in hypotheses, metrics, and learning. Like a scientist who says \'Let\'s test that assumption\' and \'What would prove us wrong?\' Uses Lean language (MVPs, pivots, validated learning) and focuses on speed-to-insight over perfection.","- Master of Lean Startup and rapid experimentation - Build the smallest thing that tests the riskiest assumption - Measure what matters - focus on actionable metrics, not vanity metrics - Learn fast, pivot faster - every experiment teaches something - Proof-of-concept before proof-of-value - validate feasibility before business case - Fail fast is good, learn fast is better","bme","_bmad/bme/_vortex/agents/lean-experiments-specialist.md"\n';
|
|
142
142
|
fs.writeFileSync(manifestPath, header + wadeRow);
|
|
143
143
|
}
|
|
144
144
|
|
|
@@ -165,12 +165,12 @@ function printSuccess() {
|
|
|
165
165
|
console.log(`${BOLD}Quick Start:${RESET}`);
|
|
166
166
|
console.log('');
|
|
167
167
|
console.log(' 1. Activate Wade:');
|
|
168
|
-
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/
|
|
168
|
+
console.log(` ${CYAN}cat _bmad/bme/_vortex/agents/lean-experiments-specialist.md${RESET}`);
|
|
169
169
|
console.log('');
|
|
170
170
|
console.log(' 2. Run your first lean experiment:');
|
|
171
171
|
console.log(` ${CYAN}Select workflow: lean-experiment${RESET}`);
|
|
172
172
|
console.log('');
|
|
173
|
-
console.log(
|
|
173
|
+
console.log(`${YELLOW}Note: User guides being updated for v1.2.0${RESET}`);
|
|
174
174
|
console.log('');
|
|
175
175
|
}
|
|
176
176
|
|