/install openclaw-memory-qdrant
memory-qdrant
Use when you need your OpenClaw agent to remember and recall information across conversations using semantic search.
⚠️ Privacy Notice: The optional autoCapture feature (disabled by default) can capture PII like emails and phone numbers if you enable allowPIICapture. Only enable if you understand the privacy implications.
Local semantic memory plugin powered by Qdrant vector database and Transformers.js embeddings. Zero configuration, fully local, no API keys required.
Features
- Semantic search with local Transformers.js embeddings
- In-memory mode (zero config) or persistent Qdrant storage
- Optional auto-capture of conversation context (opt-in, disabled by default)
- Context-aware memory recall
- Fully local, no API keys or external services required
Installation
clawhub install memory-qdrant
First-time setup: This plugin downloads a 25MB embedding model from Hugging Face on first run and may require build tools for native dependencies (sharp, onnxruntime). See README for detailed installation requirements.
Configuration
Enable in your OpenClaw config:
{
"plugins": {
"memory-qdrant": {
"enabled": true
}
}
}
Options:
persistToDisk(default: true) - Save memories to disk in memory mode. Data stored in~/.openclaw-memory/survives restarts. Set to false for volatile memory.storagePath(optional) - Custom storage directory. Leave empty for default~/.openclaw-memory/.autoCapture(default: false) - Auto-record conversations. Privacy protection enabled by default: text containing PII (emails, phone numbers) is automatically skipped.allowPIICapture(default: false) - Allow capturing PII when autoCapture is enabled. Only enable if you understand the privacy implications.autoRecall(default: true) - Auto-inject relevant memoriesqdrantUrl(optional) - External Qdrant server (leave empty for in-memory)
Usage
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" })
Privacy & Security
- Disk persistence (default): Memories saved to
~/.openclaw-memory/and survive restarts. SetpersistToDisk: falsefor volatile memory. - In-memory mode: When
persistToDisk: false, data cleared on restart - Qdrant mode: Data sent to configured server (use trusted servers only)
- Network: Downloads ~25MB model from Hugging Face on first run
- PII Protection: By default, autoCapture skips text containing emails or phone numbers. Set
allowPIICapture: trueonly if you understand the privacy implications. - autoCapture: Disabled by default for privacy. When enabled, only captures text matching semantic triggers (preferences, decisions, facts) and skips PII unless explicitly allowed.
Technical Details
- Vector DB: Qdrant (in-memory or external)
- Embeddings: Xenova/all-MiniLM-L6-v2 (local)
- Module: ES6 with factory function pattern
Links
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install openclaw-memory-qdrant - 安装完成后,直接呼叫该 Skill 的名称或使用
/openclaw-memory-qdrant触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Openclaw Memory Qdrant 是什么?
Local semantic memory with Qdrant and Transformers.js. Store, search, and recall conversation context using vector embeddings (fully local, no API keys). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1269 次。
如何安装 Openclaw Memory Qdrant?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install openclaw-memory-qdrant」即可一键安装,无需额外配置。
Openclaw Memory Qdrant 是免费的吗?
是的,Openclaw Memory Qdrant 完全免费(开源免费),可自由下载、安装和使用。
Openclaw Memory Qdrant 支持哪些平台?
Openclaw Memory Qdrant 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Openclaw Memory Qdrant?
由 zuiho(@zuiho-kai)开发并维护,当前版本 v1.0.15。