nexo-brain 0.8.9 → 0.8.10
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/README.md +11 -3
- package/bin/nexo-brain.js +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
**NEXO Brain transforms any MCP-compatible AI agent from a stateless assistant into a cognitive partner that remembers, learns, forgets, adapts, and builds a relationship with you over time.**
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.youtube.com/watch?v=J0hCWnYU4UY">
|
|
15
|
+
<img src="assets/nexo-brain-infographic-v4.png" alt="NEXO Brain Architecture" width="700">
|
|
16
|
+
</a>
|
|
17
|
+
</p>
|
|
18
|
+
|
|
19
|
+
[Watch the 1-minute overview on YouTube](https://www.youtube.com/watch?v=J0hCWnYU4UY)
|
|
14
20
|
|
|
15
21
|
Every time you close a session, everything is lost. Your agent doesn't remember yesterday's decisions, repeats the same mistakes, and starts from zero. NEXO Brain fixes this with a cognitive architecture modeled after how human memory actually works.
|
|
16
22
|
|
|
@@ -268,7 +274,9 @@ A bi-temporal entity-relationship graph with 988 nodes and 896 edges. Entities a
|
|
|
268
274
|
A visual interface at `localhost:6174` with 6 pages: Overview (system health at a glance), Graph (interactive D3.js visualization of the knowledge graph), Memory (browse and search all memory stores), Somatic (pain map per file/area), Adaptive (personality signals and weights), and Sessions (active and historical sessions). Built with FastAPI backend and D3.js frontend.
|
|
269
275
|
|
|
270
276
|
### Cross-Platform Support
|
|
271
|
-
v0.8.0 adds full Linux and Windows
|
|
277
|
+
v0.8.0 adds full Linux support and Windows via WSL. The installer detects the platform and configures the appropriate process manager (LaunchAgents on macOS, catch-up on startup for Linux). Opportunistic maintenance runs cognitive processes when resources are available.
|
|
278
|
+
|
|
279
|
+
> **Windows users:** NEXO Brain requires [WSL (Windows Subsystem for Linux)](https://learn.microsoft.com/en-us/windows/wsl/install). Install WSL first, then run `npx nexo-brain` inside the Ubuntu/WSL terminal.
|
|
272
280
|
|
|
273
281
|
### Storage Router
|
|
274
282
|
A new abstraction layer routes storage operations through a unified interface, making the system multi-tenant ready. Each operator's data is isolated while sharing the same cognitive engine.
|
|
@@ -343,7 +351,7 @@ That's it. No need to run `claude` manually. Atlas will greet you immediately
|
|
|
343
351
|
|
|
344
352
|
### Requirements
|
|
345
353
|
|
|
346
|
-
- **macOS
|
|
354
|
+
- **macOS or Linux** (Windows via [WSL](https://learn.microsoft.com/en-us/windows/wsl/install))
|
|
347
355
|
- **Node.js 18+** (for the installer)
|
|
348
356
|
- **Claude Opus (latest version) strongly recommended.** NEXO Brain provides 109+ MCP tools across 19 categories. This cognitive load requires a top-tier model with large context window. Smaller models (Haiku, Sonnet) may struggle with tool selection and produce inconsistent results. Opus handles all 109+ tools without hesitation.
|
|
349
357
|
- Python 3, Homebrew, and Claude Code are installed automatically if missing.
|
package/bin/nexo-brain.js
CHANGED
|
@@ -77,8 +77,14 @@ async function main() {
|
|
|
77
77
|
|
|
78
78
|
// Check prerequisites
|
|
79
79
|
const platform = process.platform;
|
|
80
|
-
if (platform
|
|
81
|
-
log(
|
|
80
|
+
if (platform === "win32") {
|
|
81
|
+
log("Windows detected. NEXO Brain requires WSL (Windows Subsystem for Linux).");
|
|
82
|
+
log("Install WSL: https://learn.microsoft.com/en-us/windows/wsl/install");
|
|
83
|
+
log("Then run this command inside WSL (Ubuntu terminal), not PowerShell/CMD.");
|
|
84
|
+
process.exit(1);
|
|
85
|
+
}
|
|
86
|
+
if (platform !== "darwin" && platform !== "linux") {
|
|
87
|
+
log(`Unsupported platform: ${platform}. NEXO supports macOS and Linux (Windows via WSL).`);
|
|
82
88
|
process.exit(1);
|
|
83
89
|
}
|
|
84
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.10",
|
|
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": {
|