ma-agents 2.19.1 → 2.19.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.
Files changed (2) hide show
  1. package/lib/installer.js +7 -0
  2. package/package.json +1 -1
package/lib/installer.js CHANGED
@@ -144,6 +144,13 @@ Do not load skills that are not relevant to the current task.
144
144
  } else {
145
145
  content += wrappedInstruction;
146
146
  }
147
+ } else if (agent.category === 'bmad') {
148
+ // BMAD agent instruction files ARE the agent definitions (persona, menu, activation).
149
+ // Never create them from scratch — they must be deployed by applyCustomizations().
150
+ // Creating them here would produce a file with ONLY the MA-AGENTS block,
151
+ // wiping the entire agent definition.
152
+ console.log(chalk.gray(` Skipped ${fileName} (BMAD agent file not yet deployed)`));
153
+ continue;
147
154
  } else {
148
155
  content = wrappedInstruction;
149
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ma-agents",
3
- "version": "2.19.1",
3
+ "version": "2.19.2",
4
4
  "description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor)",
5
5
  "main": "index.js",
6
6
  "bin": {