bmad-enhanced 1.0.0-alpha

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/INSTALLATION.md +367 -0
  2. package/LICENSE +21 -0
  3. package/README.md +635 -0
  4. package/_bmad/bme/_config/module.yaml +52 -0
  5. package/_bmad/bme/_designos/agents/empathy-mapper.md +97 -0
  6. package/_bmad/bme/_designos/agents/wireframe-designer.md +114 -0
  7. package/_bmad/bme/_designos/config.yaml +24 -0
  8. package/_bmad/bme/_designos/workflows/empathy-map/empathy-map.template.md +143 -0
  9. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-01-define-user.md +60 -0
  10. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-02-says-thinks.md +67 -0
  11. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-03-does-feels.md +79 -0
  12. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-04-pain-points.md +87 -0
  13. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-05-gains.md +103 -0
  14. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-06-synthesize.md +104 -0
  15. package/_bmad/bme/_designos/workflows/empathy-map/validate.md +117 -0
  16. package/_bmad/bme/_designos/workflows/empathy-map/workflow.md +44 -0
  17. package/_bmad/bme/_designos/workflows/wireframe/steps/step-01-define-requirements.md +85 -0
  18. package/_bmad/bme/_designos/workflows/wireframe/steps/step-02-user-flows.md +59 -0
  19. package/_bmad/bme/_designos/workflows/wireframe/steps/step-03-information-architecture.md +68 -0
  20. package/_bmad/bme/_designos/workflows/wireframe/steps/step-04-wireframe-sketch.md +97 -0
  21. package/_bmad/bme/_designos/workflows/wireframe/steps/step-05-components.md +128 -0
  22. package/_bmad/bme/_designos/workflows/wireframe/steps/step-06-synthesize.md +83 -0
  23. package/_bmad/bme/_designos/workflows/wireframe/wireframe.template.md +287 -0
  24. package/_bmad/bme/_designos/workflows/wireframe/workflow.md +44 -0
  25. package/_bmad-output/README.md +228 -0
  26. package/index.js +75 -0
  27. package/package.json +34 -0
  28. package/scripts/README.md +194 -0
  29. package/scripts/install-all-agents.js +265 -0
  30. package/scripts/install-emma.js +168 -0
  31. package/scripts/install-wade.js +177 -0
  32. package/scripts/postinstall.js +15 -0
