bmad-method 4.29.7 → 4.30.1

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,17 @@
1
+ ## [4.30.1](https://github.com/bmadcode/BMAD-METHOD/compare/v4.30.0...v4.30.1) (2025-07-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added logo to installer, because why not... ([2cea37a](https://github.com/bmadcode/BMAD-METHOD/commit/2cea37aa8c1924ddf5aa476f4c312837f2615a70))
7
+
8
+ # [4.30.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.7...v4.30.0) (2025-07-15)
9
+
10
+
11
+ ### Features
12
+
13
+ * installer is now VERY clear about IDE selection being a multiselect ([e24b6f8](https://github.com/bmadcode/BMAD-METHOD/commit/e24b6f84fd9e4ff4b99263019b5021ca2b145b2f))
14
+
1
15
  ## [4.29.7](https://github.com/bmadcode/BMAD-METHOD/compare/v4.29.6...v4.29.7) (2025-07-14)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.29.7",
3
+ "version": "4.30.1",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -124,7 +124,19 @@ program
124
124
 
125
125
  async function promptInstallation() {
126
126
  await initializeModules();
127
- console.log(chalk.bold.blue(`\nWelcome to BMad Method Installer v${version}\n`));
127
+
128
+ // Display ASCII logo
129
+ console.log(chalk.bold.cyan(`
130
+ ██████╗ ███╗ ███╗ █████╗ ██████╗ ███╗ ███╗███████╗████████╗██╗ ██╗ ██████╗ ██████╗
131
+ ██╔══██╗████╗ ████║██╔══██╗██╔══██╗ ████╗ ████║██╔════╝╚══██╔══╝██║ ██║██╔═══██╗██╔══██╗
132
+ ██████╔╝██╔████╔██║███████║██║ ██║█████╗██╔████╔██║█████╗ ██║ ███████║██║ ██║██║ ██║
133
+ ██╔══██╗██║╚██╔╝██║██╔══██║██║ ██║╚════╝██║╚██╔╝██║██╔══╝ ██║ ██╔══██║██║ ██║██║ ██║
134
+ ██████╔╝██║ ╚═╝ ██║██║ ██║██████╔╝ ██║ ╚═╝ ██║███████╗ ██║ ██║ ██║╚██████╔╝██████╔╝
135
+ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
136
+ `));
137
+
138
+ console.log(chalk.bold.magenta('🚀 Universal AI Agent Framework for Any Domain'));
139
+ console.log(chalk.bold.blue(`✨ Installer v${version}\n`));
128
140
 
129
141
  const answers = {};
130
142
 
@@ -277,23 +289,55 @@ async function promptInstallation() {
277
289
  }
278
290
 
279
291
  // Ask for IDE configuration
280
- const { ides } = await inquirer.prompt([
281
- {
282
- type: 'checkbox',
283
- name: 'ides',
284
- message: 'Which IDE(s) are you using? (press Enter to skip IDE setup, or select any to configure):',
285
- choices: [
286
- { name: 'Cursor', value: 'cursor' },
287
- { name: 'Claude Code', value: 'claude-code' },
288
- { name: 'Windsurf', value: 'windsurf' },
289
- { name: 'Trae', value: 'trae' }, // { name: 'Trae', value: 'trae'}
290
- { name: 'Roo Code', value: 'roo' },
291
- { name: 'Cline', value: 'cline' },
292
- { name: 'Gemini CLI', value: 'gemini' },
293
- { name: 'Github Copilot', value: 'github-copilot' }
294
- ]
292
+ let ides = [];
293
+ let ideSelectionComplete = false;
294
+
295
+ while (!ideSelectionComplete) {
296
+ console.log(chalk.cyan('\n🛠️ IDE Configuration'));
297
+ console.log(chalk.bold.yellow.bgRed(' ⚠️ IMPORTANT: This is a MULTISELECT! Use SPACEBAR to toggle each IDE! '));
298
+ console.log(chalk.bold.magenta('🔸 Use arrow keys to navigate'));
299
+ console.log(chalk.bold.magenta('🔸 Use SPACEBAR to select/deselect IDEs'));
300
+ console.log(chalk.bold.magenta('🔸 Press ENTER when finished selecting\n'));
301
+
302
+ const ideResponse = await inquirer.prompt([
303
+ {
304
+ type: 'checkbox',
305
+ name: 'ides',
306
+ message: 'Which IDE(s) do you want to configure? (Select with SPACEBAR, confirm with ENTER):',
307
+ choices: [
308
+ { name: 'Cursor', value: 'cursor' },
309
+ { name: 'Claude Code', value: 'claude-code' },
310
+ { name: 'Windsurf', value: 'windsurf' },
311
+ { name: 'Trae', value: 'trae' }, // { name: 'Trae', value: 'trae'}
312
+ { name: 'Roo Code', value: 'roo' },
313
+ { name: 'Cline', value: 'cline' },
314
+ { name: 'Gemini CLI', value: 'gemini' },
315
+ { name: 'Github Copilot', value: 'github-copilot' }
316
+ ]
317
+ }
318
+ ]);
319
+
320
+ ides = ideResponse.ides;
321
+
322
+ // Confirm no IDE selection if none selected
323
+ if (ides.length === 0) {
324
+ const { confirmNoIde } = await inquirer.prompt([
325
+ {
326
+ type: 'confirm',
327
+ name: 'confirmNoIde',
328
+ message: chalk.red('⚠️ You have NOT selected any IDEs. This means NO IDE integration will be set up. Is this correct?'),
329
+ default: false
330
+ }
331
+ ]);
332
+
333
+ if (!confirmNoIde) {
334
+ console.log(chalk.bold.red('\n🔄 Returning to IDE selection. Remember to use SPACEBAR to select IDEs!\n'));
335
+ continue; // Go back to IDE selection only
336
+ }
295
337
  }
296
- ]);
338
+
339
+ ideSelectionComplete = true;
340
+ }
297
341
 
298
342
  // Use selected IDEs directly
299
343
  answers.ides = ides;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.29.7",
3
+ "version": "4.30.1",
4
4
  "description": "BMad Method installer - AI-powered Agile development framework",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {