nexo-brain 7.12.7 → 7.12.9
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 +10 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.12.
|
|
3
|
+
"version": "7.12.9",
|
|
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.9",
|
|
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
|
@@ -374,15 +374,15 @@ def _onboard_steps() -> list[dict]:
|
|
|
374
374
|
"reserved_values": list(RESERVED_ASSISTANT_NAME_VALUES),
|
|
375
375
|
},
|
|
376
376
|
{
|
|
377
|
-
"id": "
|
|
377
|
+
"id": "residence",
|
|
378
378
|
"prompt": {"es": "¿Dónde vives o trabajas habitualmente?", "en": "Where do you live or work most days?"},
|
|
379
379
|
"hint": {
|
|
380
380
|
"es": "Una ciudad o zona; me ayuda con horarios, clima, ofertas locales y mil cosas más.",
|
|
381
381
|
"en": "A city or area; helps me with schedules, weather, local options, and a thousand small things.",
|
|
382
382
|
},
|
|
383
383
|
"type": "text",
|
|
384
|
-
"writes": "
|
|
385
|
-
"file": "
|
|
384
|
+
"writes": "profile.current_residence",
|
|
385
|
+
"file": "profile.json",
|
|
386
386
|
"optional": True,
|
|
387
387
|
"validate": r"^.{0,120}$",
|
|
388
388
|
},
|
|
@@ -400,17 +400,17 @@ def _onboard_steps() -> list[dict]:
|
|
|
400
400
|
"validate": r"^.{0,200}$",
|
|
401
401
|
},
|
|
402
402
|
{
|
|
403
|
-
"id": "
|
|
404
|
-
"prompt": {"es": "¿En qué
|
|
403
|
+
"id": "timezone",
|
|
404
|
+
"prompt": {"es": "¿En qué zona horaria estás?", "en": "Which timezone are you in?"},
|
|
405
405
|
"hint": {
|
|
406
|
-
"es": "
|
|
407
|
-
"en": "
|
|
406
|
+
"es": "Empieza a escribir tu ciudad o región (Europe/Madrid, America/New_York…). Lo detectamos del sistema, pero lo puedes cambiar.",
|
|
407
|
+
"en": "Start typing your city or region (Europe/Madrid, America/New_York…). We detect it from the system, but you can change it.",
|
|
408
408
|
},
|
|
409
|
-
"type": "
|
|
410
|
-
"writes": "
|
|
409
|
+
"type": "timezone",
|
|
410
|
+
"writes": "user.timezone",
|
|
411
411
|
"file": "calibration.json",
|
|
412
412
|
"optional": True,
|
|
413
|
-
"validate": r"
|
|
413
|
+
"validate": r"^[A-Za-z_+\-/0-9 ]{0,80}$",
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"id": "technical_level",
|