diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b32d4d..f5b14586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [4.30.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.1...v4.30.2) (2025-07-17) + + +### Bug Fixes + +* remove z2 ([dcb36a9](https://github.com/bmadcode/BMAD-METHOD/commit/dcb36a9b44b6644f6b2723c9067abaa9b0bc1999)) + ## [4.30.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.0...v4.30.1) (2025-07-15) diff --git a/bmad-core/data/bmad-kb.md b/bmad-core/data/bmad-kb.md index fc6c6331..9ccc80b6 100644 --- a/bmad-core/data/bmad-kb.md +++ b/bmad-core/data/bmad-kb.md @@ -300,7 +300,7 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing - **Cursor**: `@agent-name` (e.g., `@bmad-master`) - **Windsurf**: `@agent-name` (e.g., `@bmad-master`) - **Trae**: `@agent-name` (e.g., `@bmad-master`) -- **Roo Code**: Select mode from mode selector (e.g., `bmad-bmad-master`) +- **Roo Code**: Select mode from mode selector (e.g., `bmad-master`) - **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector. **Chat Management Guidelines**: diff --git a/docs/bmad-workflow-guide.md b/docs/bmad-workflow-guide.md index c1253c08..85687078 100644 --- a/docs/bmad-workflow-guide.md +++ b/docs/bmad-workflow-guide.md @@ -114,7 +114,7 @@ Follow the SM → Dev cycle for systematic story development: - **Gemini CLI**: `*agent-name` (e.g., `*bmad-master`) - **Windsurf**: `@agent-name` (e.g., `@bmad-master`) - **Trae**: `@agent-name` (e.g., `@bmad-master`) -- **Roo Code**: Select mode from mode selector (e.g., `bmad-bmad-master`) +- **Roo Code**: Select mode from mode selector (e.g., `bmad-master`) - **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector. ### Chat Management: diff --git a/package-lock.json b/package-lock.json index 8d935082..faa2bfb5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bmad-method", - "version": "4.30.1", + "version": "4.30.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bmad-method", - "version": "4.30.1", + "version": "4.30.2", "license": "MIT", "dependencies": { "@kayvan/markdown-tree-parser": "^1.5.0", diff --git a/package.json b/package.json index 070b4029..e788065f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bmad-method", - "version": "4.30.1", + "version": "4.30.2", "description": "Breakthrough Method of Agile AI-driven Development", "main": "tools/cli.js", "bin": { diff --git a/tools/installer/lib/ide-setup.js b/tools/installer/lib/ide-setup.js index baf239b9..d37177c7 100644 --- a/tools/installer/lib/ide-setup.js +++ b/tools/installer/lib/ide-setup.js @@ -690,7 +690,9 @@ class IdeSetup { for (const agentId of agents) { // Skip if already exists - if (existingModes.includes(`bmad-${agentId}`)) { + // Check both with and without bmad- prefix to handle both cases + const checkSlug = agentId.startsWith('bmad-') ? agentId : `bmad-${agentId}`; + if (existingModes.includes(checkSlug)) { console.log(chalk.dim(`Skipping ${agentId} - already exists in .roomodes`)); continue; } @@ -720,7 +722,9 @@ class IdeSetup { : `You are a ${title} specializing in ${title.toLowerCase()} tasks and responsibilities.`; // Build mode entry with proper formatting (matching exact indentation) - newModesContent += ` - slug: bmad-${agentId}\n`; + // Avoid double "bmad-" prefix for agents that already have it + const slug = agentId.startsWith('bmad-') ? agentId : `bmad-${agentId}`; + newModesContent += ` - slug: ${slug}\n`; newModesContent += ` name: '${icon} ${title}'\n`; newModesContent += ` roleDefinition: ${roleDefinition}\n`; newModesContent += ` whenToUse: ${whenToUse}\n`; diff --git a/tools/installer/package.json b/tools/installer/package.json index f4244769..6a679030 100644 --- a/tools/installer/package.json +++ b/tools/installer/package.json @@ -1,6 +1,6 @@ { "name": "bmad-method", - "version": "4.30.1", + "version": "4.30.2", "description": "BMad Method installer - AI-powered Agile development framework", "main": "lib/installer.js", "bin": {