vector-db

Guide vector database design covering embeddings, indexing, hybrid search, and RAG pipelines.

Updated Feb 26, 2026
One-click install
npx skills add https://github.com/gagan114662/exp --skill vector-db-gagan114662
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vector-db
Source: https://github.com/gagan114662/exp/tree/main/crates/openfang-skills/bundled/vector-db
Command: npx skills add https://github.com/gagan114662/exp --skill vector-db-gagan114662

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides expert guidance on building and optimizing vector databases for applications like semantic search, recommendation systems, and Retrieval-Augmented Generation (RAG).

Core Features & Use Cases

  • Embedding Strategy: Advice on selecting appropriate embedding models and distance metrics.
  • Indexing and Chunking: Guidance on choosing the right index types and effective document chunking methods.
  • Hybrid Search & RAG: Strategies for combining vector search with keyword search and implementing robust RAG pipelines.
  • Use Case: Design a RAG system that leverages vector search to provide LLMs with up-to-date, domain-specific knowledge, improving response accuracy and reducing hallucinations.

Quick Start

Provide guidance on selecting an embedding model for a new vector database.

Frequently Asked Questions about vector-db

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose the right embedding model for a vector database?

The best way to implement Retrieval-Augmented Generation (RAG) is by combining vector search with keyword search to create a hybrid search pipeline. This approach provides LLMs with domain-specific knowledge, improving response accuracy and reducing hallucinations through effective document chunking.

What is the best way to implement Retrieval-Augmented Generation (RAG) with vector search?

The best way to implement Retrieval-Augmented Generation (RAG) is by combining vector search with keyword search to create a hybrid search pipeline. This approach provides LLMs with domain-specific knowledge, improving response accuracy and reducing hallucinations through effective document chunking.

How does document chunking affect vector search indexing?

Document chunking affects vector search indexing by determining the granularity of the data stored in the vector database. Effective chunking methods ensure that the indexing algorithms can accurately retrieve relevant context during similarity search, optimizing the performance of recommendation engines.

When should I use hybrid search instead of pure vector search?

You should use hybrid search instead of pure vector search when your semantic search application requires matching both conceptual meaning and exact keywords. Combining vector search with keyword search improves retrieval accuracy for complex queries in production RAG pipelines.

What indexing algorithms are recommended for scaling a vector database in production?

Indexing algorithms recommended for scaling a vector database in production depend on your specific latency and throughput requirements. Choosing the right index types is crucial for maintaining efficient similarity search performance as your dataset grows and deployment demands increase.