chroma-cloud
Installation
SKILL.md
Instructions
Intake
Do not block on a long questionnaire. Ask only for details that are missing and required to choose the right path:
- Dense only or hybrid search
- Whether
CHROMA_API_KEY,CHROMA_TENANT, andCHROMA_DATABASEare already configured - Existing embedding choice, if any
If the user has no embedding preference, default to Chroma Cloud Qwen. If hybrid search is required, use Schema() and Search(). If the task is narrow, such as fixing an existing query, reviewing code, or answering an API question, proceed with the repo context instead of forcing intake.
What to validate
- Correct client import (
CloudClientvsClient) - Environment variables are set for Cloud deployments
- Embedding function package is installed when the selected TypeScript embedding requires one
Schema()andSearch()are only used for Cloud workflows- Important:
get_or_create_collection()accepts either anembedding_functionOR aschema, but not both. Useschemawhen you need multiple indexes, hybrid search, or sparse embeddings; useembedding_functionfor simple dense-only search.