Back to Plugins

Qdrant Skills

Agent skills for Qdrant vector search covering scaling, performance optimization, search quality, monitoring, deployment, model migration, version upgrades, and SDK usage across Python, TypeScript, Rust, Go, .NET, and Java.

databasepythontypescriptrustgoperformancedeploymentmonitoringagent
By Qdrant
18319Updated 3 days agoPythonApache-2.0

Installation

/plugin install qdrant-skills@claude-plugins-official

How to install

  1. Open Claude Code in your terminal
  2. Run the installation command above
  3. The plugin will be enabled automatically
  4. Use the plugin's features in your Claude Code sessions

Qdrant Skills - Agent Skills for Qdrant Vector Search

<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-dark.svg"> <source media="(prefers-color-scheme: light)" srcset="https://github.com/qdrant/qdrant/raw/master/docs/logo-light.svg"> <img height="100" alt="Qdrant" src="https://github.com/qdrant/qdrant/raw/master/docs/logo.svg"> </picture> </p> <p align="center"> <b>Agent skills for building with Qdrant vector search</b> </p>

Skills encode deep Qdrant knowledge so coding agents can make the engineering decisions that determine whether vector search works well: quantization, sharding, tenant isolation, hybrid search, model migration, and more.

Philosophy

Skills are not documentation. Qdrant already has docs in markdown. Skills answer "when?" and "why?", not "how?"

They are structured as the handbook of a Solutions Architect working on Qdrant: given a problem, navigate to the exact place in the documentation where the answer lives. No tutorials, no concept explanations. Only references and minimal snippets where absolutely necessary.

Disclaimer

These skills are under active development. Skill content and structure may change between versions as Qdrant evolves.

Usage

Skills are hosted at skills.qdrant.tech. Pass the URL of a skill directly to your agent — no installation required:

Use skills.qdrant.tech

This keeps your agent's context focused: it fetches only the skill relevant to your current problem rather than loading everything upfront.

If you prefer skills to be available offline or without passing URLs manually, you can install them locally. Refer to the Installation section.

Quick Start

The recommended way is the URL method: ask your agent about Qdrant and pass skills.qdrant.tech in your prompt.

"I have 50M vectors on a single node and search is slow, should I add more nodes? Use skills.qdrant.tech"

"My search results are returning irrelevant matches. Use skills.qdrant.tech"

If you use the installation method, just ask your agent about Qdrant. Skills are triggered automatically when your question matches their description.

"I have 50M vectors on a single node and search is slow, should I add more nodes?"
→ qdrant-scaling skill activates, recommends quantization and vertical scaling before adding nodes

"My search results are returning irrelevant matches"
→ qdrant-search-quality skill activates, walks through diagnosis and search strategy options

"How do I switch from OpenAI embeddings to Cohere without downtime?"
→ qdrant-model-migration skill activates, guides zero-downtime migration with dual vectors

Skills

SkillUseful for
qdrant-clients-sdkSDK setup, code examples, snippet search across Python, TypeScript, Rust, Go, .NET, Java
qdrant-scalingScaling decisions: data volume, QPS, latency, query volume, horizontal vs vertical
qdrant-performance-optimizationSearch speed, memory usage, indexing performance
qdrant-search-qualityDiagnosing bad results, search strategies, hybrid search
qdrant-monitoringMetrics, health checks, debugging optimizer and cluster issues
qdrant-deployment-optionsChoosing between local, self-hosted, cloud, and hybrid
qdrant-model-migrationSwitching embedding models without downtime
qdrant-version-upgradeSafe upgrade paths, compatibility guarantees, rolling upgrades

Installation

npx skills

Install using the npx skills CLI:

npx skills add qdrant/skills

Claude Code

Add the marketplace, then install all Qdrant skills:

/plugin marketplace add qdrant/skills
/plugin install qdrant@qdrant

Cursor

Install from the Cursor Marketplace or add manually via Settings > Rules > Add Rule > Remote Rule (GitHub) with qdrant/skills.

Clone / Copy

Clone this repo and copy the skill folders into the appropriate directory for your agent:

AgentSkill DirectoryDocs
Claude Code~/.claude/skills/docs
Cursor.cursor/skills/docs
OpenCode~/.config/opencode/skill/docs
OpenAI Codex~/.codex/skills/docs
Pi~/.pi/agent/skills/docs

MCP Servers

For additional Qdrant context, pair skills with these MCP servers:

ServerPurpose
mcp-code-snippetsSearch Qdrant docs and code examples across all SDKs
mcp-server-qdrantStore and retrieve memories, manage collections directly

Getting Help

Found a bug or wrong advice in a skill? Open an issue on GitHub and include:

  • The skill name
  • The prompt you gave your agent
  • What the agent said vs what it should have said

Contributing

If you are interested in contributing, follow the instructions in CONTRIBUTING.md.

View source on GitHub