质量概览
这里给访客看的是 Skill 质量快照:重点帮助你判断这个内容是否结构清楚、可执行、适合直接参考或下载。
A biologically-inspired memory system that uses spreading activation instead of keyword/vector search. Memories form a neural graph where neurons connect via 20 typed synapses. Frequently co-accessed memories strengthen their connections (Hebbian learning). Stale memories decay naturally. Contradictions are auto-detected.
Why not just vector search? Vector search finds documents similar to your query. NeuralMemory finds conceptually related memories through graph traversal — even when there's no keyword or embedding overlap. "What decision did we make about auth?" activates time + entity + concept neurons simultaneously and finds the intersection.
pip install neural-memoryThe brain and config at ~/.neuralmemory/ are auto-created on first use.
The plugin occupies the exclusive memory slot — auto-injects context before each agent run and auto-captures memories after.
# Install from npm
npm install -g neuralmemoryAdd to ~/.openclaw/openclaw.json:
{
"plugins": {
"load": {
"paths": [""]
},
"entries": {
"neuralmemory": {
"enabled": true,
"config": {
"pythonPath": "python",
"brain": "default",
"autoContext": true,
"autoCapture": true
}
}
},
"slots": {
"memory": "neuralmemory"
}
}
}Plugin features:
before_agent_start hook: injects tool instructions + relevant memories as context (persists across /new)agent_end hook: auto-extracts facts, decisions, and TODOs from the conversationcontextDepth (0-3), maxContextTokens (100-10000)After installing, build the plugin:
cd
npm run buildThis compiles TypeScript to JavaScript in dist/. The plugin entry point is dist/index.js.
#### Windows Installation
On Windows, use forward slashes or escaped backslashes in openclaw.json paths:
{
"plugins": {
"load": {
"paths": ["C:/Users/ /AppData/Roaming/npm/node_modules/neuralmemory"]
}
}
}To find the installed path:
npm list -g neuralmemory --parseableIf openclaw plugins list doesn't show the plugin:
openclaw.json points to the package root (where package.json is)npm run build was run (the dist/ folder must exist with compiled .js files)python instead of python3 in the plugin config (Windows default)If you prefer MCP over the plugin, add to ~/.openclaw/mcp.json:
{
"mcpServers": {
"neural-memory": {
"command": "python",
"args": ["-m", "neural_memory.mcp"],
"env": {
"NEURALMEMORY_BRAIN": "default"
}
}
}
}On Windows, use "python" (not "python3"). This gives you all 63 MCP tools but without the auto-context/auto-capture hooks.
nmem statsYou should see brain statistics (neurons, synapses, fibers).
nmem_context to inject recent memories into your awarenessnmem_recall with that topicnmem_remember with type="decision"nmem_remember with type="error"nmem_remember with type="preference"nmem_recall with appropriate depthnmem_auto with action="process" on important conversation segmentsnmem_remember(
content="Use PostgreSQL for production, SQLite for development",
type="decision",
tags=["database", "infrastructure"],
priority=8
)nmem_recall(
query="database configuration for production",
depth=1,
max_tokens=500
)Returns memories found via graph traversal, not keyword matching. Related memories (e.g., "deploy uses Docker with pg_dump backups") surface even without shared keywords.
nmem_recall(
query="why did the deployment fail last week?",
depth=2
)Follows CAUSED_BY and LEADS_TO synapses to trace cause-and-effect chains.
nmem_auto(
action="process",
text="We decided to switch from REST to GraphQL because the frontend needs flexible queries. The migration will take 2 sprints. TODO: update API docs."
)Automatically extracts: 1 decision, 1 fact, 1 TODO.
[More in Agents](/skills?category=agents)
Downloads
Security audit [Pass](/nhadaututtheky/skills/neural-memory/security-audit)
Last updated 1d ago
Current version v4.59.0
License MIT-0
Report
import: clawhub https://clawhub.ai/nhadaututtheky/neural-memory
说明
当前为只读模式,登录后可评论。
还没有评论。
Personas
Transform into 20 specialized AI personalities on demand. Switch mid-conversation and load only the active persona.
Agent Memory
Persistent memory for AI agents to store facts, learn from actions, recall information, and track entities across sessions.
Fluid Memory
基于艾宾浩斯遗忘曲线和访问频率的衰减模型设计的遗忘和归档机制,完全依赖openclaw原生记忆系统的拟人化流体记忆系统
Evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...
Evolver
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap...
Capability Evolver
Meta-skill for AI agent self-improvement. Analyzes runtime logs to detect error patterns, regressions, and inefficiencies, then generates structured improvem...