From 3e09eecfc398f19c73399482020ef6a7575e5122 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Wed, 18 Feb 2026 08:01:57 -0700 Subject: [PATCH] fix(installer): prefix prompts.yml descriptions with entry name The /prompts list in Rovo Dev only shows descriptions, making it hard to identify entries. Prefix each description with the bmad entry name so users see e.g. "bmad-bmm-create-prd - PRD workflow..." instead of just the description text. --- tools/cli/installers/lib/ide/rovodev.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cli/installers/lib/ide/rovodev.js b/tools/cli/installers/lib/ide/rovodev.js index 14d48a69b..79b6dde48 100644 --- a/tools/cli/installers/lib/ide/rovodev.js +++ b/tools/cli/installers/lib/ide/rovodev.js @@ -150,10 +150,10 @@ class RovoDevSetup extends BaseIdeSetup { } } - // Build new BMAD entries + // Build new BMAD entries (prefix description with name so /prompts list is scannable) const bmadEntries = writtenFiles.map((file) => ({ name: file.name, - description: file.description, + description: `${file.name} - ${file.description}`, content_file: file.contentFile, }));