sinapse-ai 7.3.1 → 7.3.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.
@@ -7,8 +7,8 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 7.3.1
11
- generated_at: "2026-03-27T03:20:12.782Z"
10
+ version: 7.3.2
11
+ generated_at: "2026-03-27T03:25:26.929Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 1082
14
14
  files:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinapse-ai",
3
- "version": "7.3.1",
3
+ "version": "7.3.2",
4
4
  "description": "SINAPSE AI: Framework de orquestracao de IA — 18 squads, 174 agentes especializados",
5
5
  "bin": {
6
6
  "sinapse": "bin/sinapse.js",
@@ -22,6 +22,11 @@ const TRANSLATIONS = {
22
22
  userProfileSkipped: 'Using existing user profile',
23
23
  languageSkipped: 'Using existing language',
24
24
 
25
+ // LLM selection
26
+ llmQuestion: 'Select your LLM:',
27
+ llmRecommended: 'Recommended',
28
+ llmBoth: 'Both',
29
+
25
30
  // Project type
26
31
  projectTypeQuestion: 'What type of project are you setting up?',
27
32
  greenfield: 'Greenfield',
@@ -179,6 +184,11 @@ const TRANSLATIONS = {
179
184
  userProfileSkipped: 'Usando perfil de usuário existente',
180
185
  languageSkipped: 'Usando idioma existente',
181
186
 
187
+ // LLM selection
188
+ llmQuestion: 'Escolha sua LLM:',
189
+ llmRecommended: 'Recomendado',
190
+ llmBoth: 'Ambos',
191
+
182
192
  // Project type
183
193
  projectTypeQuestion: 'Que tipo de projeto você está configurando?',
184
194
  greenfield: 'Greenfield',
@@ -61,10 +61,10 @@ function getLLMQuestion() {
61
61
  return {
62
62
  type: 'list',
63
63
  name: 'selectedLLM',
64
- message: colors.primary('Select your LLM:'),
64
+ message: colors.primary(t('llmQuestion')),
65
65
  choices: [
66
66
  {
67
- name: colors.highlight('Claude Code') + colors.dim(' (Recommended)'),
67
+ name: colors.highlight('Claude Code') + colors.dim(` (${t('llmRecommended')})`),
68
68
  value: 'claude-code',
69
69
  },
70
70
  {
@@ -72,7 +72,7 @@ function getLLMQuestion() {
72
72
  value: 'codex',
73
73
  },
74
74
  {
75
- name: 'Both',
75
+ name: t('llmBoth'),
76
76
  value: 'both',
77
77
  },
78
78
  ],