nexo-brain 7.30.19 → 7.30.20
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 +2 -2
- package/bin/nexo-brain.js +1 -1
- package/package.json +1 -1
- package/src/auto_update.py +16 -1
- package/src/plugins/update.py +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.30.
|
|
3
|
+
"version": "7.30.20",
|
|
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,9 +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.30.
|
|
21
|
+
Version `7.30.20` is the current packaged-runtime line. Patch release over v7.30.19 - packaged installs now copy the `product_knowledge` package into the installed runtime so `nexo update` can import the new product knowledge tools.
|
|
22
22
|
|
|
23
|
-
Previously in `7.30.
|
|
23
|
+
Previously in `7.30.19`: patch release over v7.30.18 - product capabilities now live in a structured, validated catalog with read-only discovery tools and preserved legacy system-catalog names.
|
|
24
24
|
|
|
25
25
|
Previously in `7.30.16`: patch release over v7.30.14 - Desktop diagnostics can read embedding migration status without warming models, and the coordinated Desktop update path is covered for bundled model verification and obsolete managed model cleanup.
|
|
26
26
|
|
package/bin/nexo-brain.js
CHANGED
|
@@ -1346,7 +1346,7 @@ function getCoreRuntimeFlatFiles(srcDir = path.join(__dirname, "..", "src")) {
|
|
|
1346
1346
|
}
|
|
1347
1347
|
|
|
1348
1348
|
function getCoreRuntimePackages() {
|
|
1349
|
-
return ["db", "cognitive", "doctor", "local_context"];
|
|
1349
|
+
return ["db", "cognitive", "doctor", "local_context", "product_knowledge"];
|
|
1350
1350
|
}
|
|
1351
1351
|
|
|
1352
1352
|
// Brain contracts — files the NEXO Brain publishes to consumers like
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.30.
|
|
3
|
+
"version": "7.30.20",
|
|
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",
|
package/src/auto_update.py
CHANGED
|
@@ -2753,6 +2753,7 @@ def _f06_legacy_shim_map() -> list[tuple[str, Path]]:
|
|
|
2753
2753
|
("hooks", core_root / "hooks"),
|
|
2754
2754
|
("rules", core_root / "rules"),
|
|
2755
2755
|
("local_context", core_root / "local_context"),
|
|
2756
|
+
("product_knowledge", core_root / "product_knowledge"),
|
|
2756
2757
|
("data", NEXO_HOME / "runtime" / "data"),
|
|
2757
2758
|
("logs", NEXO_HOME / "runtime" / "logs"),
|
|
2758
2759
|
("operations", NEXO_HOME / "runtime" / "operations"),
|
|
@@ -2822,6 +2823,7 @@ def _f06_live_legacy_paths() -> list[Path]:
|
|
|
2822
2823
|
"hooks",
|
|
2823
2824
|
"rules",
|
|
2824
2825
|
"local_context",
|
|
2826
|
+
"product_knowledge",
|
|
2825
2827
|
"db",
|
|
2826
2828
|
"dashboard",
|
|
2827
2829
|
"skills-core",
|
|
@@ -2907,6 +2909,7 @@ def _promote_packaged_runtime_code_to_core() -> None:
|
|
|
2907
2909
|
("doctor", core_root / "doctor"),
|
|
2908
2910
|
("dashboard", core_root / "dashboard"),
|
|
2909
2911
|
("local_context", core_root / "local_context"),
|
|
2912
|
+
("product_knowledge", core_root / "product_knowledge"),
|
|
2910
2913
|
("skills-core", core_root / "skills"),
|
|
2911
2914
|
]
|
|
2912
2915
|
|
|
@@ -4740,6 +4743,7 @@ def _backup_runtime_tree(dest: Path = NEXO_HOME) -> str:
|
|
|
4740
4743
|
"cognitive",
|
|
4741
4744
|
"dashboard",
|
|
4742
4745
|
"local_context",
|
|
4746
|
+
"product_knowledge",
|
|
4743
4747
|
"rules",
|
|
4744
4748
|
"crons",
|
|
4745
4749
|
"scripts",
|
|
@@ -4819,7 +4823,18 @@ def _restore_runtime_tree(backup_dir: str, dest: Path = NEXO_HOME) -> None:
|
|
|
4819
4823
|
def _copy_runtime_from_source(src_dir: Path, repo_dir: Path, dest: Path = NEXO_HOME, progress_fn=None) -> dict:
|
|
4820
4824
|
import shutil
|
|
4821
4825
|
|
|
4822
|
-
packages = [
|
|
4826
|
+
packages = [
|
|
4827
|
+
"db",
|
|
4828
|
+
"cognitive",
|
|
4829
|
+
"doctor",
|
|
4830
|
+
"local_context",
|
|
4831
|
+
"product_knowledge",
|
|
4832
|
+
"dashboard",
|
|
4833
|
+
"rules",
|
|
4834
|
+
"crons",
|
|
4835
|
+
"hooks",
|
|
4836
|
+
"presets",
|
|
4837
|
+
]
|
|
4823
4838
|
flat_files = _runtime_flat_files(src_dir)
|
|
4824
4839
|
copied_packages = 0
|
|
4825
4840
|
copied_files = 0
|