bmad-method 4.30.1 → 4.30.2
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.30.2](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.1...v4.30.2) (2025-07-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove z2 ([dcb36a9](https://github.com/bmadcode/BMAD-METHOD/commit/dcb36a9b44b6644f6b2723c9067abaa9b0bc1999))
|
|
7
|
+
|
|
1
8
|
## [4.30.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.0...v4.30.1) (2025-07-15)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -300,7 +300,7 @@ You are the "Vibe CEO" - thinking like a CEO with unlimited resources and a sing
|
|
|
300
300
|
- **Cursor**: `@agent-name` (e.g., `@bmad-master`)
|
|
301
301
|
- **Windsurf**: `@agent-name` (e.g., `@bmad-master`)
|
|
302
302
|
- **Trae**: `@agent-name` (e.g., `@bmad-master`)
|
|
303
|
-
- **Roo Code**: Select mode from mode selector (e.g., `bmad-
|
|
303
|
+
- **Roo Code**: Select mode from mode selector (e.g., `bmad-master`)
|
|
304
304
|
- **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
|
|
305
305
|
|
|
306
306
|
**Chat Management Guidelines**:
|
|
@@ -114,7 +114,7 @@ Follow the SM → Dev cycle for systematic story development:
|
|
|
114
114
|
- **Gemini CLI**: `*agent-name` (e.g., `*bmad-master`)
|
|
115
115
|
- **Windsurf**: `@agent-name` (e.g., `@bmad-master`)
|
|
116
116
|
- **Trae**: `@agent-name` (e.g., `@bmad-master`)
|
|
117
|
-
- **Roo Code**: Select mode from mode selector (e.g., `bmad-
|
|
117
|
+
- **Roo Code**: Select mode from mode selector (e.g., `bmad-master`)
|
|
118
118
|
- **GitHub Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
|
|
119
119
|
|
|
120
120
|
### Chat Management:
|
package/package.json
CHANGED
|
@@ -690,7 +690,9 @@ class IdeSetup {
|
|
|
690
690
|
|
|
691
691
|
for (const agentId of agents) {
|
|
692
692
|
// Skip if already exists
|
|
693
|
-
|
|
693
|
+
// Check both with and without bmad- prefix to handle both cases
|
|
694
|
+
const checkSlug = agentId.startsWith('bmad-') ? agentId : `bmad-${agentId}`;
|
|
695
|
+
if (existingModes.includes(checkSlug)) {
|
|
694
696
|
console.log(chalk.dim(`Skipping ${agentId} - already exists in .roomodes`));
|
|
695
697
|
continue;
|
|
696
698
|
}
|
|
@@ -720,7 +722,9 @@ class IdeSetup {
|
|
|
720
722
|
: `You are a ${title} specializing in ${title.toLowerCase()} tasks and responsibilities.`;
|
|
721
723
|
|
|
722
724
|
// Build mode entry with proper formatting (matching exact indentation)
|
|
723
|
-
|
|
725
|
+
// Avoid double "bmad-" prefix for agents that already have it
|
|
726
|
+
const slug = agentId.startsWith('bmad-') ? agentId : `bmad-${agentId}`;
|
|
727
|
+
newModesContent += ` - slug: ${slug}\n`;
|
|
724
728
|
newModesContent += ` name: '${icon} ${title}'\n`;
|
|
725
729
|
newModesContent += ` roleDefinition: ${roleDefinition}\n`;
|
|
726
730
|
newModesContent += ` whenToUse: ${whenToUse}\n`;
|