π¦ ClawHub
OpenClaw Memory Qdrant
by @zuiho-kai
Local semantic memory with Qdrant and Transformers.js. Store, search, and recall conversation context using vector embeddings (fully local, no API keys).
π‘ Examples
Three tools available:
memory_store - Save information
memory_store({
text: "User prefers Opus for complex tasks",
category: "preference"
})
memory_search - Find relevant memories
memory_search({
query: "workflow preferences",
limit: 5
})
memory_forget - Delete memories
memory_forget({ memoryId: "uuid" })
// or
memory_forget({ query: "text to forget" })
βοΈ Configuration
Enable in your OpenClaw config:
{
"plugins": {
"memory-qdrant": {
"enabled": true
}
}
}
Options:
autoCapture (default: false) - Auto-record conversations. Note: trigger patterns include email/phone regex, so enabling this may capture PII.autoRecall (default: true) - Auto-inject relevant memoriesqdrantUrl (optional) - External Qdrant server (leave empty for in-memory)TERMINAL
clawhub install memory-qdrant