From f73ea2cb189b3529de33c68d8608076c34cf6e56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davor=20Raci=C4=87?= Date: Mon, 9 Feb 2026 15:12:13 +0100 Subject: [PATCH] fix: rename "Module installers" label to "Module directories" in summary The old script-based module installer pattern was replaced with declarative directory creation, but the task title and summary label were never updated to reflect that change. Co-Authored-By: Claude Opus 4.6 --- tools/cli/installers/lib/core/installer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cli/installers/lib/core/installer.js b/tools/cli/installers/lib/core/installer.js index c5eb0a472..6188c6f40 100644 --- a/tools/cli/installers/lib/core/installer.js +++ b/tools/cli/installers/lib/core/installer.js @@ -1155,7 +1155,7 @@ class Installer { // Module directory creation task postIdeTasks.push({ - title: 'Running module installers', + title: 'Creating module directories', task: async (message) => { const verboseMode = process.env.BMAD_VERBOSE_INSTALL === 'true' || config.verbose; const moduleLogger = { @@ -1197,7 +1197,7 @@ class Installer { } } - addResult('Module installers', 'ok'); + addResult('Module directories', 'ok'); return 'Module setup complete'; }, });