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.
Files changed (31) hide show
  1. package/INSTALLATION.md +13 -13
  2. package/README.md +275 -151
  3. package/_bmad/bme/_vortex/config.yaml +32 -0
  4. package/create-github-release.sh +19 -0
  5. package/index.js +7 -7
  6. package/package.json +14 -6
  7. package/scripts/README.md +56 -24
  8. package/scripts/install-all-agents.js +48 -30
  9. package/scripts/install-emma.js +32 -19
  10. package/scripts/install-wade.js +33 -19
  11. package/scripts/postinstall.js +6 -4
  12. package/_bmad/bme/_designos/agents/empathy-mapper.md +0 -97
  13. package/_bmad/bme/_designos/agents/wireframe-designer.md +0 -114
  14. package/_bmad/bme/_designos/config.yaml +0 -24
  15. package/_bmad/bme/_designos/workflows/empathy-map/empathy-map.template.md +0 -143
  16. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-01-define-user.md +0 -60
  17. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-02-says-thinks.md +0 -67
  18. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-03-does-feels.md +0 -79
  19. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-04-pain-points.md +0 -87
  20. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-05-gains.md +0 -103
  21. package/_bmad/bme/_designos/workflows/empathy-map/steps/step-06-synthesize.md +0 -104
  22. package/_bmad/bme/_designos/workflows/empathy-map/validate.md +0 -117
  23. package/_bmad/bme/_designos/workflows/empathy-map/workflow.md +0 -44
  24. package/_bmad/bme/_designos/workflows/wireframe/steps/step-01-define-requirements.md +0 -85
  25. package/_bmad/bme/_designos/workflows/wireframe/steps/step-02-user-flows.md +0 -59
  26. package/_bmad/bme/_designos/workflows/wireframe/steps/step-03-information-architecture.md +0 -68
  27. package/_bmad/bme/_designos/workflows/wireframe/steps/step-04-wireframe-sketch.md +0 -97
  28. package/_bmad/bme/_designos/workflows/wireframe/steps/step-05-components.md +0 -128
  29. package/_bmad/bme/_designos/workflows/wireframe/steps/step-06-synthesize.md +0 -83
  30. package/_bmad/bme/_designos/workflows/wireframe/wireframe.template.md +0 -287
  31. 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
- npm run install:agents
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
- npm run install:agents
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
- npm run install:emma
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
- npm run install:wade
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
- npm run install:agents
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
- npm run install:agents
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
- npm run install:agents
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.0-alpha
366
- **Last Updated:** 2026-02-15
365
+ **Version:** 1.0.4-alpha
366
+ **Last Updated:** 2026-02-16
367
367
  **Status:** Production Ready (Emma ✅, Wade ✅)