Agent skill · AI & Agents

qdrant-memory

Use this skill for semantic search, long-term memory storage, and RAG (Retrieval Augmented Generation). Enables vector-based knowledge retrieval and persistent memory across sessions.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill qdrant-memory --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-llm/qdrant-memory/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Qdrant Vector Memory This skill enables semantic search and long-term memory using Qdrant vector database. ## Problem Solved Traditional keyword search: - Exact match only - Misses semantically similar content - No context understanding With Qdrant Vector Search: - Semantic similarity matching - Finds conceptually related information - Understands context and meaning - Persistent memory across sessions ## When to Use - Storing knowledge for later retrieval - Semantic code search across codebase - Building RAG (Retrieval Augmented Generation) systems - Long-term memory for AI agents - Finding similar documents/code - Knowledge base management ## Available Tools ### 1. qdrant-store Stores text with vector embeddings for later retrieval. ``` Input: { "text": "React hooks are functions...", "metadata": { "topic": "react" } } Output: Stored with vector embedding ``` ### 2. qdrant-find Finds semantically similar content. ``` Input: { "query": "how to manage state in React" } Output: Related documents ranked by similarity ``` ### 3. qdrant-delete Removes stored memories by ID or filter. ``` Input: { "filter": { "topic": "outdated" } } Output: Deleted matching entries ``` ### 4. qdrant-l

What's inside
Steps it walks through
  1. Problem Solved
  2. When to Use
  3. Available Tools
  4. 1. qdrant-store
  5. 2. qdrant-find
  6. 3. qdrant-delete
  7. 4. qdrant-list-collections
  8. Example Usage
  9. Store Knowledge
  10. Semantic Search
  11. RAG for Code Generation
  12. Architecture
  13. Required Environment Variables
  14. Setup
Ships with 1 file
  • metadata.json
Commands it runs
Start Qdrant
docker run -p 6333:6333 -v $(pwd)/qdrant_data:/qdrant/storage qdrant/qdrant
Verify
curl http://localhost:6333/health
More from claude-skill-registry
All skills →
About this skill
What does the qdrant-memory skill do?

Use this skill for semantic search, long-term memory storage, and RAG (Retrieval Augmented Generation). Enables vector-based knowledge retrieval and persistent memory across sessions.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill qdrant-memory --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going