Install
openclaw skills install @wazionapps/nexo-brainRuntime core for NEXO Desktop. Provides local memory, Deep Sleep, Evolution support-ticket mode, skills, watchdog, and MCP tools for the desktop product.
openclaw skills install @wazionapps/nexo-brainThis skill installs the runtime core used by NEXO Desktop. It provides local memory, Deep Sleep, Evolution support-ticket mode, skills, watchdog, followups, and MCP tools through the existing compatibility package.
If your OpenClaw client shows an install action for this skill, use that first. It installs the compatibility package used by the NEXO Desktop runtime via your configured Node package manager.
If you are setting it up manually, install the runtime core:
npx nexo-brain
After the runtime is installed, add the MCP server to your OpenClaw config (~/.openclaw/openclaw.json):
{
"mcp": {
"servers": {
"nexo-brain": {
"command": "python3",
"args": ["~/.nexo/server.py"],
"env": {
"NEXO_HOME": "~/.nexo"
}
}
}
}
}
Restart the gateway: openclaw gateway restart
Key runtime capabilities include:
NEXO keeps local working memory and long-term memory on device:
Deep Sleep consolidates, prunes, and merges memory so the runtime stays useful without sending private examples to public services.
| Tool | When to Use |
|---|---|
nexo_startup | Once at session start — registers session, returns active sessions |
nexo_heartbeat | Every interaction — updates task, checks inbox |
nexo_cognitive_retrieve | Semantic search across all memories |
nexo_guard_check | Before editing code — checks for past errors |
nexo_learning_add | After resolving an error — prevents recurrence |
nexo_session_diary_write | Before closing session — enables continuity |
nexo_cognitive_trust | After user feedback — calibrates rigor level |
Everything stays local by default in ~/.nexo/. Support and improvement tickets are anonymized: personal names, client data, examples, and private content are not sent.