bmad-plus 0.7.1 → 0.7.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/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ?? BMAD+ � Augmented AI-Driven Development Framework
|
|
2
2
|
|
|
3
|
-
[](CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "bmad-plus",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.2",
|
|
5
5
|
"description": "BMAD+ — Augmented AI-Driven Development Framework with multi-role agents, autopilot, and parallel execution",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bmad",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ?? BMAD+ � Erweitertes KI-gest�tztes Entwicklungs-Framework
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ?? BMAD+ � Framework de Desarrollo Impulsado por IA Aumentada
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ?? BMAD+ � Augmented AI-Driven Development Framework
|
|
2
2
|
|
|
3
|
-
[](../CHANGELOG.md)
|
|
4
4
|
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
5
|
[](../LICENSE)
|
|
6
6
|
|
|
@@ -70,13 +70,13 @@ doctorCmd.action(doctor.action);
|
|
|
70
70
|
|
|
71
71
|
// Scan command
|
|
72
72
|
const scanCmd = program
|
|
73
|
-
.command('scan')
|
|
73
|
+
.command('scan [path]')
|
|
74
74
|
.description('Scan directories to discover and index projects in the global brain');
|
|
75
75
|
|
|
76
76
|
for (const option of scan.options || []) {
|
|
77
77
|
scanCmd.option(...option);
|
|
78
78
|
}
|
|
79
|
-
scanCmd.action(scan.action);
|
|
79
|
+
scanCmd.action((scanPath, options) => scan.action({ ...options, directory: scanPath || options.directory }));
|
|
80
80
|
|
|
81
81
|
// Memory command
|
|
82
82
|
const memoryCmd = program
|
package/tools/cli/i18n.js
CHANGED
|
@@ -10,7 +10,7 @@ const LANGUAGES = {
|
|
|
10
10
|
flag: '🇬🇧',
|
|
11
11
|
name: 'English',
|
|
12
12
|
locale: 'en',
|
|
13
|
-
installer_title: ' BMAD+ Installer v0.7.
|
|
13
|
+
installer_title: ' BMAD+ Installer v0.7.2 ',
|
|
14
14
|
select_language: 'Select your language',
|
|
15
15
|
installing_to: 'Installing to',
|
|
16
16
|
select_packs: 'Which packs to install? (Core is always included)',
|
|
@@ -92,7 +92,7 @@ const LANGUAGES = {
|
|
|
92
92
|
flag: '🇫🇷',
|
|
93
93
|
name: 'Français',
|
|
94
94
|
locale: 'fr',
|
|
95
|
-
installer_title: ' BMAD+ Installeur v0.7.
|
|
95
|
+
installer_title: ' BMAD+ Installeur v0.7.2 ',
|
|
96
96
|
select_language: 'Choisissez votre langue',
|
|
97
97
|
installing_to: 'Installation dans',
|
|
98
98
|
select_packs: 'Quels packs installer ? (Core est toujours inclus)',
|
|
@@ -172,7 +172,7 @@ const LANGUAGES = {
|
|
|
172
172
|
flag: '🇪🇸',
|
|
173
173
|
name: 'Español',
|
|
174
174
|
locale: 'es',
|
|
175
|
-
installer_title: ' BMAD+ Instalador v0.7.
|
|
175
|
+
installer_title: ' BMAD+ Instalador v0.7.2 ',
|
|
176
176
|
select_language: 'Seleccione su idioma',
|
|
177
177
|
installing_to: 'Instalando en',
|
|
178
178
|
select_packs: '¿Qué packs instalar? (Core siempre está incluido)',
|
|
@@ -242,7 +242,7 @@ const LANGUAGES = {
|
|
|
242
242
|
flag: '🇩🇪',
|
|
243
243
|
name: 'Deutsch',
|
|
244
244
|
locale: 'de',
|
|
245
|
-
installer_title: ' BMAD+ Installer v0.7.
|
|
245
|
+
installer_title: ' BMAD+ Installer v0.7.2 ',
|
|
246
246
|
select_language: 'Wählen Sie Ihre Sprache',
|
|
247
247
|
installing_to: 'Installiere in',
|
|
248
248
|
select_packs: 'Welche Packs installieren? (Core ist immer enthalten)',
|
|
@@ -312,7 +312,7 @@ const LANGUAGES = {
|
|
|
312
312
|
flag: '🇧🇷',
|
|
313
313
|
name: 'Português (Brasil)',
|
|
314
314
|
locale: 'pt-BR',
|
|
315
|
-
installer_title: ' BMAD+ Instalador v0.7.
|
|
315
|
+
installer_title: ' BMAD+ Instalador v0.7.2 ',
|
|
316
316
|
select_language: 'Selecione seu idioma',
|
|
317
317
|
installing_to: 'Instalando em',
|
|
318
318
|
select_packs: 'Quais packs instalar? (Core sempre está incluído)',
|
|
@@ -382,7 +382,7 @@ const LANGUAGES = {
|
|
|
382
382
|
flag: '🇷🇺',
|
|
383
383
|
name: 'Русский',
|
|
384
384
|
locale: 'ru',
|
|
385
|
-
installer_title: ' BMAD+ Установщик v0.7.
|
|
385
|
+
installer_title: ' BMAD+ Установщик v0.7.2 ',
|
|
386
386
|
select_language: 'Выберите язык',
|
|
387
387
|
installing_to: 'Установка в',
|
|
388
388
|
select_packs: 'Какие пакеты установить? (Core всегда включён)',
|
|
@@ -452,7 +452,7 @@ const LANGUAGES = {
|
|
|
452
452
|
flag: '🇨🇳',
|
|
453
453
|
name: '中文 (简体)',
|
|
454
454
|
locale: 'zh-CN',
|
|
455
|
-
installer_title: ' BMAD+ 安装程序 v0.7.
|
|
455
|
+
installer_title: ' BMAD+ 安装程序 v0.7.2 ',
|
|
456
456
|
select_language: '选择您的语言',
|
|
457
457
|
installing_to: '安装到',
|
|
458
458
|
select_packs: '安装哪些包?(Core 始终包含)',
|
|
@@ -522,7 +522,7 @@ const LANGUAGES = {
|
|
|
522
522
|
flag: '🇮🇱',
|
|
523
523
|
name: 'עברית',
|
|
524
524
|
locale: 'he',
|
|
525
|
-
installer_title: ' BMAD+ מתקין v0.7.
|
|
525
|
+
installer_title: ' BMAD+ מתקין v0.7.2 ',
|
|
526
526
|
select_language: 'בחר את השפה שלך',
|
|
527
527
|
installing_to: 'מתקין ב',
|
|
528
528
|
select_packs: 'אילו חבילות להתקין? (Core תמיד כלול)',
|
|
@@ -592,7 +592,7 @@ const LANGUAGES = {
|
|
|
592
592
|
flag: '🇯🇵',
|
|
593
593
|
name: '日本語',
|
|
594
594
|
locale: 'ja',
|
|
595
|
-
installer_title: ' BMAD+ インストーラー v0.7.
|
|
595
|
+
installer_title: ' BMAD+ インストーラー v0.7.2 ',
|
|
596
596
|
select_language: '言語を選択してください',
|
|
597
597
|
installing_to: 'インストール先',
|
|
598
598
|
select_packs: 'どのパックをインストールしますか?(Coreは常に含まれます)',
|
|
@@ -662,7 +662,7 @@ const LANGUAGES = {
|
|
|
662
662
|
flag: '🇮🇹',
|
|
663
663
|
name: 'Italiano',
|
|
664
664
|
locale: 'it',
|
|
665
|
-
installer_title: ' BMAD+ Installatore v0.7.
|
|
665
|
+
installer_title: ' BMAD+ Installatore v0.7.2 ',
|
|
666
666
|
select_language: 'Seleziona la tua lingua',
|
|
667
667
|
installing_to: 'Installazione in',
|
|
668
668
|
select_packs: 'Quali pack installare? (Core è sempre incluso)',
|