Local semantic memory with Qdrant and Transformers.js. Store, search, and recall conversation context using vector embeddings (fully local, no API keys).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install memory-qdrant或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install memory-qdrant⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/memory-qdrant/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: memory-qdrant description: Local semantic memory with Qdrant and Transformers.js. Store, search, and recall conversation context using vector embeddings (fully local, no API keys). version: 1.0.10 author: zuiho-kai homepage: https://github.com/zuiho-kai/openclaw-memory-qdrant tags: [memory, semantic-search, qdrant, transformers, embeddings, local-ai, vector-db, context] metadata: openclaw: requires: bins: [node, npm] ---
Use when you need your OpenClaw agent to remember and recall information across conversations using semantic search.
Local semantic memory plugin powered by Qdrant vector database and Transformers.js embeddings. Zero configuration, fully local, no API keys required.
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.
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)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" })
安装 OpenClaw Memory Qdrant 后,可以对 AI 说这些话来触发它
Help me get started with OpenClaw Memory Qdrant
Explains what OpenClaw Memory Qdrant does, walks through the setup, and runs a quick demo based on your current project
Use OpenClaw Memory Qdrant to local semantic memory with Qdrant and Transformers
Invokes OpenClaw Memory Qdrant with the right parameters and returns the result directly in the conversation
What can I do with OpenClaw Memory Qdrant in my documents & notes workflow?
Lists the top use cases for OpenClaw Memory Qdrant, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/memory-qdrant/ 目录(个人级,所有项目可用),或 .claude/skills/memory-qdrant/(项目级)。重启 AI 客户端后,用 /memory-qdrant 主动调用,或让 AI 根据上下文自动发现并使用。
OpenClaw Memory Qdrant 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
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).
OpenClaw Memory Qdrant 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using OpenClaw Memory Qdrant
Identifies repetitive steps in your workflow and sets up OpenClaw Memory Qdrant to handle them automatically