ma-agents 3.4.6 → 3.4.7

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 (2) hide show
  1. package/lib/bmad.js +4 -1
  2. package/package.json +1 -1
package/lib/bmad.js CHANGED
@@ -263,9 +263,12 @@ async function updateBmad(modules = ['bmm', 'bmb'], tools = [], projectRoot = pr
263
263
  }
264
264
  }
265
265
 
266
- // 3. Remove physical directories so bmad-method doesn't re-discover them
266
+ // 3. Remove physical directories so bmad-method's manifest-generator
267
+ // doesn't re-discover them via scanInstalledModules().
268
+ // _bmad/custom/ is safe to remove — applyCustomizations() recreates it after.
267
269
  const staleDirs = [
268
270
  path.join(projectRoot, BMAD_DIR, 'bmb'),
271
+ path.join(projectRoot, BMAD_DIR, 'custom'),
269
272
  path.join(projectRoot, BMAD_DIR, '_config', 'custom'),
270
273
  ];
271
274
  for (const dir of staleDirs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ma-agents",
3
- "version": "3.4.6",
3
+ "version": "3.4.7",
4
4
  "description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor, Roo Code)",
5
5
  "main": "index.js",
6
6
  "bin": {