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
|
@@ -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
|
|
715
|
+
const totalDirs =
|
|
716
716
|
results.skillDirectories || (results.workflows || 0) + (results.tasks || 0) + (results.tools || 0) + (results.skills || 0);
|
|
717
|
-
|
|
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
|
|
166
|
-
|
|
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
|
}
|