From 2004782b5ab26bcaea81923667ca19ed5b0af482 Mon Sep 17 00:00:00 2001 From: tomas_backbase Date: Thu, 25 Sep 2025 10:46:23 +0200 Subject: [PATCH] fix: Wrong setup of Cursor rules After testing BMAD Method in Cursor rules with the existing setup of the rule I have noticed that it was not actually using the right prompt. That was noticed before it was not returning the available commands when opening a new chat and refering to the agent I needed. I did the changes in my project and the fix wa to change to "Apply Manually" so the rule `@` has to be referenced from the chat window, similar to what you do with Claude Code. --- tools/installer/lib/ide-base-setup.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/installer/lib/ide-base-setup.js b/tools/installer/lib/ide-base-setup.js index d47d8d5d..b2da7409 100644 --- a/tools/installer/lib/ide-base-setup.js +++ b/tools/installer/lib/ide-base-setup.js @@ -189,8 +189,6 @@ class BaseIdeSetup { if (format === 'mdc') { // MDC format for Cursor content = '---\n'; - content += 'description: \n'; - content += 'globs: []\n'; content += 'alwaysApply: false\n'; content += '---\n\n'; content += `# ${agentId.toUpperCase()} Agent Rule\n\n`;