@@ -0,0 +1,367 @@
1
+ # BMAD-Enhanced Installation Guide
2
+
3
+ Complete guide to installing BMAD-Enhanced agents into your project.
4
+
5
+ ---
6
+
7
+ ## ⚠️ Prerequisites
8
+
9
+ **BMAD Method Required**
10
+
11
+ BMAD-Enhanced is an **extension package** for the [BMAD Method](https://github.com/bmadhub/bmad). You **must** install BMAD Method first.
12
+
13
+ ### Step 1: Install BMAD Method
14
+
15
+ ```bash
16
+ # Install BMAD Method using npx
17
+ npx bmad-method@alpha install
18
+
19
+ # Verify BMAD is installed
20
+ ls _bmad/ # Should show BMAD directory structure
21
+ ```
22
+
23
+ ### Step 2: Install BMAD-Enhanced Agents
24
+
25
+ Once BMAD Method is installed, proceed with BMAD-Enhanced installation below.
26
+
27
+ ---
28
+
29
+ ## Quick Install
30
+
31
+ **Install all agents at once:**
32
+
33
+ ```bash
34
+ # From your project directory (where BMAD Method is installed)
35
+ npm install bmad-enhanced
36
+ npm run install:agents
37
+ ```
38
+
39
+ That's it! Emma and Wade are now added to your BMAD installation.
40
+
41
+ ---
42
+
43
+ ## Installation Options
44
+
45
+ ### Option 1: Install All Agents (Recommended)
46
+
47
+ Install both Emma (empathy-mapper) and Wade (wireframe-designer) at once.
48
+
49
+ ```bash
50
+ npm install bmad-enhanced
51
+ npm run install:agents
52
+ ```
53
+
54
+ **Output:**
55
+ ```
56
+ ╔════════════════════════════════════════════════════╗
57
+ ║ ║
58
+ ║ BMAD-Enhanced Complete Installer 🚀 ║
59
+ ║ ║
60
+ ║ Installing Emma + Wade Design Agents ║
61
+ ║ ║
62
+ ╚════════════════════════════════════════════════════╝
63
+
64
+ [1/5] Checking prerequisites...
65
+ ✓ Prerequisites met
66
+ [2/5] Installing Emma + Wade agent files...
67
+ → Installing Emma (empathy-mapper)...
68
+ ✓ Emma installed
69
+ → Installing Wade (wireframe-designer)...
70
+ ✓ Wade installed
71
+ [3/5] Configuring agents...
72
+ ✓ Created config.yaml
73
+ ✓ Created agent-manifest.csv
74
+ [4/5] Setting up output directory...
75
+ ✓ Output directory ready
76
+ [5/5] Installing user guides...
77
+ ✓ User guides installed
78
+
79
+ ╔════════════════════════════════════════════════════╗
80
+ ║ ║
81
+ ║ ✓ All Agents Successfully Installed! 🎉 ║
82
+ ║ ║
83
+ ╚════════════════════════════════════════════════════╝
84
+
85
+ Installed Agents:
86
+
87
+ ✓ Emma (empathy-mapper) - Empathy Mapping Specialist 🎨
88
+ ✓ Wade (wireframe-designer) - Wireframe Design Expert 🎨
89
+ ```
90
+
91
+ ---
92
+
93
+ ### Option 2: Install Individual Agents
94
+
95
+ Install Emma or Wade separately.
96
+
97
+ **Install Emma only:**
98
+ ```bash
99
+ npm install bmad-enhanced
100
+ npm run install:emma
101
+ ```
102
+
103
+ **Install Wade only:**
104
+ ```bash
105
+ npm install bmad-enhanced
106
+ npm run install:wade
107
+ ```
108
+
109
+ ---
110
+
111
+ ### Option 3: Clone from Source
112
+
113
+ For contributors or advanced users who want to modify agents.
114
+
115
+ ```bash
116
+ git clone https://github.com/yourusername/BMAD-Enhanced.git
117
+ cd BMAD-Enhanced
118
+ npm install
119
+ ```
120
+
121
+ Agents are already installed in the repository. No additional steps needed.
122
+
123
+ ---
124
+
125
+ ## What Gets Installed
126
+
127
+ ### Directory Structure
128
+
129
+ ```
130
+ your-project/
131
+ ├── _bmad/
132
+ │ ├── bme/
133
+ │ │ └── _designos/
134
+ │ │ ├── agents/
135
+ │ │ │ ├── empathy-mapper.md # Emma agent definition
136
+ │ │ │ └── wireframe-designer.md # Wade agent definition
137
+ │ │ ├── workflows/
138
+ │ │ │ ├── empathy-map/
139
+ │ │ │ │ ├── workflow.md # Main empathy map workflow
140
+ │ │ │ │ ├── empathy-map.template.md # Output template
141
+ │ │ │ │ └── steps/
142
+ │ │ │ │ ├── step-01-define-user.md
143
+ │ │ │ │ ├── step-02-says-thinks.md
144
+ │ │ │ │ ├── step-03-does-feels.md
145
+ │ │ │ │ ├── step-04-pain-points.md
146
+ │ │ │ │ ├── step-05-gains.md
147
+ │ │ │ │ └── step-06-synthesize.md
148
+ │ │ │ └── wireframe/
149
+ │ │ │ ├── workflow.md # Main wireframe workflow
150
+ │ │ │ ├── wireframe.template.md # Output template
151
+ │ │ │ └── steps/
152
+ │ │ │ ├── step-01-define-requirements.md
153
+ │ │ │ ├── step-02-user-flows.md
154
+ │ │ │ ├── step-03-information-architecture.md
155
+ │ │ │ ├── step-04-wireframe-sketch.md
156
+ │ │ │ ├── step-05-components-interactions.md
157
+ │ │ │ └── step-06-synthesize.md
158
+ │ │ └── config.yaml # Agent configuration
159
+ │ └── _config/
160
+ │ └── agent-manifest.csv # Agent registry
161
+ └── _bmad-output/
162
+ └── design-artifacts/
163
+ ├── EMMA-USER-GUIDE.md # Complete Emma documentation
164
+ ├── WADE-USER-GUIDE.md # Complete Wade documentation
165
+ └── (your generated artifacts) # Empathy maps, wireframes, etc.
166
+ ```
167
+
168
+ ### File Sizes
169
+
170
+ - **Emma Agent Files:** ~45KB (agent + 6 workflow steps + template)
171
+ - **Wade Agent Files:** ~52KB (agent + 6 workflow steps + template)
172
+ - **Emma User Guide:** 16KB
173
+ - **Wade User Guide:** 16KB
174
+ - **Total:** ~129KB
175
+
176
+ ---
177
+
178
+ ## Configuration
179
+
180
+ ### config.yaml
181
+
182
+ Default configuration created during installation:
183
+
184
+ ```yaml
185
+ # BMAD _designos Configuration
186
+ # Used by: Emma (empathy-mapper), Wade (wireframe-designer)
187
+
188
+ user_name: "User"
189
+ communication_language: "English"
190
+ output_folder: "_bmad-output/design-artifacts"
191
+
192
+ agents:
193
+ - empathy-mapper # Emma - Empathy Mapping Specialist
194
+ - wireframe-designer # Wade - Wireframe Specialist
195
+
196
+ workflows:
197
+ - empathy-map # Create empathy maps
198
+ - wireframe # Create wireframes
199
+ ```
200
+
201
+ **Customization:**
202
+ - `user_name`: Your name (used in agent greetings)
203
+ - `communication_language`: Language for agent communication
204
+ - `output_folder`: Where artifacts are saved
205
+
206
+ ---
207
+
208
+ ## Verification
209
+
210
+ After installation, verify agents are working:
211
+
212
+ ### Test Emma
213
+
214
+ ```bash
215
+ cat _bmad/bme/_designos/agents/empathy-mapper.md
216
+ ```
217
+
218
+ **Expected output:**
219
+ ```
220
+ Hey there! Emma here - your empathy mapping specialist. 🎨
221
+
222
+ I help teams build deep understanding of users through structured empathy mapping...
223
+
224
+ Here's what I can do for you:
225
+
226
+ 1. [MH] Redisplay Menu Help
227
+ 2. [CH] Chat with Emma about empathy mapping, user research, or Jobs-to-be-Done
228
+ 3. [EM] Create Empathy Map: Guided 5-step process to create comprehensive empathy maps
229
+ 4. [VM] Validate Empathy Map: Review existing empathy map against research best practices
230
+ 5. [PM] Start Party Mode
231
+ 6. [DA] Dismiss Agent
232
+
233
+ What would you like to do?
234
+ ```
235
+
236
+ ### Test Wade
237
+
238
+ ```bash
239
+ cat _bmad/bme/_designos/agents/wireframe-designer.md
240
+ ```
241
+
242
+ **Expected output:**
243
+ ```
244
+ Hey there! Wade here - your wireframe design specialist. 🎨
245
+
246
+ Ready to turn ideas into structured layouts? I'll help you create wireframes...
247
+
248
+ Here's what I can do for you:
249
+
250
+ 1. [MH] Redisplay Menu Help
251
+ 2. [CH] Chat with Wade about wireframe design, UI patterns, or information architecture
252
+ 3. [WM] Create Wireframe: Guided 6-step process to create comprehensive wireframe artifacts
253
+ 4. [VM] Validate Wireframe: Review existing wireframe against usability principles
254
+ 5. [PM] Start Party Mode
255
+ 6. [DA] Dismiss Agent
256
+
257
+ What would you like to do?
258
+ ```
259
+
260
+ ---
261
+
262
+ ## Troubleshooting
263
+
264
+ ### Installation fails with "Cannot find module 'fs-extra'"
265
+
266
+ **Solution:**
267
+ ```bash
268
+ npm install fs-extra chalk
269
+ npm run install:agents
270
+ ```
271
+
272
+ ### Permission denied errors
273
+
274
+ **Solution:**
275
+ ```bash
276
+ chmod +x scripts/*.js
277
+ npm run install:agents
278
+ ```
279
+
280
+ ### Config file already exists
281
+
282
+ The installers are smart - they will:
283
+ - Update existing config files (not overwrite)
284
+ - Add missing agents to existing configuration
285
+ - Preserve your custom settings
286
+
287
+ To force a clean installation:
288
+ ```bash
289
+ rm -rf _bmad/bme/_designos/
290
+ npm run install:agents
291
+ ```
292
+
293
+ ### Installation succeeds but agents don't activate
294
+
295
+ **Check file paths:**
296
+ ```bash
297
+ # Should list agent files
298
+ ls -la _bmad/bme/_designos/agents/
299
+
300
+ # Should list workflow files
301
+ ls -la _bmad/bme/_designos/workflows/empathy-map/
302
+ ls -la _bmad/bme/_designos/workflows/wireframe/
303
+ ```
304
+
305
+ **Check config:**
306
+ ```bash
307
+ cat _bmad/bme/_designos/config.yaml
308
+ ```
309
+
310
+ ---
311
+
312
+ ## Next Steps
313
+
314
+ After successful installation:
315
+
316
+ 1. **Read User Guides**
317
+ - Emma: `_bmad-output/design-artifacts/EMMA-USER-GUIDE.md`
318
+ - Wade: `_bmad-output/design-artifacts/WADE-USER-GUIDE.md`
319
+
320
+ 2. **Create Your First Empathy Map**
321
+ ```bash
322
+ cat _bmad/bme/_designos/agents/empathy-mapper.md
323
+ # Then type: EM
324
+ ```
325
+
326
+ 3. **Create Your First Wireframe**
327
+ ```bash
328
+ cat _bmad/bme/_designos/agents/wireframe-designer.md
329
+ # Then type: WM
330
+ ```
331
+
332
+ 4. **Explore Advanced Features**
333
+ - Party Mode: Collaborate with multiple agents
334
+ - Validation workflows: Review and improve artifacts
335
+ - Custom templates: Modify output templates for your needs
336
+
337
+ ---
338
+
339
+ ## Uninstallation
340
+
341
+ To remove BMAD-Enhanced agents:
342
+
343
+ ```bash
344
+ # Remove all agent files
345
+ rm -rf _bmad/bme/_designos/
346
+
347
+ # Remove output directory (keeps your artifacts)
348
+ # WARNING: This deletes all empathy maps and wireframes!
349
+ rm -rf _bmad-output/design-artifacts/
350
+
351
+ # Uninstall npm package
352
+ npm uninstall bmad-enhanced
353
+ ```
354
+
355
+ ---
356
+
357
+ ## Support
358
+
359
+ - **User Guides:** See `_bmad-output/design-artifacts/` after installation
360
+ - **Issues:** https://github.com/yourusername/BMAD-Enhanced/issues
361
+ - **Documentation:** [README.md](README.md)
362
+
363
+ ---
364
+
365
+ **Version:** 1.0.0-alpha
366
+ **Last Updated:** 2026-02-15
367
+ **Status:** Production Ready (Emma ✅, Wade ✅)
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 BMAD-Enhanced Community
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.