nexo-brain 7.12.8 → 7.12.10
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/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/src/desktop_bridge.py +32 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.12.
|
|
3
|
+
"version": "7.12.10",
|
|
4
4
|
"description": "Local cognitive runtime for Claude Code \u2014 persistent memory, overnight learning, doctor diagnostics, personal scripts, recovery-aware jobs, startup preflight, and optional dashboard/power helper.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "NEXO Brain",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.12.
|
|
3
|
+
"version": "7.12.10",
|
|
4
4
|
"mcpName": "io.github.wazionapps/nexo",
|
|
5
5
|
"description": "NEXO Brain \u2014 Shared brain for AI agents. Persistent memory, semantic RAG, natural forgetting, metacognitive guard, trust scoring, 150+ MCP tools. Works with Claude Code, Codex, Claude Desktop & any MCP client. 100% local, free.",
|
|
6
6
|
"homepage": "https://nexo-brain.com",
|
package/src/desktop_bridge.py
CHANGED
|
@@ -345,9 +345,30 @@ def _onboard_steps() -> list[dict]:
|
|
|
345
345
|
"optional": True,
|
|
346
346
|
"validate": r"^.{0,120}$",
|
|
347
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"id": "ui_language",
|
|
350
|
+
"prompt": {"es": "¿En qué idioma quieres ver Desktop?", "en": "Which language do you want for Desktop?"},
|
|
351
|
+
"hint": {
|
|
352
|
+
"es": "Idioma de los menús, botones y ajustes de la app. Solo español o inglés.",
|
|
353
|
+
"en": "Language for the app's menus, buttons, and settings. Only Spanish or English.",
|
|
354
|
+
},
|
|
355
|
+
"type": "select",
|
|
356
|
+
"writes": "app.ui_language",
|
|
357
|
+
"file": "calibration.json",
|
|
358
|
+
"optional": False,
|
|
359
|
+
"default": "es",
|
|
360
|
+
"options": [
|
|
361
|
+
{"value": "es", "label": {"es": "Español", "en": "Spanish"}},
|
|
362
|
+
{"value": "en", "label": {"es": "Inglés", "en": "English"}},
|
|
363
|
+
],
|
|
364
|
+
},
|
|
348
365
|
{
|
|
349
366
|
"id": "language",
|
|
350
|
-
"prompt": {"es": "¿En qué idioma quieres
|
|
367
|
+
"prompt": {"es": "¿En qué idioma quieres que te conteste el asistente?", "en": "Which language should the assistant reply in?"},
|
|
368
|
+
"hint": {
|
|
369
|
+
"es": "Idioma principal de tus conversaciones con el asistente. Puede ser distinto del idioma de Desktop. Si no está aquí, lo cambias luego en Preferencias.",
|
|
370
|
+
"en": "Primary language for your conversations with the assistant. Can differ from Desktop's language. If yours isn't listed, change it later in Preferences.",
|
|
371
|
+
},
|
|
351
372
|
"type": "select",
|
|
352
373
|
"writes": "user.language",
|
|
353
374
|
"file": "calibration.json",
|
|
@@ -356,6 +377,13 @@ def _onboard_steps() -> list[dict]:
|
|
|
356
377
|
"options": [
|
|
357
378
|
{"value": "es", "label": {"es": "Español", "en": "Spanish"}},
|
|
358
379
|
{"value": "en", "label": {"es": "Inglés", "en": "English"}},
|
|
380
|
+
{"value": "ca", "label": {"es": "Catalán", "en": "Catalan"}},
|
|
381
|
+
{"value": "gl", "label": {"es": "Gallego", "en": "Galician"}},
|
|
382
|
+
{"value": "eu", "label": {"es": "Euskera", "en": "Basque"}},
|
|
383
|
+
{"value": "fr", "label": {"es": "Francés", "en": "French"}},
|
|
384
|
+
{"value": "it", "label": {"es": "Italiano", "en": "Italian"}},
|
|
385
|
+
{"value": "pt", "label": {"es": "Portugués", "en": "Portuguese"}},
|
|
386
|
+
{"value": "de", "label": {"es": "Alemán", "en": "German"}},
|
|
359
387
|
],
|
|
360
388
|
},
|
|
361
389
|
{
|
|
@@ -403,10 +431,10 @@ def _onboard_steps() -> list[dict]:
|
|
|
403
431
|
"id": "timezone",
|
|
404
432
|
"prompt": {"es": "¿En qué zona horaria estás?", "en": "Which timezone are you in?"},
|
|
405
433
|
"hint": {
|
|
406
|
-
"es": "
|
|
407
|
-
"en": "
|
|
434
|
+
"es": "Empieza a escribir tu ciudad o región (Europe/Madrid, America/New_York…). Lo detectamos del sistema, pero lo puedes cambiar.",
|
|
435
|
+
"en": "Start typing your city or region (Europe/Madrid, America/New_York…). We detect it from the system, but you can change it.",
|
|
408
436
|
},
|
|
409
|
-
"type": "
|
|
437
|
+
"type": "timezone",
|
|
410
438
|
"writes": "user.timezone",
|
|
411
439
|
"file": "calibration.json",
|
|
412
440
|
"optional": True,
|