bmad-enhanced 1.0.1-alpha → 1.0.4-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.
- package/INSTALLATION.md +13 -13
- package/README.md +109 -14
- package/_bmad-output/design-artifacts/EMMA-USER-GUIDE.md +710 -0
- package/_bmad-output/design-artifacts/WADE-USER-GUIDE.md +1191 -0
- package/create-github-release.sh +19 -0
- package/index.js +7 -7
- package/package.json +6 -1
- package/scripts/README.md +3 -3
- package/scripts/postinstall.js +6 -4
- package/_bmad-output/README.md +0 -228
package/INSTALLATION.md
CHANGED
|
@@ -32,8 +32,8 @@ Once BMAD Method is installed, proceed with BMAD-Enhanced installation below.
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# From your project directory (where BMAD Method is installed)
|
|
35
|
-
npm install bmad-enhanced
|
|
36
|
-
|
|
35
|
+
npm install bmad-enhanced@alpha
|
|
36
|
+
npx bmad-install-agents
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
That's it! Emma and Wade are now added to your BMAD installation.
|
|
@@ -47,8 +47,8 @@ That's it! Emma and Wade are now added to your BMAD installation.
|
|
|
47
47
|
Install both Emma (empathy-mapper) and Wade (wireframe-designer) at once.
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
npm install bmad-enhanced
|
|
51
|
-
|
|
50
|
+
npm install bmad-enhanced@alpha
|
|
51
|
+
npx bmad-install-agents
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
**Output:**
|
|
@@ -96,14 +96,14 @@ Install Emma or Wade separately.
|
|
|
96
96
|
|
|
97
97
|
**Install Emma only:**
|
|
98
98
|
```bash
|
|
99
|
-
npm install bmad-enhanced
|
|
100
|
-
|
|
99
|
+
npm install bmad-enhanced@alpha
|
|
100
|
+
npx bmad-install-emma
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
**Install Wade only:**
|
|
104
104
|
```bash
|
|
105
|
-
npm install bmad-enhanced
|
|
106
|
-
|
|
105
|
+
npm install bmad-enhanced@alpha
|
|
106
|
+
npx bmad-install-wade
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
---
|
|
@@ -266,7 +266,7 @@ What would you like to do?
|
|
|
266
266
|
**Solution:**
|
|
267
267
|
```bash
|
|
268
268
|
npm install fs-extra chalk
|
|
269
|
-
|
|
269
|
+
npx bmad-install-agents
|
|
270
270
|
```
|
|
271
271
|
|
|
272
272
|
### Permission denied errors
|
|
@@ -274,7 +274,7 @@ npm run install:agents
|
|
|
274
274
|
**Solution:**
|
|
275
275
|
```bash
|
|
276
276
|
chmod +x scripts/*.js
|
|
277
|
-
|
|
277
|
+
npx bmad-install-agents
|
|
278
278
|
```
|
|
279
279
|
|
|
280
280
|
### Config file already exists
|
|
@@ -287,7 +287,7 @@ The installers are smart - they will:
|
|
|
287
287
|
To force a clean installation:
|
|
288
288
|
```bash
|
|
289
289
|
rm -rf _bmad/bme/_designos/
|
|
290
|
-
|
|
290
|
+
npx bmad-install-agents
|
|
291
291
|
```
|
|
292
292
|
|
|
293
293
|
### Installation succeeds but agents don't activate
|
|
@@ -362,6 +362,6 @@ npm uninstall bmad-enhanced
|
|
|
362
362
|
|
|
363
363
|
---
|
|
364
364
|
|
|
365
|
-
**Version:** 1.0.
|
|
366
|
-
**Last Updated:** 2026-02-
|
|
365
|
+
**Version:** 1.0.4-alpha
|
|
366
|
+
**Last Updated:** 2026-02-16
|
|
367
367
|
**Status:** Production Ready (Emma ✅, Wade ✅)
|
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ npx bmad-method@alpha install
|
|
|
60
60
|
Once BMAD Method is installed:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
npm install bmad-enhanced &&
|
|
63
|
+
npm install bmad-enhanced@alpha && npx bmad-install-agents
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
That's it! Emma and Wade are now added to your BMAD installation.
|
|
@@ -71,14 +71,14 @@ That's it! Emma and Wade are now added to your BMAD installation.
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
# Install into your project
|
|
74
|
-
npm install bmad-enhanced
|
|
74
|
+
npm install bmad-enhanced@alpha
|
|
75
75
|
|
|
76
76
|
# Install all agents (Emma + Wade)
|
|
77
|
-
|
|
77
|
+
npx bmad-install-agents
|
|
78
78
|
|
|
79
79
|
# Or install individually
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
npx bmad-install-emma # Install Emma (empathy-mapper)
|
|
81
|
+
npx bmad-install-wade # Install Wade (wireframe-designer)
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
**Option 2: Clone from source**
|
|
@@ -214,11 +214,11 @@ All agents built using a standard pattern:
|
|
|
214
214
|
|
|
215
215
|
## 📊 Project Status
|
|
216
216
|
|
|
217
|
-
**Current Phase:** Week 1, Day 2 - Emma Complete ✅
|
|
217
|
+
**Current Phase:** Week 1, Day 2 - Emma & Wade Complete ✅
|
|
218
218
|
|
|
219
219
|
**Progress:**
|
|
220
|
-
- ✅ Emma (empathy-mapper) - COMPLETE (100% tested, documented,
|
|
221
|
-
-
|
|
220
|
+
- ✅ Emma (empathy-mapper) - COMPLETE (100% tested, documented, published)
|
|
221
|
+
- ✅ Wade (wireframe-designer) - COMPLETE (100% tested, documented, published)
|
|
222
222
|
- 📋 Quinn (quality-gatekeeper) - Planned Week 2
|
|
223
223
|
- 📋 Stan (standards-auditor) - Planned Week 2
|
|
224
224
|
|
|
@@ -227,12 +227,12 @@ All agents built using a standard pattern:
|
|
|
227
227
|
WEEK 1 WEEK 2 WEEK 3
|
|
228
228
|
├──────────────┬───────────────┬──────────────────┤
|
|
229
229
|
│ Emma ✅ │ Quinn 📋 │ Integration 📋 │
|
|
230
|
-
│ Wade
|
|
230
|
+
│ Wade ✅ │ Stan 📋 │ Testing 📋 │
|
|
231
231
|
│ Days 1-2 │ Days 1-7 │ Decision Gate │
|
|
232
232
|
└──────────────┴───────────────┴──────────────────┘
|
|
233
233
|
```
|
|
234
234
|
|
|
235
|
-
**Schedule Status:** ✅ AHEAD (Emma complete Day 2, planned for Days 1-7)
|
|
235
|
+
**Schedule Status:** ✅ AHEAD (Emma & Wade complete Day 2, planned for Days 1-7)
|
|
236
236
|
|
|
237
237
|
**See:** [Project Status Update](_bmad-output/PROJECT-STATUS-UPDATE.md) for detailed progress
|
|
238
238
|
|
|
@@ -335,7 +335,7 @@ Clear, comprehensive documentation:
|
|
|
335
335
|
|
|
336
336
|
## 🧪 Testing
|
|
337
337
|
|
|
338
|
-
### Emma Test Results
|
|
338
|
+
### Emma Test Results
|
|
339
339
|
|
|
340
340
|
**P0 Test Suite:** 18/18 PASSED (100%)
|
|
341
341
|
|
|
@@ -358,6 +358,34 @@ Clear, comprehensive documentation:
|
|
|
358
358
|
|
|
359
359
|
**See:** [Emma Test Results](_bmad-output/test-artifacts/emma-tests/emma-p0-test-results.md)
|
|
360
360
|
|
|
361
|
+
### Wade Test Results
|
|
362
|
+
|
|
363
|
+
**P0 Test Suite:** 18/18 PASSED (100%)
|
|
364
|
+
|
|
365
|
+
| Domain | Scenarios | Passed | Status |
|
|
366
|
+
|--------|-----------|--------|--------|
|
|
367
|
+
| Activation & Registration | 6 | 6 | ✅ PASS |
|
|
368
|
+
| Command Processing | 3 | 3 | ✅ PASS |
|
|
369
|
+
| Workflow Execution | 6 | 6 | ✅ PASS |
|
|
370
|
+
| Error Handling | 3 | 3 | ✅ PASS |
|
|
371
|
+
|
|
372
|
+
**Live Test Suite:** 5/5 PASSED (100%)
|
|
373
|
+
- ✅ Agent Activation
|
|
374
|
+
- ✅ Full Workflow Execution
|
|
375
|
+
- ✅ Validation Workflow
|
|
376
|
+
- ✅ Chat Mode
|
|
377
|
+
- ✅ Party Mode Integration
|
|
378
|
+
|
|
379
|
+
**Quality Gates:** 6/6 PASSED
|
|
380
|
+
- ✅ Test Coverage: 100%
|
|
381
|
+
- ✅ Pass Rate: 100%
|
|
382
|
+
- ✅ Critical Path: End-to-end validated
|
|
383
|
+
- ✅ Risk Mitigation: High risks addressed
|
|
384
|
+
- ✅ Usability: Smooth user experience
|
|
385
|
+
- ✅ Documentation: Complete
|
|
386
|
+
|
|
387
|
+
**See:** [Wade Test Results](_bmad-output/test-artifacts/wade-tests/wade-p0-test-execution.md)
|
|
388
|
+
|
|
361
389
|
---
|
|
362
390
|
|
|
363
391
|
## 📈 Roadmap
|
|
@@ -366,7 +394,7 @@ Clear, comprehensive documentation:
|
|
|
366
394
|
|
|
367
395
|
**Week 1:**
|
|
368
396
|
- ✅ Day 1-2: Emma (empathy-mapper) - COMPLETE
|
|
369
|
-
-
|
|
397
|
+
- ✅ Day 3-7: Wade (wireframe-designer) - COMPLETE
|
|
370
398
|
|
|
371
399
|
**Week 2:**
|
|
372
400
|
- 📋 Day 1-3: Quinn (quality-gatekeeper)
|
|
@@ -432,6 +460,22 @@ We welcome contributions! Areas where we need help:
|
|
|
432
460
|
|
|
433
461
|
**Value:** 50-60% time savings, higher quality output
|
|
434
462
|
|
|
463
|
+
### For UX/UI Designers (Wade)
|
|
464
|
+
|
|
465
|
+
**Before:**
|
|
466
|
+
- Manual wireframe creation: 3-4 hours
|
|
467
|
+
- Inconsistent information architecture
|
|
468
|
+
- Missing critical UI components
|
|
469
|
+
- Difficult to validate against usability principles
|
|
470
|
+
|
|
471
|
+
**After:**
|
|
472
|
+
- Guided 6-step process: 45-90 minutes
|
|
473
|
+
- Structured wireframe with complete IA
|
|
474
|
+
- Component catalog and interaction flows
|
|
475
|
+
- Built-in usability validation
|
|
476
|
+
|
|
477
|
+
**Value:** 60-70% time savings, comprehensive coverage, fewer design iterations
|
|
478
|
+
|
|
435
479
|
### For Development Teams (All Agents)
|
|
436
480
|
|
|
437
481
|
**Domain Expertise On-Demand:**
|
|
@@ -464,6 +508,22 @@ We welcome contributions! Areas where we need help:
|
|
|
464
508
|
- Complete workflow: 30-60 minutes
|
|
465
509
|
- Artifact generation: <5 seconds
|
|
466
510
|
|
|
511
|
+
### Wade (Operational Metrics)
|
|
512
|
+
|
|
513
|
+
**Adoption (Target):**
|
|
514
|
+
- 50+ teams using Wade for wireframing
|
|
515
|
+
- 80%+ complete the full 6-step workflow
|
|
516
|
+
- NPS ≥8
|
|
517
|
+
|
|
518
|
+
**Quality (Target):**
|
|
519
|
+
- 90%+ wireframes include complete information architecture
|
|
520
|
+
- 95%+ artifacts include component catalog and interactions
|
|
521
|
+
- 85%+ pass usability validation checklist
|
|
522
|
+
|
|
523
|
+
**Performance (Measured):**
|
|
524
|
+
- Complete workflow: 45-90 minutes
|
|
525
|
+
- Artifact generation: <5 seconds
|
|
526
|
+
|
|
467
527
|
### Project-Wide (Target Post-Launch)
|
|
468
528
|
|
|
469
529
|
**Adoption:**
|
|
@@ -507,16 +567,51 @@ Emma generates comprehensive empathy maps with:
|
|
|
507
567
|
|
|
508
568
|
**See:** [Sample Empathy Map](_bmad-output/test-artifacts/emma-tests/results/empathy-map-sarah-chen-2026-02-14.md)
|
|
509
569
|
|
|
570
|
+
### Wade Wireframe Artifact
|
|
571
|
+
|
|
572
|
+
Wade generates comprehensive wireframes with:
|
|
573
|
+
|
|
574
|
+
**Executive Summary:**
|
|
575
|
+
- Product context and user goals
|
|
576
|
+
- Key user flows (3-5 primary flows)
|
|
577
|
+
- Design priorities and constraints
|
|
578
|
+
|
|
579
|
+
**Detailed Sections:**
|
|
580
|
+
- Information Architecture (sitemap, navigation hierarchy, content structure)
|
|
581
|
+
- Screen Layouts (annotated wireframes for key screens)
|
|
582
|
+
- Component Catalog (UI components with specifications)
|
|
583
|
+
- Interaction Flows (user journey maps with screen transitions)
|
|
584
|
+
- Responsive Considerations (mobile, tablet, desktop breakpoints)
|
|
585
|
+
|
|
586
|
+
**Usability Validation:**
|
|
587
|
+
- Navigation clarity assessment
|
|
588
|
+
- Content hierarchy review
|
|
589
|
+
- Interaction pattern consistency
|
|
590
|
+
- Accessibility considerations
|
|
591
|
+
|
|
592
|
+
**Design Handoff:**
|
|
593
|
+
- Component specifications
|
|
594
|
+
- Interaction states
|
|
595
|
+
- Content requirements
|
|
596
|
+
- Technical notes
|
|
597
|
+
|
|
598
|
+
**See:** [Wade User Guide](_bmad-output/design-artifacts/WADE-USER-GUIDE.md) for examples
|
|
599
|
+
|
|
510
600
|
---
|
|
511
601
|
|
|
512
602
|
## 🎓 Learning Resources
|
|
513
603
|
|
|
514
604
|
### For Users
|
|
515
605
|
|
|
606
|
+
**Emma (Empathy Mapping):**
|
|
516
607
|
- **[Emma User Guide](_bmad-output/design-artifacts/EMMA-USER-GUIDE.md)** - Complete guide with examples
|
|
517
608
|
- **[Sample Empathy Map](_bmad-output/test-artifacts/emma-tests/results/empathy-map-sarah-chen-2026-02-14.md)** - Real output example
|
|
518
609
|
- Emma's chat mode (CH command) - Ask Emma questions about empathy mapping
|
|
519
610
|
|
|
611
|
+
**Wade (Wireframing):**
|
|
612
|
+
- **[Wade User Guide](_bmad-output/design-artifacts/WADE-USER-GUIDE.md)** - Complete guide with examples
|
|
613
|
+
- Wade's chat mode (CH command) - Ask Wade questions about wireframe design and UI patterns
|
|
614
|
+
|
|
520
615
|
### For Developers
|
|
521
616
|
|
|
522
617
|
- **[BMAD Agent Architecture Framework](_bmad-output/GENERIC-AGENT-INTEGRATION-FRAMEWORK.md)** - How to build agents
|
|
@@ -526,8 +621,8 @@ Emma generates comprehensive empathy maps with:
|
|
|
526
621
|
### For Stakeholders
|
|
527
622
|
|
|
528
623
|
- **[Project Status Update](_bmad-output/PROJECT-STATUS-UPDATE.md)** - Current progress
|
|
529
|
-
- **[Emma
|
|
530
|
-
- **[
|
|
624
|
+
- **[Emma Test Results](_bmad-output/test-artifacts/emma-tests/emma-p0-test-results.md)** - Emma quality validation
|
|
625
|
+
- **[Wade Test Results](_bmad-output/test-artifacts/wade-tests/wade-p0-test-execution.md)** - Wade quality validation
|
|
531
626
|
|
|
532
627
|
---
|
|
533
628
|
|