nexo-brain 7.17.2 → 7.17.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "7.17.2",
3
+ "version": "7.17.3",
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/README.md CHANGED
@@ -18,7 +18,9 @@
18
18
 
19
19
  [Watch the overview video](https://nexo-brain.com/watch/) · [Watch on YouTube](https://www.youtube.com/watch?v=i2lkGhKyVqI) · [Open the infographic](https://nexo-brain.com/assets/nexo-brain-infographic-v5.png)
20
20
 
21
- Version `7.17.2` is the current packaged-runtime line. Patch release over v7.17.1 - email-monitor now guards its `/tmp/nexo-*` draft buffers before writing, morning-agent closes interrupted/stale briefing claims deterministically, and Codex managed config migrates from the legacy `codex_hooks` flag to `[features].hooks`.
21
+ Version `7.17.3` is the current packaged-runtime line. Corrective patch over v7.17.2 - standalone Brain install/update no longer aborts when the Desktop-only `qwen3-0.6b-q4-local-presence` model is not bundled or already cached locally. Required Brain warmups stay strict; only the optional local-presence GGUF now degrades cleanly.
22
+
23
+ Previously in `7.17.2`: patch release over v7.17.1 - email-monitor now guards its `/tmp/nexo-*` draft buffers before writing, morning-agent closes interrupted/stale briefing claims deterministically, and Codex managed config migrates from the legacy `codex_hooks` flag to `[features].hooks`.
22
24
 
23
25
  Previously in `7.17.1`: patch release over v7.17.0 - the headless Claude CLI 2.1+ direct-JSON response shape is now handled: when the wrapper `{"result": ...}` is absent and the agent's answer is returned directly, `_extract_claude_telemetry` surfaces the full payload to the caller instead of an empty string. Fixes the daily morning-agent failure with "Morning agent returned invalid JSON output".
24
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "7.17.2",
3
+ "version": "7.17.3",
4
4
  "mcpName": "io.github.wazionapps/nexo",
5
5
  "description": "NEXO Brain — 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",
@@ -120,6 +120,7 @@
120
120
  "revision": "a41486f827d17edd055fe6b3b0ba3f8d427c0519",
121
121
  "model_file": "Qwen3-0.6B-Q4_0.gguf",
122
122
  "dimension": 0,
123
+ "required": false,
123
124
  "source": "nexo-desktop/hey-nero-local-presence",
124
125
  "required_files": [
125
126
  {
@@ -51,6 +51,7 @@ class LocalModelSpec:
51
51
  source: str
52
52
  required_files: tuple[LocalModelFile, ...]
53
53
  dimension: int = 0
54
+ required: bool = True
54
55
 
55
56
 
56
57
  def _slugify(value: str) -> str:
@@ -100,6 +101,7 @@ def _load_manifest() -> dict[str, LocalModelSpec]:
100
101
  source=str(raw["source"]),
101
102
  required_files=files,
102
103
  dimension=int(raw.get("dimension", 0) or 0),
104
+ required=bool(raw.get("required", True)),
103
105
  )
104
106
  specs[spec.name] = spec
105
107
  return specs
@@ -56,6 +56,7 @@ def warmup_targets() -> list[WarmupTarget]:
56
56
  revision=spec.revision,
57
57
  source=spec.source,
58
58
  source_repo=spec.source_repo,
59
+ required=spec.required,
59
60
  )
60
61
  )
61
62
  return targets