What problem does it solve? Building AI applications with memory requires storing and searching document embeddings, but setting up a vector database from scratch is complex. This Skill provides ready-to-use patterns for Chroma, the open-source embedding database, covering collection management, similarity search, and metadata filtering. ## Core Features & Use Cases - Vector Storage & Search: Create collections, add documents with embeddings and metadata, and run similarity queries with a simple 4-function API. - Metadata Filtering: Combine semantic search with structured filters using comparison and logical operators to narrow results. - Framework Integration: Connect Chroma to LangChain and LlamaIndex for retrieval-augmented generation pipelines, with persistent local storage or client-server mode. - Use Case: Build a RAG chatbot over your documentation by embedding markdown files into a persistent Chroma collection, then querying it with metadata filters to retrieve the most relevant sections for each user question. ## Quick Start Use the chroma skill to create a persistent collection, add my documents with metadata, and run a filtered similarity search.