What problem does it solve? Building retrieval-augmented generation and semantic search requires a vector database to store embeddings and run similarity queries, and setting one up from scratch is complex. This Skill provides ready-to-use patterns for Chroma, the open-source embedding database, covering everything from installation to production server mode. ## Core Features & Use Cases - Vector Storage & Similarity Search: Create collections, add documents with embeddings, and run top-k similarity queries with distance scores. - Metadata Filtering: Combine semantic search with structured filters using operators like $and, $or, $gt, and $in to narrow results. - Framework Integration: Connect Chroma to LangChain and LlamaIndex as a vector store or retriever for RAG pipelines. - Use Case: You are building a documentation chatbot. Use this Skill to split your docs, embed them into a persistent Chroma collection, and query the top 5 relevant chunks filtered by category before passing them to an LLM. ## Quick Start Use the chroma skill to create a persistent collection, add my documents with metadata, and run a filtered similarity search.