bmad-method 6.0.5-next.14 → 6.0.5-next.15

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.0.5-next.14",
4
+ "version": "6.0.5-next.15",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -712,9 +712,10 @@ LOAD and execute from: {project-root}/{{bmadFolderName}}/{{path}}
712
712
  async printSummary(results, targetDir, options = {}) {
713
713
  if (options.silent) return;
714
714
  const parts = [];
715
- const totalSkills =
715
+ const totalDirs =
716
716
  results.skillDirectories || (results.workflows || 0) + (results.tasks || 0) + (results.tools || 0) + (results.skills || 0);
717
- if (totalSkills > 0) parts.push(`${totalSkills} skills`);
717
+ const skillCount = totalDirs - (results.agents || 0);
718
+ if (skillCount > 0) parts.push(`${skillCount} skills`);
718
719
  if (results.agents > 0) parts.push(`${results.agents} agents`);
719
720
  await prompts.log.success(`${this.name} configured: ${parts.join(', ')} → ${targetDir}`);
720
721
  }
@@ -162,8 +162,9 @@ class IdeManager {
162
162
  // Config-driven handlers return { success, results: { agents, workflows, tasks, tools } }
163
163
  const r = handlerResult.results;
164
164
  const parts = [];
165
- const totalSkills = r.skillDirectories || (r.workflows || 0) + (r.tasks || 0) + (r.tools || 0) + (r.skills || 0);
166
- if (totalSkills > 0) parts.push(`${totalSkills} skills`);
165
+ const totalDirs = r.skillDirectories || (r.workflows || 0) + (r.tasks || 0) + (r.tools || 0) + (r.skills || 0);
166
+ const skillCount = totalDirs - (r.agents || 0);
167
+ if (skillCount > 0) parts.push(`${skillCount} skills`);
167
168
  if (r.agents > 0) parts.push(`${r.agents} agents`);
168
169
  detail = parts.join(', ');
169
170
  }