nexo-brain 0.8.3 → 0.8.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "mcpName": "io.github.wazionapps/nexo",
5
5
  "description": "NEXO — Cognitive co-operator for Claude Code. Atkinson-Shiffrin memory, semantic RAG, trust scoring, and metacognitive error prevention.",
6
6
  "bin": {
package/src/server.py CHANGED
@@ -546,7 +546,7 @@ def nexo_plugin_list() -> str:
546
546
  return "No plugins loaded."
547
547
  lines = ["PLUGINS CARGADOS:"]
548
548
  for p in plugins:
549
- names = p["tool_names"] or "(sin tools)"
549
+ names = p["tool_names"] or "(no tools)"
550
550
  lines.append(f" {p['filename']} — {p['tools_count']} tools: {names}")
551
551
  return "\n".join(lines)
552
552
 
@@ -34,7 +34,7 @@ def handle_reminders(filter_type: str = "due") -> str:
34
34
  parts.append(f)
35
35
 
36
36
  result = "\n\n".join(parts)
37
- return result if result else "Sin recordatorios pendientes."
37
+ return result if result else "No pending reminders."
38
38
 
39
39
 
40
40
  def _format_reminders(filter_type: str) -> str:
@@ -47,7 +47,7 @@ def handle_startup(task: str = "Startup") -> str:
47
47
  age = _format_age(s["last_update_epoch"])
48
48
  lines.append(f" {s['sid']} ({age}) — {s['task']}")
49
49
  else:
50
- lines.append("Sin otras sesiones activas.")
50
+ lines.append("No other active sessions.")
51
51
 
52
52
  if inbox:
53
53
  lines.append("")
@@ -272,7 +272,7 @@ def handle_status(keyword: str | None = None) -> str:
272
272
  sessions = get_active_sessions()
273
273
 
274
274
  if not sessions:
275
- return "Sin sesiones activas."
275
+ return "No active sessions."
276
276
 
277
277
  lines = ["SESIONES ACTIVAS:"]
278
278
  for s in sessions:
@@ -21,7 +21,7 @@ def handle_task_log(task_num: str, task_name: str, notes: str = '', reasoning: s
21
21
  result = log_task(task_num, task_name, notes, reasoning)
22
22
  if "error" in result:
23
23
  return f"ERROR: {result['error']}"
24
- return f"Tarea {task_num} ({task_name}) registrada."
24
+ return f"Task {task_num} ({task_name}) logged."
25
25
 
26
26
 
27
27
  def handle_task_list(task_num: str = '', days: int = 30) -> str: