A local semantic memory plugin for Openclaw Skills providing vector-based context storage and recall without external API dependencies.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install memory-qdrant
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install memory-qdrant using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
memory-qdrant is a specialized plugin developed to provide long-term, semantic context for AI agents. By leveraging the Qdrant vector database and Transformers.js, it allows for the storage and retrieval of conversation history based on conceptual meaning. As one of the most privacy-focused Openclaw Skills, it processes all embeddings locally, ensuring that sensitive data never leaves your environment.
This skill is essential for creating agents that can learn from previous interactions. It supports zero-configuration in-memory storage for temporary sessions or connection to a persistent Qdrant server for robust knowledge management. By adding this to your toolkit, you significantly enhance the intelligence and reliability of your automated workflows.
Install the skill using the following CLI command:
clawhub install memory-qdrant
Enable the plugin in your configuration file to begin using it with other Openclaw Skills:
{
"plugins": {
"memory-qdrant": {
"enabled": true,
"autoRecall": true
}
}
}
The system organizes data in a structured vector format as detailed below:
| Attribute | Description |
|---|---|
| text | The raw text content of the memory fragment. |
| vector | The numerical embedding representing semantic meaning. |
| category | A metadata tag used to filter memories (e.g., 'user_preference'). |
| id | A unique identifier for precise memory management or deletion. |
Loading
A specialized Windows skill for converting text to speech and sending it as native Feishu voice bubbles.

A decentralized governance framework on Base Sepolia that allows AI agents to follow rules, log actions, and prove compliance on-chain.

A comprehensive developer tool for building .NET applications that process Excel, Word, PDF, and email files using GemBox components.

A smart PDF utility that automatically detects page orientation to apply perfectly centered, adjustable text watermarks.

A local semantic memory skill that enables AI agents to store, search, and recall conversation context using vector embeddings without external API keys.

A locally-hosted semantic memory plugin that allows OpenClaw agents to store and recall conversation context using vector search and Transformers.js.








































