nexo-brain 7.21.0 → 7.22.0
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/README.md +3 -1
- package/package.json +1 -1
- package/src/local_context/__init__.py +2 -0
- package/src/local_context/api.py +804 -30
- package/src/local_context/db.py +51 -0
- package/src/local_context/extractors.py +68 -8
- package/src/mcp_required_tools.py +2 -0
- package/src/mcp_write_queue.py +354 -0
- package/src/runtime_versioning.py +2 -0
- package/src/server.py +80 -1
- package/src/tools_sessions.py +326 -71
- package/tool-enforcement-map.json +52 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.22.0",
|
|
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.
|
|
21
|
+
Version `7.22.0` is the current packaged-runtime line. Minor release over v7.21.0 - heartbeat stays fast in Desktop-managed sessions, MCP writes can be accepted through a durable file-backed queue before SQLite commit, Brain exposes compliance state for Desktop gates, and Local Context adds Entity Dossier for open-domain local evidence aggregation.
|
|
22
|
+
|
|
23
|
+
Previously in `7.21.0`: minor release over v7.20.25 - MCP now starts through a thin compatibility adapter backed by one resident local Runtime Service, reducing duplicate Brain processes and SQLite contention across Claude Code, Codex, Claude Desktop, and NEXO Desktop.
|
|
22
24
|
|
|
23
25
|
Previously in `7.20.25`: patch release over v7.20.24 — Local Context now uses the pinned local BGE embedding model when available, automatically refreshes old hash embeddings, prioritizes known documents before lower-value files, and treats the Desktop-owned Qwen local-presence model as optional in standalone Brain installs.
|
|
24
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.22.0",
|
|
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",
|
|
@@ -11,6 +11,7 @@ from .api import (
|
|
|
11
11
|
clear_index,
|
|
12
12
|
context_router,
|
|
13
13
|
context_query,
|
|
14
|
+
entity_dossier,
|
|
14
15
|
diagnostics_tail,
|
|
15
16
|
ensure_default_roots,
|
|
16
17
|
get_asset,
|
|
@@ -38,6 +39,7 @@ __all__ = [
|
|
|
38
39
|
"clear_index",
|
|
39
40
|
"context_router",
|
|
40
41
|
"context_query",
|
|
42
|
+
"entity_dossier",
|
|
41
43
|
"diagnostics_tail",
|
|
42
44
|
"ensure_default_roots",
|
|
43
45
|
"get_asset",
|