bmad-enhanced 1.5.1 → 1.5.2
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/README.md
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
> Four specialized agents: Emma, Wade, Isla, and Max
|
|
6
6
|
|
|
7
|
-
[]()
|
|
8
|
+
[]()
|
|
9
9
|
[]()
|
|
10
10
|
[]()
|
|
11
11
|
[]()
|
|
@@ -434,7 +434,7 @@ v1.1.0 v1.3.x ✅ v1.4.x ✅ v1.5.0 ✅ v2.0.
|
|
|
434
434
|
├────────────────┬────────────────┬────────────────┬────────────────┬──────────┤
|
|
435
435
|
│ Foundation ✅ │ Tooling ✅ │ Quality ✅ │ Wave 2 ✅ │ Advanced │
|
|
436
436
|
│ • Emma + Wade │ • Update tools │ • Refactor │ • Isla + Max │ • Wave 3 │
|
|
437
|
-
│ • 7 workflows │ • Migration │ •
|
|
437
|
+
│ • 7 workflows │ • Migration │ • 183 tests │ • 13 workflows │ • Multi │
|
|
438
438
|
│ • Framework │ • Automation │ • CI/CD + lint │ • 4 streams │ • Stats │
|
|
439
439
|
└────────────────┴────────────────┴────────────────┴────────────────┴──────────┘
|
|
440
440
|
Feb 2026 Feb 2026 Feb 2026 Feb 2026 Q3 2026
|
|
@@ -566,16 +566,20 @@ Zero-dependency test runner (`node:test`)
|
|
|
566
566
|
|
|
567
567
|
| Suite | Tests | Coverage |
|
|
568
568
|
|-------|-------|----------|
|
|
569
|
-
| utils |
|
|
570
|
-
| registry |
|
|
571
|
-
| version-detector |
|
|
572
|
-
| config-merger |
|
|
573
|
-
| backup-manager |
|
|
569
|
+
| utils | 12 | compareVersions, getPackageVersion, findProjectRoot |
|
|
570
|
+
| registry | 19 | getMigrationsFor, getBreakingChanges, hasMigrationBeenApplied |
|
|
571
|
+
| version-detector | 23 | getCurrentVersion, detectInstallationScenario |
|
|
572
|
+
| config-merger | 17 | mergeConfig, validateConfig, addMigrationHistory |
|
|
573
|
+
| backup-manager | 11 | createBackup, restoreBackup, cleanupOldBackups |
|
|
574
574
|
| migration-runner | 10 | executeMigration, previewMigrations, MigrationError |
|
|
575
|
-
| migration-
|
|
576
|
-
|
|
|
577
|
-
|
|
|
578
|
-
|
|
|
575
|
+
| migration-runner-orchestration | 9 | runMigrations full cycle, dry-run, skip, lock conflict, error handling |
|
|
576
|
+
| validator | 23 | validateInstallation, config, agents, workflows, manifest, user data, deprecated |
|
|
577
|
+
| migrations-to-1.5.0 | 6 | 1.3.x and 1.4.x migration metadata, preview, apply |
|
|
578
|
+
| fresh-install (integration) | 9 | refreshInstallation end-to-end (all 4 agents) |
|
|
579
|
+
| upgrade (integration) | 22 | v1.0.x→1.5.0, v1.3.x→1.5.0, v1.4.x→1.5.0 upgrade paths |
|
|
580
|
+
| cli-entry-points (integration) | 8 | index.js, bmad-version, bmad-update, bmad-doctor |
|
|
581
|
+
| installer-e2e (integration) | 7 | install-vortex-agents CLI end-to-end, idempotency |
|
|
582
|
+
| bmad-doctor (integration) | 7 | negative paths: no project, missing config, invalid YAML, missing agents, stale/corrupt lock, version mismatch |
|
|
579
583
|
|
|
580
584
|
**CI Pipeline (6 jobs):**
|
|
581
585
|
|
|
@@ -679,7 +683,7 @@ Max follows the same agent architecture as Emma and Wade. Infrastructure validat
|
|
|
679
683
|
- ✅ **v1.2.0** - All 7 workflows implemented (56 files)
|
|
680
684
|
- ✅ **v1.3.x** - Update/migration system with backup and rollback
|
|
681
685
|
- ✅ **v1.4.0** - Architecture refactor (single source of truth, project root detection, safer migrations)
|
|
682
|
-
- ✅ **v1.4.1** - Industrial-grade tooling (
|
|
686
|
+
- ✅ **v1.4.1** - Industrial-grade tooling (183 tests, CI/CD, ESLint, bmad-doctor, publish-on-tag)
|
|
683
687
|
- ✅ **v1.5.0** - Wave 2: Isla + Max agents, 13 workflows, 4 Vortex streams
|
|
684
688
|
|
|
685
689
|
### Future (v1.6.0 / v2.0.0+)
|
|
@@ -883,7 +887,7 @@ We welcome contributions! Areas where we need help:
|
|
|
883
887
|
**Quality:**
|
|
884
888
|
- 100% P0 test pass rate for all agents
|
|
885
889
|
- All quality gates passed before release
|
|
886
|
-
-
|
|
890
|
+
- 180+ automated tests across unit and integration suites
|
|
887
891
|
|
|
888
892
|
---
|
|
889
893
|
|
package/package.json
CHANGED
|
@@ -32,8 +32,16 @@ async function mergeConfig(currentConfigPath, newVersion, updates = {}) {
|
|
|
32
32
|
// Extract user preferences
|
|
33
33
|
const userPrefs = extractUserPreferences(current);
|
|
34
34
|
|
|
35
|
-
//
|
|
36
|
-
const
|
|
35
|
+
// Seed with required structural defaults for fresh installs
|
|
36
|
+
const defaults = {
|
|
37
|
+
submodule_name: '_vortex',
|
|
38
|
+
description: 'Vortex Framework - Contextualize, Empathize, Externalize, and Systematize streams',
|
|
39
|
+
module: 'bme',
|
|
40
|
+
output_folder: '{project-root}/_bmad-output/vortex-artifacts'
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
// Start with defaults, overlay current config (preserves existing values)
|
|
44
|
+
const merged = { ...defaults, ...current };
|
|
37
45
|
|
|
38
46
|
// Update version (system field)
|
|
39
47
|
merged.version = newVersion;
|
|
@@ -103,7 +103,9 @@ async function validateAgentFiles(projectRoot) {
|
|
|
103
103
|
const agentsDir = path.join(projectRoot, '_bmad/bme/_vortex/agents');
|
|
104
104
|
const requiredAgents = [
|
|
105
105
|
'contextualization-expert.md',
|
|
106
|
-
'lean-experiments-specialist.md'
|
|
106
|
+
'lean-experiments-specialist.md',
|
|
107
|
+
'discovery-empathy-expert.md',
|
|
108
|
+
'learning-decision-expert.md'
|
|
107
109
|
];
|
|
108
110
|
|
|
109
111
|
if (!fs.existsSync(agentsDir)) {
|