bmad-enhanced 1.3.3 → 1.3.5
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/CHANGELOG.md +36 -0
- package/package.json +1 -1
- package/scripts/install-all-agents.js +27 -1
- package/scripts/update/migrations/1.0.x-to-1.3.0.js +2 -2
- package/scripts/update/migrations/1.1.x-to-1.3.0.js +4 -4
- package/scripts/update/migrations/1.2.x-to-1.3.0.js +4 -4
- package/scripts/update/migrations/registry.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.3.5] - 2026-02-18
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
**🚨 CRITICAL Install Script Bug:**
|
|
15
|
+
- Fixed `bmad-install-agents` only copying deprecated workflows, not the 7 new workflows
|
|
16
|
+
- Fixed hardcoded version 1.2.0 (now correctly uses 1.3.5)
|
|
17
|
+
- Install script now copies all 7 Vortex workflows: lean-persona, product-vision, contextualize-scope, mvp, lean-experiment, proof-of-concept, proof-of-value
|
|
18
|
+
- **This was causing "folders are still a mess" issue - workflows were listed in config but never installed**
|
|
19
|
+
|
|
20
|
+
**What was broken in v1.3.4 and earlier:**
|
|
21
|
+
- Fresh installs only got deprecated workflows (empathy-map, wireframe)
|
|
22
|
+
- Config.yaml listed 7 workflows that didn't exist
|
|
23
|
+
- Version was always set to 1.2.0 regardless of package version
|
|
24
|
+
- Validation failed because workflow.md files were missing
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## [1.3.4] - 2026-02-18
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
**🔧 CRITICAL Migration Bug:**
|
|
33
|
+
- Fixed migration system not detecting migrations from 1.2.0 to 1.3.x
|
|
34
|
+
- Updated all migrations to target version 1.3.4 (was 1.3.0)
|
|
35
|
+
- Migrations now correctly run when upgrading from 1.0.x, 1.1.x, or 1.2.x
|
|
36
|
+
- **This fixes the "No migrations needed (versions compatible)" error**
|
|
37
|
+
- Now properly removes deprecated agents and legacy `_designos` directory
|
|
38
|
+
|
|
39
|
+
**What was broken in v1.3.3:**
|
|
40
|
+
- Users on v1.2.0 saw "No migrations needed" but weren't upgraded
|
|
41
|
+
- Deprecated agents and `_designos` directory weren't removed
|
|
42
|
+
- Version remained at 1.2.0 instead of updating to 1.3.x
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
10
46
|
## [1.3.3] - 2026-02-18
|
|
11
47
|
|
|
12
48
|
### Fixed
|
package/package.json
CHANGED
|
@@ -123,6 +123,32 @@ function copyAllAgentFiles() {
|
|
|
123
123
|
});
|
|
124
124
|
|
|
125
125
|
console.log(`${GREEN} ✓${RESET} Wade installed`);
|
|
126
|
+
|
|
127
|
+
// Copy all 7 new workflow directories
|
|
128
|
+
console.log(`${CYAN} →${RESET} Installing Vortex Framework workflows...`);
|
|
129
|
+
const workflows = [
|
|
130
|
+
'lean-persona',
|
|
131
|
+
'product-vision',
|
|
132
|
+
'contextualize-scope',
|
|
133
|
+
'mvp',
|
|
134
|
+
'lean-experiment',
|
|
135
|
+
'proof-of-concept',
|
|
136
|
+
'proof-of-value'
|
|
137
|
+
];
|
|
138
|
+
|
|
139
|
+
workflows.forEach(workflow => {
|
|
140
|
+
const workflowSourceDir = path.join(sourceDir, 'workflows', workflow);
|
|
141
|
+
const workflowTargetDir = path.join(targetDir, 'workflows', workflow);
|
|
142
|
+
|
|
143
|
+
if (fs.existsSync(workflowSourceDir)) {
|
|
144
|
+
fs.copySync(workflowSourceDir, workflowTargetDir);
|
|
145
|
+
console.log(`${GREEN} ✓${RESET} ${workflow}`);
|
|
146
|
+
} else {
|
|
147
|
+
console.log(`${YELLOW} ⚠${RESET} ${workflow} not found in package (skipping)`);
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
console.log(`${GREEN} ✓${RESET} All workflows installed`);
|
|
126
152
|
}
|
|
127
153
|
|
|
128
154
|
function updateConfig() {
|
|
@@ -136,7 +162,7 @@ function updateConfig() {
|
|
|
136
162
|
submodule_name: _vortex
|
|
137
163
|
description: Contextualize and Externalize streams - Strategic framing and validated learning
|
|
138
164
|
module: bme
|
|
139
|
-
version: 1.
|
|
165
|
+
version: 1.3.4
|
|
140
166
|
|
|
141
167
|
# Output Configuration
|
|
142
168
|
output_folder: "{project-root}/_bmad-output/vortex-artifacts"
|
|
@@ -16,7 +16,7 @@ const configMerger = require('../lib/config-merger');
|
|
|
16
16
|
module.exports = {
|
|
17
17
|
name: '1.0.x-to-1.3.0',
|
|
18
18
|
fromVersion: '1.0.x',
|
|
19
|
-
toVersion: '1.3.
|
|
19
|
+
toVersion: '1.3.5',
|
|
20
20
|
breaking: true,
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -65,7 +65,7 @@ module.exports = {
|
|
|
65
65
|
changes.push('Installed 7 new Vortex Framework workflows');
|
|
66
66
|
|
|
67
67
|
// 5. Update config.yaml with new structure
|
|
68
|
-
await updateConfig(targetDir, '1.3.
|
|
68
|
+
await updateConfig(targetDir, '1.3.5');
|
|
69
69
|
changes.push('Updated config.yaml');
|
|
70
70
|
|
|
71
71
|
// 6. Update agent files
|
|
@@ -17,7 +17,7 @@ const configMerger = require('../lib/config-merger');
|
|
|
17
17
|
module.exports = {
|
|
18
18
|
name: '1.1.x-to-1.3.0',
|
|
19
19
|
fromVersion: '1.1.x',
|
|
20
|
-
toVersion: '1.3.
|
|
20
|
+
toVersion: '1.3.5',
|
|
21
21
|
breaking: false,
|
|
22
22
|
|
|
23
23
|
/**
|
|
@@ -27,7 +27,7 @@ module.exports = {
|
|
|
27
27
|
async preview() {
|
|
28
28
|
return {
|
|
29
29
|
actions: [
|
|
30
|
-
'Update version: 1.1.x → 1.3.
|
|
30
|
+
'Update version: 1.1.x → 1.3.5',
|
|
31
31
|
'Verify deprecated workflows archived',
|
|
32
32
|
'Remove legacy _designos directory (pre-Vortex structure)',
|
|
33
33
|
'Remove deprecated agent files (empathy-mapper.md, wireframe-designer.md)',
|
|
@@ -47,8 +47,8 @@ module.exports = {
|
|
|
47
47
|
const targetDir = path.join(process.cwd(), '_bmad/bme/_vortex');
|
|
48
48
|
|
|
49
49
|
// 1. Update version in config.yaml
|
|
50
|
-
await updateConfigVersion('1.3.
|
|
51
|
-
changes.push('Updated version to 1.3.
|
|
50
|
+
await updateConfigVersion('1.3.5');
|
|
51
|
+
changes.push('Updated version to 1.3.5');
|
|
52
52
|
|
|
53
53
|
// 2. Verify deprecated structure exists
|
|
54
54
|
await ensureDeprecatedStructure(targetDir);
|
|
@@ -17,7 +17,7 @@ const configMerger = require('../lib/config-merger');
|
|
|
17
17
|
module.exports = {
|
|
18
18
|
name: '1.2.x-to-1.3.0',
|
|
19
19
|
fromVersion: '1.2.x',
|
|
20
|
-
toVersion: '1.3.
|
|
20
|
+
toVersion: '1.3.5',
|
|
21
21
|
breaking: false,
|
|
22
22
|
|
|
23
23
|
/**
|
|
@@ -27,7 +27,7 @@ module.exports = {
|
|
|
27
27
|
async preview() {
|
|
28
28
|
return {
|
|
29
29
|
actions: [
|
|
30
|
-
'Update version: 1.2.x → 1.3.
|
|
30
|
+
'Update version: 1.2.x → 1.3.5',
|
|
31
31
|
'Verify deprecated workflows archived',
|
|
32
32
|
'Remove legacy _designos directory (pre-Vortex structure)',
|
|
33
33
|
'Remove deprecated agent files (empathy-mapper.md, wireframe-designer.md)',
|
|
@@ -47,8 +47,8 @@ module.exports = {
|
|
|
47
47
|
const targetDir = path.join(process.cwd(), '_bmad/bme/_vortex');
|
|
48
48
|
|
|
49
49
|
// 1. Update version in config.yaml
|
|
50
|
-
await updateConfigVersion('1.3.
|
|
51
|
-
changes.push('Updated version to 1.3.
|
|
50
|
+
await updateConfigVersion('1.3.5');
|
|
51
|
+
changes.push('Updated version to 1.3.5');
|
|
52
52
|
|
|
53
53
|
// 2. Verify deprecated structure exists
|
|
54
54
|
await ensureDeprecatedStructure(targetDir);
|
|
@@ -14,7 +14,7 @@ const MIGRATIONS = [
|
|
|
14
14
|
{
|
|
15
15
|
name: '1.0.x-to-1.3.0',
|
|
16
16
|
fromVersion: '1.0.x',
|
|
17
|
-
toVersion: '1.3.
|
|
17
|
+
toVersion: '1.3.5',
|
|
18
18
|
breaking: true,
|
|
19
19
|
description: 'Migrate empathy-map workflow to lean-persona',
|
|
20
20
|
module: null // Loaded on demand
|
|
@@ -22,7 +22,7 @@ const MIGRATIONS = [
|
|
|
22
22
|
{
|
|
23
23
|
name: '1.1.x-to-1.3.0',
|
|
24
24
|
fromVersion: '1.1.x',
|
|
25
|
-
toVersion: '1.3.
|
|
25
|
+
toVersion: '1.3.5',
|
|
26
26
|
breaking: false,
|
|
27
27
|
description: 'Archive deprecated workflows, update agents',
|
|
28
28
|
module: null // Loaded on demand
|
|
@@ -30,7 +30,7 @@ const MIGRATIONS = [
|
|
|
30
30
|
{
|
|
31
31
|
name: '1.2.x-to-1.3.0',
|
|
32
32
|
fromVersion: '1.2.x',
|
|
33
|
-
toVersion: '1.3.
|
|
33
|
+
toVersion: '1.3.5',
|
|
34
34
|
breaking: false,
|
|
35
35
|
description: 'Update to v1.3.0 with migration system',
|
|
36
36
|
module: null // Loaded on demand
|