bmad-enhanced 1.0.2-alpha → 1.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.
- package/INSTALLATION.md +13 -13
- package/README.md +275 -151
- package/_bmad/bme/_vortex/config.yaml +32 -0
- package/create-github-release.sh +19 -0
- package/index.js +7 -7
- package/package.json +14 -6
- package/scripts/README.md +56 -24
- package/scripts/install-all-agents.js +48 -30
- package/scripts/install-emma.js +32 -19
- package/scripts/install-wade.js +33 -19
- package/scripts/postinstall.js +6 -4
- package/_bmad/bme/_designos/agents/empathy-mapper.md +0 -97
- package/_bmad/bme/_designos/agents/wireframe-designer.md +0 -114
- package/_bmad/bme/_designos/config.yaml +0 -24
- package/_bmad/bme/_designos/workflows/empathy-map/empathy-map.template.md +0 -143
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-01-define-user.md +0 -60
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-02-says-thinks.md +0 -67
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-03-does-feels.md +0 -79
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-04-pain-points.md +0 -87
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-05-gains.md +0 -103
- package/_bmad/bme/_designos/workflows/empathy-map/steps/step-06-synthesize.md +0 -104
- package/_bmad/bme/_designos/workflows/empathy-map/validate.md +0 -117
- package/_bmad/bme/_designos/workflows/empathy-map/workflow.md +0 -44
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-01-define-requirements.md +0 -85
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-02-user-flows.md +0 -59
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-03-information-architecture.md +0 -68
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-04-wireframe-sketch.md +0 -97
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-05-components.md +0 -128
- package/_bmad/bme/_designos/workflows/wireframe/steps/step-06-synthesize.md +0 -83
- package/_bmad/bme/_designos/workflows/wireframe/wireframe.template.md +0 -287
- package/_bmad/bme/_designos/workflows/wireframe/workflow.md +0 -44
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 ✅)
|