OpenClaw + Neural Fabric
OpenClaw + Qorbit
OpenClaw + Qorbit
Give your agent memory that lasts.
One config block. Six tools. Memory that survives compaction.
Without Qorbit
Compaction Loss
Context fills up. Older decisions get summarized or dropped. Pre-compaction flush is best-effort. Overflow recovery means maximum context loss.
No Relationships
Memory is BM25 + vector hybrid over ~400 token chunks in SQLite. Finds similar text, not entity connections. Can't traverse relationships or follow multi-hop chains.
Memory Bloat
MEMORY.md grows endlessly. No consolidation. No typed structure. No validation on write. The more your agent remembers, the noisier retrieval gets.
With Qorbit
Survives Compactionfabric_add
fabric_add stores decisions outside the context window. Compaction happens. The Neural Fabric doesn't care. Every fact persists, queryable by any agent you connect.
Entity Graphfabric_search
fabric_search traverses entity relationships across the knowledge graph. Multi-hop connections, not text similarity. The more your agent stores, the smarter retrieval gets.
Audit Trailfabric_provenance
fabric_provenance inspects the cryptographic audit trail. Hash-linked entries with actor, timestamp, and tamper detection. Not a growing text file. A governed knowledge graph.
2 minutes to connect
Add the Neural Fabric as an MCP server and your OpenClaw agent gets six tools for persistent, structured knowledge.
1
Add to your config
Add the Neural Fabric MCP server to your OpenClaw config.
{
"mcp": {
"servers": {
"qorbit": {
"url": "https://your-fabric-url/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
}
"mcp": {
"servers": {
"qorbit": {
"url": "https://your-fabric-url/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
}
2
Restart and try it
Restart your gateway and send a message: "Call fabric_list to check the connection." The six Neural Fabric tools appear alongside your existing OpenClaw tools.
$ openclaw gateway restart
✓ OpenClaw connects via Streamable HTTP transport
Get your Neural Fabric URL and bearer token