Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Qdrant — vector similarity search engine. Payload filtering, quantized indexing, multi-tenant, and horizontal scaling. REST and gRPC API. Docker-native deployment for production RAG and recommendation.
.claude/skills/mkurman-qdrant/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✓→✓ | = Same ✓ | 13% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -15% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 3% | 0% |
| case-04 | ✓→✓ | = Same ✓ | -15% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 22% | 0% |
Qdrant is a high-performance vector similarity search engine supporting dense and sparse vectors, payload indexing and filtering, scalar/PQ quantization, multi-tenancy, and horizontal scaling via clustering. REST and gRPC APIs with async support.
bashdocker run -p 6333:6333 qdrant/qdrant
pythonfrom qdrant_client import QdrantClient, models import numpy as np client = QdrantClient("localhost", port=6333) client.create_collection("documents", vectors_config=models.VectorParams( size=384, distance=models.Distance.COSINE)) client.upsert("documents", points=[ models.PointStruct(id=1, vector=np.random.rand(384).tolist(), payload={"text": "Paris is capital of France"}), models.PointStruct(id=2, vector=np.random.rand(384).tolist(), payload={"text": "Berlin is capital of Germany"}), ]) results = client.search("documents", query_vector=np.random.rand(384).tolist(), limit=5) for hit in results: print(hit.payload["text"], hit.score)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 5,582 | 4,770 | -15% | 1 | 1 | 0% | 1,105 | 1,253 | +13% | 0 | 0 | — |
case-02 | pass→pass | 6,892 | 4,354 | -37% | 1 | 1 | 0% | 1,396 | 1,187 | -15% | 0 | 0 | — |
case-03 | pass→pass | 6,162 | 4,468 | -27% | 1 | 1 | 0% | 1,193 | 1,228 | +3% | 0 | 0 | — |
case-04 | pass→pass | 5,558 | 3,422 | -38% | 1 | 1 | 0% | 1,112 | 942 | -15% | 0 | 0 | — |
case-05 | pass→pass | 3,158 | 2,231 | -29% | 1 | 1 | 0% | 561 | 685 | +22% | 0 | 0 | — |
case-06 | pass→pass | 3,065 | 1,894 | -38% | 1 | 1 | 0% | 523 | 639 | +22% | 0 | 0 | — |
case-07 | pass→pass | 3,607 | 1,522 | -58% | 1 | 1 | 0% | 631 | 566 | -10% | 0 | 0 | — |
case-08 | pass→pass | 5,573 | 1,847 | -67% | 1 | 1 | 0% | 1,019 | 600 | -41% | 0 | 0 | — |
case-13 | pass→pass | 5,686 | 2,422 | -57% | 1 | 1 | 0% | 1,031 | 734 | -29% | 0 | 0 | — |
case-09 | pass→pass | 5,952 | 4,785 | -20% | 1 | 1 | 0% | 1,023 | 1,182 | +16% | 0 | 0 | — |
case-10 | pass→pass | 2,662 | 1,731 | -35% | 1 | 1 | 0% | 440 | 595 | +35% | 0 | 0 | — |
case-11 | pass→pass | 5,943 | 2,658 | -55% | 1 | 1 | 0% | 1,118 | 771 | -31% | 0 | 0 | — |
case-12 | pass→pass | 5,749 | 3,886 | -32% | 1 | 1 | 0% | 1,006 | 1,009 | +0% | 0 | 0 | — |
case-14 | pass→pass | 2,505 | 1,820 | -27% | 1 | 1 | 0% | 411 | 622 | +51% | 0 | 0 | — |
case-15 | pass→pass | 4,462 | 2,283 | -49% | 1 | 1 | 0% | 689 | 653 | -5% | 0 | 0 | — |
case-16 | pass→pass | 4,008 | 3,318 | -17% | 1 | 1 | 0% | 678 | 870 | +28% | 0 | 0 | — |
case-17 | pass→pass | 6,423 | 2,826 | -56% | 1 | 1 | 0% | 1,243 | 788 | -37% | 0 | 0 | — |
case-18 | pass→pass | 3,190 | 2,295 | -28% | 1 | 1 | 0% | 509 | 668 | +31% | 0 | 0 | — |
case-19 | pass→pass | 6,981 | 3,335 | -52% | 1 | 1 | 0% | 1,234 | 873 | -29% | 0 | 0 | — |
case-20 | pass→pass | 7,267 | 2,115 | -71% | 1 | 1 | 0% | 1,183 | 600 | -49% | 0 | 0 | — |
case-21 | pass→pass | 3,093 | 2,584 | -16% | 1 | 1 | 0% | 441 | 706 | +60% | 0 | 0 | — |
case-22 | fail→fail | 7,514 | 6,360 | -15% | 1 | 1 | 0% | 1,547 | 1,623 | +5% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of 0 percentage points is the difference between those two pass rates over the 22 comparable cases.
Other measured skills in the registry, with their headline benchmark lift.