OpenClaw + Neural Fabric
OpenClaw + Qorbit
OpenClaw + Qorbit
Give your agent memory that lasts.
One config block. Nine 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_note
fabric_note stores decisions outside the context window. Compaction happens. The Fabric doesn't care. Every fact persists, queryable by any agent you connect.
Entity Graphfabric_query
fabric_query traverses entity relationships across the knowledge graph. Multi-hop connections, not text similarity. The more your agent stores, the smarter retrieval gets.
Structured Entitiesfabric_assert
fabric_assert writes typed, categorized, validated entities. Every write has a timestamp, source, and confidence score. Not a growing text file. A structured knowledge graph.
2 minutes to connect
Add the Fabric as an MCP server and your OpenClaw agent gets 9 tools for persistent, structured knowledge.
1
Add to your config
Add the Fabric MCP server to your OpenClaw config.
{
"mcpServers": {
"qorbit": {
"type": "http",
"url": "https://your-fabric-url/api/mcp/fabric",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
"mcpServers": {
"qorbit": {
"type": "http",
"url": "https://your-fabric-url/api/mcp/fabric",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}
2
Restart and try it
Restart your gateway and send a message: "Call fabric_status to check the connection." The 9 Fabric tools appear alongside your existing OpenClaw tools.
$ openclaw gateway restart
✓ OpenClaw connects via Streamable HTTP transport
Get your Fabric URL and bearer token