bmad-enhanced 1.3.0 → 1.3.1
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/package.json
CHANGED
|
@@ -31,6 +31,7 @@ module.exports = {
|
|
|
31
31
|
'Install 6 new workflows (product-vision, contextualize-scope, mvp, lean-experiment, proof-of-concept, proof-of-value)',
|
|
32
32
|
'Update config.yaml: agents and workflows lists',
|
|
33
33
|
'Update agent-manifest.csv: agent names/roles',
|
|
34
|
+
'Remove deprecated agent files (empathy-mapper.md, wireframe-designer.md)',
|
|
34
35
|
'Update agent files (Emma → Contextualization Expert, Wade → Lean Experiments Specialist)',
|
|
35
36
|
'Preserve all user data in _bmad-output/'
|
|
36
37
|
]
|
|
@@ -180,11 +181,26 @@ async function copyAgentFiles(sourceDir, targetDir) {
|
|
|
180
181
|
'lean-experiments-specialist.md'
|
|
181
182
|
];
|
|
182
183
|
|
|
184
|
+
const deprecatedAgents = [
|
|
185
|
+
'empathy-mapper.md',
|
|
186
|
+
'wireframe-designer.md'
|
|
187
|
+
];
|
|
188
|
+
|
|
183
189
|
const agentsSourceDir = path.join(sourceDir, 'agents');
|
|
184
190
|
const agentsTargetDir = path.join(targetDir, 'agents');
|
|
185
191
|
|
|
186
192
|
await fs.ensureDir(agentsTargetDir);
|
|
187
193
|
|
|
194
|
+
// Remove deprecated agent files
|
|
195
|
+
for (const file of deprecatedAgents) {
|
|
196
|
+
const targetPath = path.join(agentsTargetDir, file);
|
|
197
|
+
if (fs.existsSync(targetPath)) {
|
|
198
|
+
await fs.remove(targetPath);
|
|
199
|
+
console.log(` Removed deprecated: ${file}`);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// Copy new agent files
|
|
188
204
|
for (const file of agentFiles) {
|
|
189
205
|
const sourcePath = path.join(agentsSourceDir, file);
|
|
190
206
|
const targetPath = path.join(agentsTargetDir, file);
|
|
@@ -29,6 +29,7 @@ module.exports = {
|
|
|
29
29
|
actions: [
|
|
30
30
|
'Update version: 1.1.x → 1.3.0',
|
|
31
31
|
'Verify deprecated workflows archived',
|
|
32
|
+
'Remove deprecated agent files (empathy-mapper.md, wireframe-designer.md)',
|
|
32
33
|
'Update agent files to latest (bug fixes/improvements)',
|
|
33
34
|
'Refresh user guides (EMMA-USER-GUIDE.md, WADE-USER-GUIDE.md)'
|
|
34
35
|
]
|
|
@@ -120,11 +121,26 @@ async function copyAgentFiles(sourceDir, targetDir) {
|
|
|
120
121
|
'lean-experiments-specialist.md'
|
|
121
122
|
];
|
|
122
123
|
|
|
124
|
+
const deprecatedAgents = [
|
|
125
|
+
'empathy-mapper.md',
|
|
126
|
+
'wireframe-designer.md'
|
|
127
|
+
];
|
|
128
|
+
|
|
123
129
|
const agentsSourceDir = path.join(sourceDir, 'agents');
|
|
124
130
|
const agentsTargetDir = path.join(targetDir, 'agents');
|
|
125
131
|
|
|
126
132
|
await fs.ensureDir(agentsTargetDir);
|
|
127
133
|
|
|
134
|
+
// Remove deprecated agent files
|
|
135
|
+
for (const file of deprecatedAgents) {
|
|
136
|
+
const targetPath = path.join(agentsTargetDir, file);
|
|
137
|
+
if (fs.existsSync(targetPath)) {
|
|
138
|
+
await fs.remove(targetPath);
|
|
139
|
+
console.log(` Removed deprecated: ${file}`);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Copy new agent files
|
|
128
144
|
for (const file of agentFiles) {
|
|
129
145
|
const sourcePath = path.join(agentsSourceDir, file);
|
|
130
146
|
const targetPath = path.join(agentsTargetDir, file);
|
|
@@ -29,6 +29,7 @@ module.exports = {
|
|
|
29
29
|
actions: [
|
|
30
30
|
'Update version: 1.2.x → 1.3.0',
|
|
31
31
|
'Verify deprecated workflows archived',
|
|
32
|
+
'Remove deprecated agent files (empathy-mapper.md, wireframe-designer.md)',
|
|
32
33
|
'Update agent files to latest (bug fixes/improvements)',
|
|
33
34
|
'Refresh user guides (EMMA-USER-GUIDE.md, WADE-USER-GUIDE.md)'
|
|
34
35
|
]
|
|
@@ -120,11 +121,26 @@ async function copyAgentFiles(sourceDir, targetDir) {
|
|
|
120
121
|
'lean-experiments-specialist.md'
|
|
121
122
|
];
|
|
122
123
|
|
|
124
|
+
const deprecatedAgents = [
|
|
125
|
+
'empathy-mapper.md',
|
|
126
|
+
'wireframe-designer.md'
|
|
127
|
+
];
|
|
128
|
+
|
|
123
129
|
const agentsSourceDir = path.join(sourceDir, 'agents');
|
|
124
130
|
const agentsTargetDir = path.join(targetDir, 'agents');
|
|
125
131
|
|
|
126
132
|
await fs.ensureDir(agentsTargetDir);
|
|
127
133
|
|
|
134
|
+
// Remove deprecated agent files
|
|
135
|
+
for (const file of deprecatedAgents) {
|
|
136
|
+
const targetPath = path.join(agentsTargetDir, file);
|
|
137
|
+
if (fs.existsSync(targetPath)) {
|
|
138
|
+
await fs.remove(targetPath);
|
|
139
|
+
console.log(` Removed deprecated: ${file}`);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Copy new agent files
|
|
128
144
|
for (const file of agentFiles) {
|
|
129
145
|
const sourcePath = path.join(agentsSourceDir, file);
|
|
130
146
|
const targetPath = path.join(agentsTargetDir, file);
|