Redis' own guidance for FT.CREATE schema design, FT.SEARCH / FT.AGGREGATE / FT.HYBRID, HNSW vector similarity and RAG retrieval pipelines.
Qdrant Advisor
Summary
Qdrant's meta-skill: instead of shipping static docs, it loads the current official Qdrant skill tree live from skills.qdrant.tech and diagnoses from that.
Features
- Loads current Qdrant guidance live instead of shipping a snapshot that ages
- Traverses only the skill branch matching the symptom, keeping context small
- Covers slow search, memory growth, optimizer stalls and indexing slowness
- Advises on sharding, multitenancy and vertical vs horizontal scaling
- Handles embedding-model migration and version-upgrade compatibility
- Monitoring guidance for Prometheus, Grafana, /metrics and /telemetry
Install This Skill
Add this skill to your favorite AI agent in a few steps.
Skill Content
Usage Instructions
Learn how to use this skill with different AI agents.
Example Usage
"Our Qdrant collection's memory keeps climbing after a bulk upload and search latency doubled — what changed and how do I fix it?"
Description
qdrant-advisor is the entry point Qdrant recommends installing rather than pinning a copy of its whole skill library. It ships no static guidance of its own. When a Qdrant problem comes up, it queries skills.qdrant.tech live, walks the skill hierarchy along the branch matching the symptom, and grounds its answer in whatever the current authoritative guidance says.
The design solves a real staleness problem. Vector-database advice ages badly — endpoints, default parameters, metrics names and deployment patterns change release to release, and a model answering from training data will confidently recommend a configuration that stopped being correct two versions ago. Because the Advisor fetches fresh every session, there is nothing to reinstall to stay current, and because it traverses only the matching branch, it loads a fraction of the context that vendoring the full skill set would cost.
What it covers. Slow or degraded search; memory growth and OOM crashes; optimizer stalls and slow indexing; sharding and scaling decisions (node count, QPS and latency targets, multitenancy, vertical versus horizontal); poor result relevance; hybrid search and reranking; embedding-model migration; version upgrades and compatibility; observability with Prometheus, Grafana, /metrics and /telemetry; deployment choices across local, Docker, self-hosted, Qdrant Cloud and embedded; and client SDK questions in Python, TypeScript, Rust, Go, .NET and Java.
How it works in practice. The skill frames the symptom, turns it into one to three search phrases, hits the search endpoint, then descends and moves laterally through linked SKILL.md files until it reaches guidance concrete enough to act on — ordered diagnostic steps, exact endpoints and metrics, and explicit anti-patterns.
Caveat worth knowing: in the claude.ai web app the Advisor cannot fetch the site on its own, so you need to add "Use skills.qdrant.tech" to the prompt. Qdrant notes the skills are under active development and their structure may change between versions.
Related Skills
Supabase's official skill covering Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron and Queues — with a hard rule to verify against the live changelog before writing code.
GreenSock's official ScrollTrigger skill — scroll-linked animation, pinning, scrub and trigger positioning, with the exact start/end syntax agents get wrong.
Microsoft's official skill that turns an agent into an Azure solution architect — 10 design principles, 6 architecture styles, 44 design patterns and a Well-Architected review workflow.