bmad-plus 0.4.2 → 0.4.3

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/tools/cli/i18n.js CHANGED
@@ -1,5 +1,5 @@
1
- /**
2
- * BMAD+ CLI Internationalization (i18n)
1
+ /**
2
+ * BMAD+ CLI — Internationalization (i18n)
3
3
  * 10 languages: EN, FR, ES, DE, PT-BR, RU, ZH, HE, JA, IT
4
4
  *
5
5
  * Author: Laurent Rochetta
@@ -7,10 +7,10 @@
7
7
 
8
8
  const LANGUAGES = {
9
9
  en: {
10
- flag: '🇬🇧',
10
+ flag: '🇬🇧',
11
11
  name: 'English',
12
12
  locale: 'en',
13
- installer_title: ' BMAD+ Installer v0.4.2 ',
13
+ installer_title: ' BMAD+ Installer v0.4.3 ',
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)',
@@ -20,19 +20,19 @@ const LANGUAGES = {
20
20
  enter_name: 'Your first name (agents use it to greet you)',
21
21
  comm_language: 'Communication language',
22
22
  exec_mode: 'Execution mode',
23
- exec_manual: 'Manual You call agents yourself',
24
- exec_autopilot: 'Autopilot Nexus manages the full pipeline',
25
- exec_hybrid: 'Hybrid Autopilot with frequent checkpoints',
23
+ exec_manual: 'Manual — You call agents yourself',
24
+ exec_autopilot: 'Autopilot — Nexus manages the full pipeline',
25
+ exec_hybrid: 'Hybrid — Autopilot with frequent checkpoints',
26
26
  installing_files: 'Installing files...',
27
27
  configuring_ides: 'Configuring IDEs...',
28
- installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} files copied`,
29
- ide_configured: (n) => `✅ ${n} IDE(s) configured`,
28
+ installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} files copied`,
29
+ ide_configured: (n) => `✅ ${n} IDE(s) configured`,
30
30
  cancelled: 'Installation cancelled.',
31
31
  failed: 'Installation failed.',
32
32
  source_not_found: 'Source directory not found',
33
33
  soon: 'coming soon',
34
- guide_title: ' Installation complete Getting started',
35
- guide_who: '💬 Who to talk to?',
34
+ guide_title: '✅ Installation complete — Getting started',
35
+ guide_who: '💬 Who to talk to?',
36
36
  guide_idea: 'Discuss an idea',
37
37
  guide_prd: 'Create a PRD',
38
38
  guide_arch: 'Technical architecture',
@@ -42,135 +42,187 @@ const LANGUAGES = {
42
42
  guide_auto: 'Automate everything',
43
43
  guide_osint: 'OSINT investigation',
44
44
  guide_maker: 'Create a new agent',
45
- guide_seo: 'SEO / GEO audit (360°)',
45
+ guide_seo: 'SEO / GEO audit (360°)',
46
46
  guide_backup: 'Smart project backup',
47
47
  guide_animated: 'Animated luxury website',
48
- guide_workflow: '🚀 Recommended workflow:',
49
- guide_or_auto: ' Or: "autopilot" to manage everything automatically',
50
- guide_output: '📁 Output',
51
- guide_ready: 'BMAD+ is ready! Talk to Atlas to get started 🚀',
52
- guide_credits: ' BMAD+ is created by Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
48
+ guide_workflow: '🚀 Recommended workflow:',
49
+ guide_or_auto: 'âš¡ Or: "autopilot" to manage everything automatically',
50
+ guide_output: '📁 Output',
51
+ guide_ready: 'BMAD+ is ready! Talk to Atlas to get started 🚀',
52
+ guide_credits: '✨ BMAD+ is created by Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
53
+ // Uninstall
54
+ uninstall_confirm: 'Remove BMAD+ from this project?',
55
+ uninstall_removing: 'Removing...',
56
+ uninstall_done: (n) => `✅ BMAD+ removed (${n} items)`,
57
+ uninstall_output_kept: '📁 _bmad-output/ kept (contains files)',
58
+ installed_on: 'installed',
59
+ // Update
60
+ update_confirm: 'Update agents and skills?',
61
+ update_updating: 'Updating agents and skills...',
62
+ update_done: (n) => `✅ ${n} files updated`,
63
+ update_current: '✅ Already up to date!',
64
+ update_ready: 'Update complete! 🚀',
65
+ guide_cli_title: 'CLI Commands',
66
+ guide_cli_install: '— Install agents & skills',
67
+ guide_cli_update: '— Update agents (keeps config)',
68
+ guide_cli_doctor: '— Check installation health',
69
+ guide_cli_uninstall: '— Remove BMAD+ from project',
70
+ guide_examples_title: 'Quick Examples',
71
+ guide_example_seo: '🔍 SEO: "/seo audit https://example.com"',
72
+ guide_example_backup: '🗂️ Backup: "/backup create" → ZIP timestamped',
73
+ guide_example_animated: '🎬 Animated: "/animated build hero.mp4"',
74
+ guide_example_osint: '🔍 OSINT: "Shadow, investigate John Doe"',
53
75
  },
54
76
 
55
77
  fr: {
56
- flag: '🇫🇷',
57
- name: 'Français',
78
+ flag: '🇫🇷',
79
+ name: 'Français',
58
80
  locale: 'fr',
59
- installer_title: ' BMAD+ Installeur v0.4.2 ',
81
+ installer_title: ' BMAD+ Installeur v0.4.3 ',
60
82
  select_language: 'Choisissez votre langue',
61
83
  installing_to: 'Installation dans',
62
84
  select_packs: 'Quels packs installer ? (Core est toujours inclus)',
63
85
  select_ide: 'Quels IDE utilises-tu ?',
64
- detected_ides: 'IDE détectés',
65
- selected_packs: 'Packs sélectionnés',
66
- enter_name: 'Ton prénom (les agents l\'utilisent pour te saluer)',
86
+ detected_ides: 'IDE détectés',
87
+ selected_packs: 'Packs sélectionnés',
88
+ enter_name: 'Ton prénom (les agents l\'utilisent pour te saluer)',
67
89
  comm_language: 'Langue de communication',
68
- exec_mode: 'Mode d\'exécution',
69
- exec_manual: 'Manuel Tu appelles les agents toi-même',
70
- exec_autopilot: 'Autopilot Nexus gère tout le pipeline',
71
- exec_hybrid: 'Hybride Autopilot avec checkpoints fréquents',
90
+ exec_mode: 'Mode d\'exécution',
91
+ exec_manual: 'Manuel — Tu appelles les agents toi-même',
92
+ exec_autopilot: 'Autopilot — Nexus gère tout le pipeline',
93
+ exec_hybrid: 'Hybride — Autopilot avec checkpoints fréquents',
72
94
  installing_files: 'Installation des fichiers...',
73
95
  configuring_ides: 'Configuration des IDE...',
74
- installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} fichiers copiés`,
75
- ide_configured: (n) => `✅ ${n} IDE configuré(s)`,
76
- cancelled: 'Installation annulée.',
77
- failed: 'Installation échouée.',
78
- source_not_found: 'Répertoire source introuvable',
79
- soon: 'bientôt',
80
- guide_title: ' Installation terminée Comment commencer',
81
- guide_who: '💬 À qui parler ?',
82
- guide_idea: 'Discuter d\'une idée',
83
- guide_prd: 'Créer un PRD',
96
+ installed_summary: (a, s, f) => `✅ ${a} agents, ${s} skills, ${f} fichiers copiés`,
97
+ ide_configured: (n) => `✅ ${n} IDE configuré(s)`,
98
+ cancelled: 'Installation annulée.',
99
+ failed: 'Installation échouée.',
100
+ source_not_found: 'Répertoire source introuvable',
101
+ soon: 'bientôt',
102
+ guide_title: '✅ Installation terminée — Comment commencer',
103
+ guide_who: '💬 À qui parler ?',
104
+ guide_idea: 'Discuter d\'une idée',
105
+ guide_prd: 'Créer un PRD',
84
106
  guide_arch: 'Architecture technique',
85
- guide_code: 'Implémenter du code',
107
+ guide_code: 'Implémenter du code',
86
108
  guide_test: 'Tester / code review',
87
109
  guide_sprint: 'Planifier un sprint',
88
110
  guide_auto: 'Tout automatiser',
89
111
  guide_osint: 'Investigation OSINT',
90
- guide_maker: 'Créer un nouvel agent',
91
- guide_seo: 'Audit SEO / GEO (360°)',
112
+ guide_maker: 'Créer un nouvel agent',
113
+ guide_seo: 'Audit SEO / GEO (360°)',
92
114
  guide_backup: 'Sauvegarde intelligente',
93
- guide_animated: 'Site web animé de luxe',
94
- guide_workflow: '🚀 Workflow recommandé :',
95
- guide_or_auto: ' Ou : "autopilot" pour tout gérer automatiquement',
96
- guide_output: '📁 Sortie',
97
- guide_ready: 'BMAD+ est prêt ! Parle à Atlas pour commencer 🚀',
98
- guide_credits: ' BMAD+ est créé par Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
115
+ guide_animated: 'Site web animé de luxe',
116
+ guide_workflow: '🚀 Workflow recommandé :',
117
+ guide_or_auto: '⚡ Ou : "autopilot" pour tout gérer automatiquement',
118
+ guide_output: '📁 Sortie',
119
+ guide_ready: 'BMAD+ est prêt ! Parle à Atlas pour commencer 🚀',
120
+ guide_credits: '✨ BMAD+ est créé par Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
121
+ uninstall_confirm: 'Supprimer BMAD+ de ce projet ?',
122
+ uninstall_removing: 'Suppression...',
123
+ uninstall_done: (n) => `✅ BMAD+ supprimé (${n} éléments)`,
124
+ uninstall_output_kept: '📁 _bmad-output/ conservé (contient des fichiers)',
125
+ installed_on: 'installé le',
126
+ update_confirm: 'Mettre à jour les agents et skills ?',
127
+ update_updating: 'Mise à jour des agents et skills...',
128
+ update_done: (n) => `✅ ${n} fichiers mis à jour`,
129
+ update_current: '✅ Déjà à jour !',
130
+ update_ready: 'Mise à jour terminée ! 🚀',
131
+ guide_cli_title: 'Commandes CLI',
132
+ guide_cli_install: '— Installer agents & skills',
133
+ guide_cli_update: '— Mettre à jour (conserve la config)',
134
+ guide_cli_doctor: '— Vérifier l\'installation',
135
+ guide_cli_uninstall: '— Supprimer BMAD+ du projet',
136
+ guide_examples_title: 'Exemples rapides',
137
+ guide_example_seo: '🔍 SEO : "/seo audit https://example.com"',
138
+ guide_example_backup: '🗂️ Backup : "/backup create" → ZIP horodaté',
139
+ guide_example_animated: '🎬 Animé : "/animated build hero.mp4"',
140
+ guide_example_osint: '🔍 OSINT : "Shadow, investigate John Doe"',
99
141
  },
100
142
 
101
143
  es: {
102
- flag: '🇪🇸',
103
- name: 'Español',
144
+ flag: '🇪🇸',
145
+ name: 'Español',
104
146
  locale: 'es',
105
- installer_title: ' BMAD+ Instalador v0.4.2 ',
147
+ installer_title: ' BMAD+ Instalador v0.4.3 ',
106
148
  select_language: 'Seleccione su idioma',
107
149
  installing_to: 'Instalando en',
108
- select_packs: '¿Qué packs instalar? (Core siempre está incluido)',
109
- select_ide: '¿Qué IDE usas?',
150
+ select_packs: '¿Qué packs instalar? (Core siempre está incluido)',
151
+ select_ide: '¿Qué IDE usas?',
110
152
  detected_ides: 'IDEs detectados',
111
153
  selected_packs: 'Packs seleccionados',
112
154
  enter_name: 'Tu nombre (los agentes lo usan para saludarte)',
113
- comm_language: 'Idioma de comunicación',
114
- exec_mode: 'Modo de ejecución',
115
- exec_manual: 'Manual llamas a los agentes',
116
- exec_autopilot: 'Autopilot Nexus gestiona todo el pipeline',
117
- exec_hybrid: 'Híbrido Autopilot con puntos de control frecuentes',
155
+ comm_language: 'Idioma de comunicación',
156
+ exec_mode: 'Modo de ejecución',
157
+ exec_manual: 'Manual — Tú llamas a los agentes',
158
+ exec_autopilot: 'Autopilot — Nexus gestiona todo el pipeline',
159
+ exec_hybrid: 'Híbrido — Autopilot con puntos de control frecuentes',
118
160
  installing_files: 'Instalando archivos...',
119
161
  configuring_ides: 'Configurando IDEs...',
120
- installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} archivos copiados`,
121
- ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
122
- cancelled: 'Instalación cancelada.',
123
- failed: 'Instalación fallida.',
162
+ installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} archivos copiados`,
163
+ ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
164
+ cancelled: 'Instalación cancelada.',
165
+ failed: 'Instalación fallida.',
124
166
  source_not_found: 'Directorio fuente no encontrado',
125
- soon: 'próximamente',
126
- guide_title: ' Instalación completa Cómo empezar',
127
- guide_who: '💬 ¿Con quién hablar?',
167
+ soon: 'próximamente',
168
+ guide_title: '✅ Instalación completa — Cómo empezar',
169
+ guide_who: '💬 ¿Con quién hablar?',
128
170
  guide_idea: 'Discutir una idea',
129
171
  guide_prd: 'Crear un PRD',
130
- guide_arch: 'Arquitectura técnica',
131
- guide_code: 'Implementar código',
172
+ guide_arch: 'Arquitectura técnica',
173
+ guide_code: 'Implementar código',
132
174
  guide_test: 'Probar / code review',
133
175
  guide_sprint: 'Planificar un sprint',
134
176
  guide_auto: 'Automatizar todo',
135
- guide_osint: 'Investigación OSINT',
177
+ guide_osint: 'Investigación OSINT',
136
178
  guide_maker: 'Crear un agente nuevo',
137
- guide_seo: 'Auditoría SEO / GEO (360°)',
179
+ guide_seo: 'Auditoría SEO / GEO (360°)',
138
180
  guide_backup: 'Copia de seguridad inteligente',
139
181
  guide_animated: 'Sitio web animado de lujo',
140
- guide_workflow: '🚀 Flujo recomendado:',
141
- guide_or_auto: ' O: "autopilot" para gestionar todo automáticamente',
142
- guide_output: '📁 Salida',
143
- guide_ready: '¡BMAD+ está listo! Habla con Atlas para comenzar 🚀',
144
- guide_credits: ' BMAD+ es creado por Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
182
+ guide_workflow: '🚀 Flujo recomendado:',
183
+ guide_or_auto: '⚡ O: "autopilot" para gestionar todo automáticamente',
184
+ guide_output: '📁 Salida',
185
+ guide_ready: '¡BMAD+ está listo! Habla con Atlas para comenzar 🚀',
186
+ guide_credits: '✨ BMAD+ es creado por Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
187
+ uninstall_confirm: '¿Eliminar BMAD+ de este proyecto?',
188
+ uninstall_removing: 'Eliminando...',
189
+ uninstall_done: (n) => `✅ BMAD+ eliminado (${n} elementos)`,
190
+ uninstall_output_kept: '📁 _bmad-output/ conservado (contiene archivos)',
191
+ installed_on: 'instalado el',
192
+ update_confirm: '¿Actualizar agentes y habilidades?',
193
+ update_updating: 'Actualizando agentes y habilidades...',
194
+ update_done: (n) => `✅ ${n} archivos actualizados`,
195
+ update_current: '✅ ¡Ya está actualizado!',
196
+ update_ready: '¡Actualización completada! 🚀',
145
197
  },
146
198
 
147
199
  de: {
148
- flag: '🇩🇪',
200
+ flag: '🇩🇪',
149
201
  name: 'Deutsch',
150
202
  locale: 'de',
151
- installer_title: ' BMAD+ Installer v0.4.2 ',
152
- select_language: 'Wählen Sie Ihre Sprache',
203
+ installer_title: ' BMAD+ Installer v0.4.3 ',
204
+ select_language: 'Wählen Sie Ihre Sprache',
153
205
  installing_to: 'Installiere in',
154
206
  select_packs: 'Welche Packs installieren? (Core ist immer enthalten)',
155
207
  select_ide: 'Welche IDE verwendest du?',
156
208
  detected_ides: 'Erkannte IDEs',
157
- selected_packs: 'Ausgewählte Packs',
158
- enter_name: 'Dein Vorname (Agenten verwenden ihn zur Begrüßung)',
209
+ selected_packs: 'Ausgewählte Packs',
210
+ enter_name: 'Dein Vorname (Agenten verwenden ihn zur Begrüßung)',
159
211
  comm_language: 'Kommunikationssprache',
160
- exec_mode: 'Ausführungsmodus',
161
- exec_manual: 'Manuell Du rufst Agenten selbst auf',
162
- exec_autopilot: 'Autopilot Nexus verwaltet die gesamte Pipeline',
163
- exec_hybrid: 'Hybrid Autopilot mit häufigen Checkpoints',
212
+ exec_mode: 'Ausführungsmodus',
213
+ exec_manual: 'Manuell — Du rufst Agenten selbst auf',
214
+ exec_autopilot: 'Autopilot — Nexus verwaltet die gesamte Pipeline',
215
+ exec_hybrid: 'Hybrid — Autopilot mit häufigen Checkpoints',
164
216
  installing_files: 'Dateien werden installiert...',
165
217
  configuring_ides: 'IDEs werden konfiguriert...',
166
- installed_summary: (a, s, f) => `✅ ${a} Agenten, ${s} Skills, ${f} Dateien kopiert`,
167
- ide_configured: (n) => `✅ ${n} IDE(s) konfiguriert`,
218
+ installed_summary: (a, s, f) => `✅ ${a} Agenten, ${s} Skills, ${f} Dateien kopiert`,
219
+ ide_configured: (n) => `✅ ${n} IDE(s) konfiguriert`,
168
220
  cancelled: 'Installation abgebrochen.',
169
221
  failed: 'Installation fehlgeschlagen.',
170
222
  source_not_found: 'Quellverzeichnis nicht gefunden',
171
- soon: 'bald verfügbar',
172
- guide_title: ' Installation abgeschlossen Erste Schritte',
173
- guide_who: '💬 Mit wem sprechen?',
223
+ soon: 'bald verfügbar',
224
+ guide_title: '✅ Installation abgeschlossen — Erste Schritte',
225
+ guide_who: '💬 Mit wem sprechen?',
174
226
  guide_idea: 'Eine Idee besprechen',
175
227
  guide_prd: 'Ein PRD erstellen',
176
228
  guide_arch: 'Technische Architektur',
@@ -180,273 +232,333 @@ const LANGUAGES = {
180
232
  guide_auto: 'Alles automatisieren',
181
233
  guide_osint: 'OSINT-Ermittlung',
182
234
  guide_maker: 'Einen neuen Agenten erstellen',
183
- guide_seo: 'SEO / GEO Audit (360°)',
235
+ guide_seo: 'SEO / GEO Audit (360°)',
184
236
  guide_backup: 'Intelligente Projektsicherung',
185
237
  guide_animated: 'Animierte Luxus-Website',
186
- guide_workflow: '🚀 Empfohlener Workflow:',
187
- guide_or_auto: ' Oder: "autopilot" für vollautomatische Verwaltung',
188
- guide_output: '📁 Ausgabe',
189
- guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen 🚀',
190
- guide_credits: ' BMAD+ wurde erstellt von Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
238
+ guide_workflow: '🚀 Empfohlener Workflow:',
239
+ guide_or_auto: '⚡ Oder: "autopilot" für vollautomatische Verwaltung',
240
+ guide_output: '📁 Ausgabe',
241
+ guide_ready: 'BMAD+ ist bereit! Sprich mit Atlas um loszulegen 🚀',
242
+ guide_credits: '✨ BMAD+ wurde erstellt von Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
243
+ uninstall_confirm: 'BMAD+ aus diesem Projekt entfernen?',
244
+ uninstall_removing: 'Entfernen...',
245
+ uninstall_done: (n) => `✅ BMAD+ entfernt (${n} Elemente)`,
246
+ uninstall_output_kept: '📁 _bmad-output/ beibehalten (enthält Dateien)',
247
+ installed_on: 'installiert am',
248
+ update_confirm: 'Agenten und Skills aktualisieren?',
249
+ update_updating: 'Agenten und Skills werden aktualisiert...',
250
+ update_done: (n) => `✅ ${n} Dateien aktualisiert`,
251
+ update_current: '✅ Bereits aktuell!',
252
+ update_ready: 'Update abgeschlossen! 🚀',
191
253
  },
192
254
 
193
255
  'pt-br': {
194
- flag: '🇧🇷',
195
- name: 'Português (Brasil)',
256
+ flag: '🇧🇷',
257
+ name: 'Português (Brasil)',
196
258
  locale: 'pt-BR',
197
- installer_title: ' BMAD+ Instalador v0.4.2 ',
259
+ installer_title: ' BMAD+ Instalador v0.4.3 ',
198
260
  select_language: 'Selecione seu idioma',
199
261
  installing_to: 'Instalando em',
200
- select_packs: 'Quais packs instalar? (Core sempre está incluído)',
201
- select_ide: 'Qual IDE você usa?',
262
+ select_packs: 'Quais packs instalar? (Core sempre está incluído)',
263
+ select_ide: 'Qual IDE você usa?',
202
264
  detected_ides: 'IDEs detectados',
203
265
  selected_packs: 'Packs selecionados',
204
266
  enter_name: 'Seu nome (os agentes usam para te cumprimentar)',
205
- comm_language: 'Idioma de comunicação',
206
- exec_mode: 'Modo de execução',
207
- exec_manual: 'Manual Você chama os agentes',
208
- exec_autopilot: 'Autopilot Nexus gerencia todo o pipeline',
209
- exec_hybrid: 'Híbrido Autopilot com checkpoints frequentes',
267
+ comm_language: 'Idioma de comunicação',
268
+ exec_mode: 'Modo de execução',
269
+ exec_manual: 'Manual — Você chama os agentes',
270
+ exec_autopilot: 'Autopilot — Nexus gerencia todo o pipeline',
271
+ exec_hybrid: 'Híbrido — Autopilot com checkpoints frequentes',
210
272
  installing_files: 'Instalando arquivos...',
211
273
  configuring_ides: 'Configurando IDEs...',
212
- installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} arquivos copiados`,
213
- ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
214
- cancelled: 'Instalação cancelada.',
215
- failed: 'Instalação falhou.',
216
- source_not_found: 'Diretório fonte não encontrado',
274
+ installed_summary: (a, s, f) => `✅ ${a} agentes, ${s} skills, ${f} arquivos copiados`,
275
+ ide_configured: (n) => `✅ ${n} IDE(s) configurados`,
276
+ cancelled: 'Instalação cancelada.',
277
+ failed: 'Instalação falhou.',
278
+ source_not_found: 'Diretório fonte não encontrado',
217
279
  soon: 'em breve',
218
- guide_title: ' Instalação completa Como começar',
219
- guide_who: '💬 Com quem falar?',
280
+ guide_title: '✅ Instalação completa — Como começar',
281
+ guide_who: '💬 Com quem falar?',
220
282
  guide_idea: 'Discutir uma ideia',
221
283
  guide_prd: 'Criar um PRD',
222
- guide_arch: 'Arquitetura técnica',
223
- guide_code: 'Implementar código',
284
+ guide_arch: 'Arquitetura técnica',
285
+ guide_code: 'Implementar código',
224
286
  guide_test: 'Testar / code review',
225
287
  guide_sprint: 'Planejar um sprint',
226
288
  guide_auto: 'Automatizar tudo',
227
- guide_osint: 'Investigação OSINT',
289
+ guide_osint: 'Investigação OSINT',
228
290
  guide_maker: 'Criar um novo agente',
229
- guide_seo: 'Auditoria SEO / GEO (360°)',
291
+ guide_seo: 'Auditoria SEO / GEO (360°)',
230
292
  guide_backup: 'Backup inteligente do projeto',
231
293
  guide_animated: 'Site animado de luxo',
232
- guide_workflow: '🚀 Fluxo recomendado:',
233
- guide_or_auto: ' Ou: "autopilot" para gerenciar tudo automaticamente',
234
- guide_output: '📁 Saída',
235
- guide_ready: 'BMAD+ está pronto! Fale com Atlas para começar 🚀',
236
- guide_credits: ' BMAD+ foi criado por Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
294
+ guide_workflow: '🚀 Fluxo recomendado:',
295
+ guide_or_auto: 'âš¡ Ou: "autopilot" para gerenciar tudo automaticamente',
296
+ guide_output: '📁 Saída',
297
+ guide_ready: 'BMAD+ está pronto! Fale com Atlas para começar 🚀',
298
+ guide_credits: '✨ BMAD+ foi criado por Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
299
+ uninstall_confirm: 'Remover BMAD+ deste projeto?',
300
+ uninstall_removing: 'Removendo...',
301
+ uninstall_done: (n) => `✅ BMAD+ removido (${n} itens)`,
302
+ uninstall_output_kept: '📁 _bmad-output/ mantido (contém arquivos)',
303
+ installed_on: 'instalado em',
304
+ update_confirm: 'Atualizar agentes e habilidades?',
305
+ update_updating: 'Atualizando agentes e habilidades...',
306
+ update_done: (n) => `✅ ${n} arquivos atualizados`,
307
+ update_current: '✅ Já está atualizado!',
308
+ update_ready: 'Atualização concluída! 🚀',
237
309
  },
238
310
 
239
311
  ru: {
240
- flag: '🇷🇺',
241
- name: 'Русский',
312
+ flag: '🇷🇺',
313
+ name: 'Русский',
242
314
  locale: 'ru',
243
- installer_title: ' BMAD+ Установщик v0.4.2 ',
244
- select_language: 'Выберите язык',
245
- installing_to: 'Установка в',
246
- select_packs: 'Какие пакеты установить? (Core всегда включён)',
247
- select_ide: 'Какую IDE вы используете?',
248
- detected_ides: 'Обнаруженные IDE',
249
- selected_packs: 'Выбранные пакеты',
250
- enter_name: 'Ваше имя (агенты используют его для приветствия)',
251
- comm_language: 'Язык общения',
252
- exec_mode: 'Режим выполнения',
253
- exec_manual: 'Ручной Вы вызываете агентов сами',
254
- exec_autopilot: 'Автопилот Nexus управляет всем конвейером',
255
- exec_hybrid: 'Гибрид Автопилот с частыми контрольными точками',
256
- installing_files: 'Установка файлов...',
257
- configuring_ides: 'Настройка IDE...',
258
- installed_summary: (a, s, f) => `✅ ${a} агентов, ${s} навыков, ${f} файлов скопировано`,
259
- ide_configured: (n) => `✅ ${n} IDE настроено`,
260
- cancelled: 'Установка отменена.',
261
- failed: 'Установка не удалась.',
262
- source_not_found: 'Исходная директория не найдена',
263
- soon: 'скоро',
264
- guide_title: ' Установка завершена Начало работы',
265
- guide_who: '💬 С кем поговорить?',
266
- guide_idea: 'Обсудить идею',
267
- guide_prd: 'Создать PRD',
268
- guide_arch: 'Техническая архитектура',
269
- guide_code: 'Реализовать код',
270
- guide_test: 'Тестировать / ревью кода',
271
- guide_sprint: 'Планировать спринт',
272
- guide_auto: 'Автоматизировать всё',
273
- guide_osint: 'OSINT расследование',
274
- guide_maker: 'Создать нового агента',
275
- guide_seo: 'SEO / GEO аудит (360°)',
276
- guide_backup: 'Умное резервное копирование',
277
- guide_animated: 'Анимированный люксовый сайт',
278
- guide_workflow: '🚀 Рекомендуемый рабочий процесс:',
279
- guide_or_auto: ' Или: "autopilot" для полной автоматизации',
280
- guide_output: '📁 Вывод',
281
- guide_ready: 'BMAD+ готов! Поговорите с Atlas чтобы начать 🚀',
282
- guide_credits: ' BMAD+ создан Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
315
+ installer_title: ' BMAD+ Установщик v0.4.3 ',
316
+ select_language: 'Выберите язык',
317
+ installing_to: 'Установка в',
318
+ select_packs: 'Какие пакеты установить? (Core всегда включён)',
319
+ select_ide: 'Какую IDE вы используете?',
320
+ detected_ides: 'Обнаруженные IDE',
321
+ selected_packs: 'Выбранные пакеты',
322
+ enter_name: 'Ваше имя (агенты используют его для приветствия)',
323
+ comm_language: 'Язык общения',
324
+ exec_mode: 'Режим выполнения',
325
+ exec_manual: 'Ручной — Вы вызываете агентов сами',
326
+ exec_autopilot: 'Автопилот — Nexus управляет всем конвейером',
327
+ exec_hybrid: 'Гибрид — Автопилот с частыми контрольными точками',
328
+ installing_files: 'Установка файлов...',
329
+ configuring_ides: 'Настройка IDE...',
330
+ installed_summary: (a, s, f) => `✅ ${a} агентов, ${s} навыков, ${f} файлов скопировано`,
331
+ ide_configured: (n) => `✅ ${n} IDE настроено`,
332
+ cancelled: 'Установка отменена.',
333
+ failed: 'Установка не удалась.',
334
+ source_not_found: 'Исходная директория не найдена',
335
+ soon: 'скоро',
336
+ guide_title: '✅ Установка завершена — Начало работы',
337
+ guide_who: '💬 С кем поговорить?',
338
+ guide_idea: 'Обсудить идею',
339
+ guide_prd: 'Создать PRD',
340
+ guide_arch: 'Техническая архитектура',
341
+ guide_code: 'Реализовать код',
342
+ guide_test: 'Тестировать / ревью кода',
343
+ guide_sprint: 'Планировать спринт',
344
+ guide_auto: 'Автоматизировать всё',
345
+ guide_osint: 'OSINT расследование',
346
+ guide_maker: 'Создать нового агента',
347
+ guide_seo: 'SEO / GEO аудит (360°)',
348
+ guide_backup: 'Умное резервное копирование',
349
+ guide_animated: 'Анимированный люксовый сайт',
350
+ guide_workflow: '🚀 Рекомендуемый рабочий процесс:',
351
+ guide_or_auto: '⚡ Или: "autopilot" для полной автоматизации',
352
+ guide_output: '📁 Вывод',
353
+ guide_ready: 'BMAD+ готов! Поговорите с Atlas чтобы начать 🚀',
354
+ guide_credits: '✨ BMAD+ создан Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
355
+ uninstall_confirm: 'Удалить BMAD+ из этого проекта?',
356
+ uninstall_removing: 'Удаление...',
357
+ uninstall_done: (n) => `✅ BMAD+ удалён (${n} элементов)`,
358
+ uninstall_output_kept: '📁 _bmad-output/ сохранён (содержит файлы)',
359
+ installed_on: 'установлено',
360
+ update_confirm: 'Обновить агентов и навыки?',
361
+ update_updating: 'Обновление агентов и навыков...',
362
+ update_done: (n) => `✅ ${n} файлов обновлено`,
363
+ update_current: '✅ Уже актуально!',
364
+ update_ready: 'Обновление завершено! 🚀',
283
365
  },
284
366
 
285
367
  zh: {
286
- flag: '🇨🇳',
287
- name: '中文 (简体)',
368
+ flag: '🇨🇳',
369
+ name: '中文 (简体)',
288
370
  locale: 'zh-CN',
289
- installer_title: ' BMAD+ 安装程序 v0.4.2 ',
290
- select_language: '选择您的语言',
291
- installing_to: '安装到',
292
- select_packs: '安装哪些包?(Core 始终包含)',
293
- select_ide: '您使用哪个 IDE',
294
- detected_ides: '检测到的 IDE',
295
- selected_packs: '已选择的包',
296
- enter_name: '您的名字(代理会用它来问候您)',
297
- comm_language: '沟通语言',
298
- exec_mode: '执行模式',
299
- exec_manual: '手动 您自己调用代理',
300
- exec_autopilot: '自动驾驶 Nexus 管理整个流程',
301
- exec_hybrid: '混合 自动驾驶并设有频繁检查点',
302
- installing_files: '正在安装文件...',
303
- configuring_ides: '正在配置 IDE...',
304
- installed_summary: (a, s, f) => `✅ ${a} 个代理、${s} 个技能、${f} 个文件已复制`,
305
- ide_configured: (n) => `✅ ${n} IDE 已配置`,
306
- cancelled: '安装已取消。',
307
- failed: '安装失败。',
308
- source_not_found: '未找到源目录',
309
- soon: '即将推出',
310
- guide_title: ' 安装完成 如何开始',
311
- guide_who: '💬 与谁交谈?',
312
- guide_idea: '讨论一个想法',
313
- guide_prd: '创建 PRD',
314
- guide_arch: '技术架构',
315
- guide_code: '实现代码',
316
- guide_test: '测试 / 代码审查',
317
- guide_sprint: '规划冲刺',
318
- guide_auto: '自动化一切',
319
- guide_osint: 'OSINT 调查',
320
- guide_maker: '创建新代理',
321
- guide_seo: 'SEO / GEO 审计 (360°)',
322
- guide_backup: '智能项目备份',
323
- guide_animated: '动画奢华网站',
324
- guide_workflow: '🚀 推荐工作流程:',
325
- guide_or_auto: ' 或者:"autopilot" 全自动管理',
326
- guide_output: '📁 输出',
327
- guide_ready: 'BMAD+ 已就绪!与 Atlas 交谈开始 🚀',
328
- guide_credits: ' BMAD+ Laurent Rochetta 创建 github.com/lrochetta | linkedin.com/in/laurentrochetta ',
371
+ installer_title: ' BMAD+ 安装程序 v0.4.3 ',
372
+ select_language: '选择您的语言',
373
+ installing_to: '安装到',
374
+ select_packs: '安装哪些包?(Core 始终包含)',
375
+ select_ide: '您使用哪个 IDE?',
376
+ detected_ides: '检测到的 IDE',
377
+ selected_packs: '已选择的包',
378
+ enter_name: '您的名字(代理会用它来问候您)',
379
+ comm_language: '沟通语言',
380
+ exec_mode: '执行模式',
381
+ exec_manual: '手动 — 您自己调用代理',
382
+ exec_autopilot: '自动驾驶 — Nexus 管理整个流程',
383
+ exec_hybrid: '混合 — 自动驾驶并设有频繁检查点',
384
+ installing_files: '正在安装文件...',
385
+ configuring_ides: '正在配置 IDE...',
386
+ installed_summary: (a, s, f) => `✅ ${a} 个代理、${s} 个技能、${f} 个文件已复制`,
387
+ ide_configured: (n) => `✅ ${n} 个 IDE 已配置`,
388
+ cancelled: '安装已取消。',
389
+ failed: '安装失败。',
390
+ source_not_found: '未找到源目录',
391
+ soon: '即将推出',
392
+ guide_title: '✅ 安装完成 — 如何开始',
393
+ guide_who: '💬 与谁交谈?',
394
+ guide_idea: '讨论一个想法',
395
+ guide_prd: '创建 PRD',
396
+ guide_arch: '技术架构',
397
+ guide_code: '实现代码',
398
+ guide_test: '测试 / 代码审查',
399
+ guide_sprint: '规划冲刺',
400
+ guide_auto: '自动化一切',
401
+ guide_osint: 'OSINT 调查',
402
+ guide_maker: '创建新代理',
403
+ guide_seo: 'SEO / GEO 审计 (360°)',
404
+ guide_backup: '智能项目备份',
405
+ guide_animated: '动画奢华网站',
406
+ guide_workflow: '🚀 推荐工作流程:',
407
+ guide_or_auto: '⚡ 或者:"autopilot" 全自动管理',
408
+ guide_output: '📁 输出',
409
+ guide_ready: 'BMAD+ 已就绪!与 Atlas 交谈开始 🚀',
410
+ guide_credits: '✨ BMAD+ 由 Laurent Rochetta 创建 — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
411
+ uninstall_confirm: '从此项目中删除 BMAD+?',
412
+ uninstall_removing: '删除中...',
413
+ uninstall_done: (n) => `✅ BMAD+ 已删除(${n} 项)`,
414
+ uninstall_output_kept: '📁 _bmad-output/ 已保留(包含文件)',
415
+ installed_on: '安装于',
416
+ update_confirm: '更新代理和技能?',
417
+ update_updating: '正在更新代理和技能...',
418
+ update_done: (n) => `✅ ${n} 个文件已更新`,
419
+ update_current: '✅ 已是最新版本!',
420
+ update_ready: '更新完成!🚀',
329
421
  },
330
422
 
331
423
  he: {
332
- flag: '🇮🇱',
333
- name: 'עברית',
424
+ flag: '🇮🇱',
425
+ name: 'עברית',
334
426
  locale: 'he',
335
- installer_title: ' BMAD+ מתקין v0.4.2 ',
336
- select_language: 'בחר את השפה שלך',
337
- installing_to: 'מתקין ב',
338
- select_packs: 'אילו חבילות להתקין? (Core תמיד כלול)',
339
- select_ide: 'באיזה IDE אתה משתמש?',
340
- detected_ides: 'IDE שזוהו',
341
- selected_packs: 'חבילות שנבחרו',
342
- enter_name: 'השם שלך (הסוכנים משתמשים בו לברכך)',
343
- comm_language: 'שפת תקשורת',
344
- exec_mode: 'מצב ביצוע',
345
- exec_manual: 'ידני אתה קורא לסוכנים בעצמך',
346
- exec_autopilot: 'טייס אוטומטי Nexus מנהל את כל הצינור',
347
- exec_hybrid: 'היברידי טייס אוטומטי עם נקודות בקרה תכופות',
348
- installing_files: 'מתקין קבצים...',
349
- configuring_ides: 'מגדיר IDE...',
350
- installed_summary: (a, s, f) => `✅ ${a} סוכנים, ${s} כישורים, ${f} קבצים הועתקו`,
351
- ide_configured: (n) => `✅ ${n} IDE הוגדרו`,
352
- cancelled: 'ההתקנה בוטלה.',
353
- failed: 'ההתקנה נכשלה.',
354
- source_not_found: 'ספריית המקור לא נמצאה',
355
- soon: 'בקרוב',
356
- guide_title: ' ההתקנה הושלמה איך להתחיל',
357
- guide_who: '💬 עם מי לדבר?',
358
- guide_idea: 'לדון ברעיון',
359
- guide_prd: 'ליצור PRD',
360
- guide_arch: 'ארכיטקטורה טכנית',
361
- guide_code: 'לממש קוד',
362
- guide_test: 'לבדוק / סקירת קוד',
363
- guide_sprint: 'לתכנן ספרינט',
364
- guide_auto: 'לאוטמט הכל',
365
- guide_osint: 'חקירת OSINT',
366
- guide_maker: 'ליצור סוכן חדש',
367
- guide_seo: 'ביקורת SEO / GEO (360°)',
368
- guide_backup: 'גיבוי חכם של הפרויקט',
369
- guide_animated: 'אתר אנימציה יוקרתי',
370
- guide_workflow: '🚀 תהליך עבודה מומלץ:',
371
- guide_or_auto: ' או: "autopilot" לניהול אוטומטי מלא',
372
- guide_output: '📁 פלט',
373
- guide_ready: '!BMAD+ מוכן! דבר עם Atlas כדי להתחיל 🚀',
374
- guide_credits: ' BMAD+ נוצר על ידי Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
427
+ installer_title: ' BMAD+ מתקין v0.4.3 ',
428
+ select_language: 'בחר את השפה שלך',
429
+ installing_to: 'מתקין ב',
430
+ select_packs: 'אילו חבילות להתקין? (Core תמיד כלול)',
431
+ select_ide: 'באיזה IDE אתה משתמש?',
432
+ detected_ides: 'IDE שזוהו',
433
+ selected_packs: 'חבילות שנבחרו',
434
+ enter_name: 'השם שלך (הסוכנים משתמשים בו לברכך)',
435
+ comm_language: 'שפת תקשורת',
436
+ exec_mode: 'מצב ביצוע',
437
+ exec_manual: 'ידני — אתה קורא לסוכנים בעצמך',
438
+ exec_autopilot: 'טייס אוטומטי — Nexus מנהל את כל הצינור',
439
+ exec_hybrid: 'היברידי — טייס אוטומטי עם נקודות בקרה תכופות',
440
+ installing_files: 'מתקין קבצים...',
441
+ configuring_ides: 'מגדיר IDE...',
442
+ installed_summary: (a, s, f) => `✅ ${a} סוכנים, ${s} כישורים, ${f} קבצים הועתקו`,
443
+ ide_configured: (n) => `✅ ${n} IDE הוגדרו`,
444
+ cancelled: 'ההתקנה בוטלה.',
445
+ failed: 'ההתקנה נכשלה.',
446
+ source_not_found: 'ספריית המקור לא נמצאה',
447
+ soon: 'בקרוב',
448
+ guide_title: '✅ ההתקנה הושלמה — איך להתחיל',
449
+ guide_who: '💬 עם מי לדבר?',
450
+ guide_idea: 'לדון ברעיון',
451
+ guide_prd: 'ליצור PRD',
452
+ guide_arch: 'ארכיטקטורה טכנית',
453
+ guide_code: 'לממש קוד',
454
+ guide_test: 'לבדוק / סקירת קוד',
455
+ guide_sprint: 'לתכנן ספרינט',
456
+ guide_auto: 'לאוטמט הכל',
457
+ guide_osint: 'חקירת OSINT',
458
+ guide_maker: 'ליצור סוכן חדש',
459
+ guide_seo: 'ביקורת SEO / GEO (360°)',
460
+ guide_backup: 'גיבוי חכם של הפרויקט',
461
+ guide_animated: 'אתר אנימציה יוקרתי',
462
+ guide_workflow: '🚀 תהליך עבודה מומלץ:',
463
+ guide_or_auto: '⚡ או: "autopilot" לניהול אוטומטי מלא',
464
+ guide_output: '📁 פלט',
465
+ guide_ready: '!BMAD+ מוכן! דבר עם Atlas כדי להתחיל 🚀',
466
+ guide_credits: '✨ BMAD+ נוצר על ידי Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
467
+ uninstall_confirm: 'להסיר את BMAD+ מהפרויקט הזה?',
468
+ uninstall_removing: 'מסיר...',
469
+ uninstall_done: (n) => `✅ BMAD+ הוסר (${n} פריטים)`,
470
+ uninstall_output_kept: '📁 _bmad-output/ נשמר (מכיל קבצים)',
471
+ installed_on: 'הותקן ב',
472
+ update_confirm: 'לעדכן סוכנים וכישורים?',
473
+ update_updating: 'מעדכן סוכנים וכישורים...',
474
+ update_done: (n) => `✅ ${n} קבצים עודכנו`,
475
+ update_current: '✅ כבר מעודכן!',
476
+ update_ready: 'העדכון הושלם! 🚀',
375
477
  },
376
478
 
377
479
  ja: {
378
- flag: '🇯🇵',
379
- name: '日本語',
480
+ flag: '🇯🇵',
481
+ name: '日本語',
380
482
  locale: 'ja',
381
- installer_title: ' BMAD+ インストーラー v0.4.2 ',
382
- select_language: '言語を選択してください',
383
- installing_to: 'インストール先',
384
- select_packs: 'どのパックをインストールしますか?(Coreは常に含まれます)',
385
- select_ide: 'どのIDEを使用していますか?',
386
- detected_ides: '検出されたIDE',
387
- selected_packs: '選択されたパック',
388
- enter_name: 'あなたの名前(エージェントが挨拶に使います)',
389
- comm_language: 'コミュニケーション言語',
390
- exec_mode: '実行モード',
391
- exec_manual: '手動 自分でエージェントを呼び出す',
392
- exec_autopilot: 'オートパイロット Nexusがパイプライン全体を管理',
393
- exec_hybrid: 'ハイブリッド 頻繁なチェックポイント付きオートパイロット',
394
- installing_files: 'ファイルをインストール中...',
395
- configuring_ides: 'IDEを設定中...',
396
- installed_summary: (a, s, f) => `✅ ${a}エージェント、${s}スキル、${f}ファイルをコピー`,
397
- ide_configured: (n) => `✅ ${n}つのIDEを設定`,
398
- cancelled: 'インストールがキャンセルされました。',
399
- failed: 'インストールに失敗しました。',
400
- source_not_found: 'ソースディレクトリが見つかりません',
401
- soon: '近日公開',
402
- guide_title: ' インストール完了 始め方',
403
- guide_who: '💬 誰に話しかける?',
404
- guide_idea: 'アイデアを議論する',
405
- guide_prd: 'PRDを作成する',
406
- guide_arch: '技術アーキテクチャ',
407
- guide_code: 'コードを実装する',
408
- guide_test: 'テスト / コードレビュー',
409
- guide_sprint: 'スプリントを計画する',
410
- guide_auto: 'すべてを自動化する',
411
- guide_osint: 'OSINT調査',
412
- guide_maker: '新しいエージェントを作成する',
413
- guide_seo: 'SEO / GEO 監査 (360°)',
414
- guide_backup: 'スマートプロジェクトバックアップ',
415
- guide_animated: 'アニメーション高級ウェブサイト',
416
- guide_workflow: '🚀 推奨ワークフロー:',
417
- guide_or_auto: ' または: "autopilot" で全自動管理',
418
- guide_output: '📁 出力',
419
- guide_ready: 'BMAD+ 準備完了!Atlasに話しかけて始めましょう 🚀',
420
- guide_credits: ' BMAD+ Laurent Rochetta によって作成されました github.com/lrochetta | linkedin.com/in/laurentrochetta ',
483
+ installer_title: ' BMAD+ インストーラー v0.4.3 ',
484
+ select_language: '言語を選択してください',
485
+ installing_to: 'インストール先',
486
+ select_packs: 'どのパックをインストールしますか?(Coreは常に含まれます)',
487
+ select_ide: 'どのIDEを使用していますか?',
488
+ detected_ides: '検出されたIDE',
489
+ selected_packs: '選択されたパック',
490
+ enter_name: 'あなたの名前(エージェントが挨拶に使います)',
491
+ comm_language: 'コミュニケーション言語',
492
+ exec_mode: '実行モード',
493
+ exec_manual: '手動 — 自分でエージェントを呼び出す',
494
+ exec_autopilot: 'オートパイロット — Nexusがパイプライン全体を管理',
495
+ exec_hybrid: 'ハイブリッド — 頻繁なチェックポイント付きオートパイロット',
496
+ installing_files: 'ファイルをインストール中...',
497
+ configuring_ides: 'IDEを設定中...',
498
+ installed_summary: (a, s, f) => `✅ ${a}エージェント、${s}スキル、${f}ファイルをコピー`,
499
+ ide_configured: (n) => `✅ ${n}つのIDEを設定`,
500
+ cancelled: 'インストールがキャンセルされました。',
501
+ failed: 'インストールに失敗しました。',
502
+ source_not_found: 'ソースディレクトリが見つかりません',
503
+ soon: '近日公開',
504
+ guide_title: '✅ インストール完了 — 始め方',
505
+ guide_who: '💬 誰に話しかける?',
506
+ guide_idea: 'アイデアを議論する',
507
+ guide_prd: 'PRDを作成する',
508
+ guide_arch: '技術アーキテクチャ',
509
+ guide_code: 'コードを実装する',
510
+ guide_test: 'テスト / コードレビュー',
511
+ guide_sprint: 'スプリントを計画する',
512
+ guide_auto: 'すべてを自動化する',
513
+ guide_osint: 'OSINT調査',
514
+ guide_maker: '新しいエージェントを作成する',
515
+ guide_seo: 'SEO / GEO 監査 (360°)',
516
+ guide_backup: 'スマートプロジェクトバックアップ',
517
+ guide_animated: 'アニメーション高級ウェブサイト',
518
+ guide_workflow: '🚀 推奨ワークフロー:',
519
+ guide_or_auto: '⚡ または: "autopilot" で全自動管理',
520
+ guide_output: '📁 出力',
521
+ guide_ready: 'BMAD+ 準備完了!Atlasに話しかけて始めましょう 🚀',
522
+ guide_credits: '✨ BMAD+ は Laurent Rochetta によって作成されました — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
523
+ uninstall_confirm: 'このプロジェクトからBMAD+を削除しますか?',
524
+ uninstall_removing: '削除中...',
525
+ uninstall_done: (n) => `✅ BMAD+を削除しました(${n}項目)`,
526
+ uninstall_output_kept: '📁 _bmad-output/ は保持されました(ファイルが含まれています)',
527
+ installed_on: 'インストール日',
528
+ update_confirm: 'エージェントとスキルを更新しますか?',
529
+ update_updating: 'エージェントとスキルを更新中...',
530
+ update_done: (n) => `✅ ${n}ファイルを更新しました`,
531
+ update_current: '✅ 最新の状態です!',
532
+ update_ready: 'アップデート完了!🚀',
421
533
  },
422
534
 
423
535
  it: {
424
- flag: '🇮🇹',
536
+ flag: '🇮🇹',
425
537
  name: 'Italiano',
426
538
  locale: 'it',
427
- installer_title: ' BMAD+ Installatore v0.4.2 ',
539
+ installer_title: ' BMAD+ Installatore v0.4.3 ',
428
540
  select_language: 'Seleziona la tua lingua',
429
541
  installing_to: 'Installazione in',
430
- select_packs: 'Quali pack installare? (Core è sempre incluso)',
542
+ select_packs: 'Quali pack installare? (Core è sempre incluso)',
431
543
  select_ide: 'Quale IDE usi?',
432
544
  detected_ides: 'IDE rilevati',
433
545
  selected_packs: 'Pack selezionati',
434
546
  enter_name: 'Il tuo nome (gli agenti lo usano per salutarti)',
435
547
  comm_language: 'Lingua di comunicazione',
436
- exec_mode: 'Modalità di esecuzione',
437
- exec_manual: 'Manuale Chiami tu gli agenti',
438
- exec_autopilot: 'Autopilot Nexus gestisce l\'intera pipeline',
439
- exec_hybrid: 'Ibrido Autopilot con checkpoint frequenti',
548
+ exec_mode: 'Modalità di esecuzione',
549
+ exec_manual: 'Manuale — Chiami tu gli agenti',
550
+ exec_autopilot: 'Autopilot — Nexus gestisce l\'intera pipeline',
551
+ exec_hybrid: 'Ibrido — Autopilot con checkpoint frequenti',
440
552
  installing_files: 'Installazione file in corso...',
441
553
  configuring_ides: 'Configurazione IDE...',
442
- installed_summary: (a, s, f) => `✅ ${a} agenti, ${s} skill, ${f} file copiati`,
443
- ide_configured: (n) => `✅ ${n} IDE configurati`,
554
+ installed_summary: (a, s, f) => `✅ ${a} agenti, ${s} skill, ${f} file copiati`,
555
+ ide_configured: (n) => `✅ ${n} IDE configurati`,
444
556
  cancelled: 'Installazione annullata.',
445
557
  failed: 'Installazione fallita.',
446
558
  source_not_found: 'Directory sorgente non trovata',
447
559
  soon: 'prossimamente',
448
- guide_title: ' Installazione completata Come iniziare',
449
- guide_who: '💬 Con chi parlare?',
560
+ guide_title: '✅ Installazione completata — Come iniziare',
561
+ guide_who: '💬 Con chi parlare?',
450
562
  guide_idea: 'Discutere un\'idea',
451
563
  guide_prd: 'Creare un PRD',
452
564
  guide_arch: 'Architettura tecnica',
@@ -456,14 +568,24 @@ const LANGUAGES = {
456
568
  guide_auto: 'Automatizzare tutto',
457
569
  guide_osint: 'Indagine OSINT',
458
570
  guide_maker: 'Creare un nuovo agente',
459
- guide_seo: 'Audit SEO / GEO (360°)',
571
+ guide_seo: 'Audit SEO / GEO (360°)',
460
572
  guide_backup: 'Backup intelligente del progetto',
461
573
  guide_animated: 'Sito web animato di lusso',
462
- guide_workflow: '🚀 Flusso consigliato:',
463
- guide_or_auto: ' Oppure: "autopilot" per gestire tutto automaticamente',
464
- guide_output: '📁 Output',
465
- guide_ready: 'BMAD+ è pronto! Parla con Atlas per iniziare 🚀',
466
- guide_credits: ' BMAD+ è creato da Laurent Rochetta github.com/lrochetta | linkedin.com/in/laurentrochetta ',
574
+ guide_workflow: '🚀 Flusso consigliato:',
575
+ guide_or_auto: 'âš¡ Oppure: "autopilot" per gestire tutto automaticamente',
576
+ guide_output: '📁 Output',
577
+ guide_ready: 'BMAD+ è pronto! Parla con Atlas per iniziare 🚀',
578
+ guide_credits: '✨ BMAD+ è creato da Laurent Rochetta — github.com/lrochetta | linkedin.com/in/laurentrochetta ✨',
579
+ uninstall_confirm: 'Rimuovere BMAD+ da questo progetto?',
580
+ uninstall_removing: 'Rimozione...',
581
+ uninstall_done: (n) => `✅ BMAD+ rimosso (${n} elementi)`,
582
+ uninstall_output_kept: '📁 _bmad-output/ conservato (contiene file)',
583
+ installed_on: 'installato il',
584
+ update_confirm: 'Aggiornare agenti e skill?',
585
+ update_updating: 'Aggiornamento agenti e skill...',
586
+ update_done: (n) => `✅ ${n} file aggiornati`,
587
+ update_current: '✅ Già aggiornato!',
588
+ update_ready: 'Aggiornamento completato! 🚀',
467
589
  },
468
590
  };
469
591