What problem does it solve? Building semantic search and RAG pipelines requires a vector database that can store embeddings, index them efficiently, and return relevant results fast. This Skill provides ready-to-use CLI commands and API patterns for AgentDB so you can set up vector storage, similarity search, and hybrid retrieval without designing the infrastructure from scratch. ## Core Features & Use Cases - Vector Storage & Search: Initialize databases with preset dimensions (1536/768/384), store documents with embeddings, and run similarity queries with cosine, euclidean, or dot-product metrics. - RAG Pipelines: Retrieve relevant context with MMR diversity and metadata filtering, then feed it into an LLM for retrieval-augmented generation. - Memory-Efficient Scaling: Apply binary, scalar, or product quantization for 4-32x memory reduction, with HNSW indexing for sub-millisecond search over 1M+ vectors. - Use Case: Build a knowledge base where support documents are embedded and stored in AgentDB, then answer user questions by retrieving the top-5 most similar passages and passing them to an LLM. ## Quick Start Initialize an AgentDB vector database and run a semantic similarity search over my documents using the agentdb CLI.