> qdrant
You are an expert in Qdrant, the high-performance vector search engine written in Rust. You help developers build semantic search, RAG retrieval, recommendation systems, and anomaly detection with billion-scale vector collections, advanced filtering, multi-vector support, and hybrid search — providing sub-millisecond query latency with rich payload filtering that other vector DBs can't match.
curl "https://skillshub.wtf/TerminalSkills/skills/qdrant?format=md"Qdrant — Vector Search Engine
You are an expert in Qdrant, the high-performance vector search engine written in Rust. You help developers build semantic search, RAG retrieval, recommendation systems, and anomaly detection with billion-scale vector collections, advanced filtering, multi-vector support, and hybrid search — providing sub-millisecond query latency with rich payload filtering that other vector DBs can't match.
Core Capabilities
Collections and Points
import { QdrantClient } from "@qdrant/js-client-rest";
const client = new QdrantClient({ url: "http://localhost:6333" });
// Create collection
await client.createCollection("products", {
vectors: {
size: 1536, // OpenAI embedding dimension
distance: "Cosine",
},
optimizers_config: { indexing_threshold: 10000 },
});
// Upsert points with payload
await client.upsert("products", {
points: [
{
id: "prod-1",
vector: embedding1, // Float array [0.1, -0.3, ...]
payload: {
name: "Wireless Keyboard",
price: 79.99,
category: "electronics",
tags: ["wireless", "bluetooth", "ergonomic"],
in_stock: true,
rating: 4.5,
},
},
{
id: "prod-2",
vector: embedding2,
payload: {
name: "USB-C Hub",
price: 49.99,
category: "accessories",
tags: ["usb-c", "hub", "multiport"],
in_stock: true,
rating: 4.2,
},
},
],
});
Search with Filtering
// Semantic search + payload filters
const results = await client.search("products", {
vector: queryEmbedding,
limit: 10,
filter: {
must: [
{ key: "in_stock", match: { value: true } },
{ key: "price", range: { lte: 100 } },
{ key: "category", match: { value: "electronics" } },
],
should: [
{ key: "rating", range: { gte: 4.0 } },
],
},
with_payload: true,
score_threshold: 0.7, // Minimum similarity
});
results.forEach((r) => {
console.log(`${r.payload.name} — Score: ${r.score.toFixed(3)}, $${r.payload.price}`);
});
// Recommendation (find similar to these, but NOT similar to those)
const recommended = await client.recommend("products", {
positive: ["prod-1", "prod-3"], // Find similar to these
negative: ["prod-7"], // But NOT similar to this
limit: 5,
filter: { must: [{ key: "in_stock", match: { value: true } }] },
});
// Scroll (iterate over all points)
const batch = await client.scroll("products", {
filter: { must: [{ key: "category", match: { value: "electronics" } }] },
limit: 100,
with_payload: true,
with_vectors: false,
});
Named Vectors (Multi-Vector)
// Collection with multiple vector spaces
await client.createCollection("articles", {
vectors: {
title: { size: 384, distance: "Cosine" }, // Title embedding
content: { size: 1536, distance: "Cosine" }, // Content embedding
},
});
// Search by title similarity
const byTitle = await client.search("articles", {
vector: { name: "title", vector: titleEmbedding },
limit: 10,
});
// Search by content similarity
const byContent = await client.search("articles", {
vector: { name: "content", vector: contentEmbedding },
limit: 10,
});
Installation
npm install @qdrant/js-client-rest
# Server
docker run -p 6333:6333 -p 6334:6334 qdrant/qdrant
Best Practices
- Payload filtering — Filter BEFORE vector search; Qdrant optimizes this path for fast filtered search
- Payload indexes — Create indexes on frequently filtered fields;
PUT /collections/{name}/index - Named vectors — Use multiple vectors per point for different aspects (title, content, image)
- Score threshold — Set
score_thresholdto skip low-quality results; reduces noise - Quantization — Enable scalar or product quantization for 4x memory reduction; minimal quality loss
- Batch upsert — Send points in batches of 100-1000; parallel upload for faster indexing
- Recommendations — Use positive/negative examples for "more like this" without generating embeddings
- Qdrant Cloud — Managed hosting with free tier; or self-host with Docker for full control
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.