nexo-brain 7.23.4 → 7.23.5
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/auto_update.py +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.23.
|
|
3
|
+
"version": "7.23.5",
|
|
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.23.
|
|
21
|
+
Version `7.23.5` is the current packaged-runtime line. Patch over v7.23.4 - `nexo update` keeps external CLI maintenance summary copy in English.
|
|
22
|
+
|
|
23
|
+
Previously in `7.23.4`: patch over v7.23.3 - release tags now fail closed when npm publication fails and OpenClaw lockfile metadata stays synchronized with the release version.
|
|
22
24
|
|
|
23
25
|
Previously in `7.23.3`: patch over v7.23.2 - Followup runner skips DONE terminal statuses so already-finished followups do not re-enter executable batches.
|
|
24
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.23.
|
|
3
|
+
"version": "7.23.5",
|
|
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
|
@@ -3505,7 +3505,7 @@ def _format_external_clis_results(results: dict) -> list[str]:
|
|
|
3505
3505
|
any_updated = True
|
|
3506
3506
|
lines.append(
|
|
3507
3507
|
f" CLI updated: {pkg} {entry.get('old')} -> {entry.get('new')} "
|
|
3508
|
-
f"—
|
|
3508
|
+
f"— restart the terminal to activate"
|
|
3509
3509
|
)
|
|
3510
3510
|
elif status == "already_latest":
|
|
3511
3511
|
any_checked_latest = True
|
|
@@ -3518,7 +3518,7 @@ def _format_external_clis_results(results: dict) -> list[str]:
|
|
|
3518
3518
|
# CLIs that the operator never installed shouldn't spam the summary.
|
|
3519
3519
|
|
|
3520
3520
|
if not any_updated and not any_failed and any_checked_latest:
|
|
3521
|
-
lines.append(" CLIs
|
|
3521
|
+
lines.append(" External CLIs: already on latest versions")
|
|
3522
3522
|
|
|
3523
3523
|
return lines
|
|
3524
3524
|
|