Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/chroma-core/agent-skills/chroma-cloudnpx skills add chroma-core/agent-skills --skill chroma-cloudgit clone --depth 1 https://github.com/chroma-core/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chroma-core/agent-skills/chroma-cloud)<a href="https://agentmods.dev/skills/chroma-core/agent-skills/chroma-cloud"><img src="https://agentmods.dev/badge/skills/chroma-core/agent-skills/chroma-cloud.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.01137 |
| Opus 5 | $0.00025 | $0.00568 |
| Sonnet 5 | $0.00010 | $0.00227 |
| Haiku 4.5 | $0.00005 | $0.00114 |
Grade A, and why
chroma-cloud scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
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.
Quick Start
Use the CLI topic to authenticate and write Cloud credentials:
chroma login
chroma db create <db_name>
chroma db connect <db_name> --env-file
Then create a CloudClient and choose the API based on the search mode:
import { CloudClient } from 'chromadb';
const client = new CloudClient();
const collection = await client.getOrCreateCollection({ name: 'my_collection' });
Use collection.query() for dense-only search. Use Schema() plus Search() only when the user needs hybrid retrieval, multiple indexes, or more expressive ranking/query composition.
Cloud Guidance
Collections are the main isolation boundary in Chroma Cloud, and metadata is the main filtering mechanism inside a collection. Reach for Schema() only when you need explicit dense+sparse or multi-index configuration, and reach for Search() only when query() is not expressive enough.
What ships with it
23 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- caching-collections.md 2.7 KB
- chroma-cloud-qwen/python.md 617 B
- chroma-cloud-qwen/typescript.md 790 B
- cli.md 3.2 KB
- data-model.md 4.0 KB
- error-handling/python.md 5.9 KB
- error-handling/typescript.md 6.9 KB
- forking/python.md 3.2 KB
- forking/typescript.md 2.9 KB
- metadata/python.md 4.3 KB
- metadata/typescript.md 4.4 KB
- querying/python.md 3.9 KB
- querying/typescript.md 4.3 KB
- quotas.md 775 B
- regex/python.md 2.1 KB
- regex/typescript.md 2.4 KB
- schema/python.md 4.5 KB
- schema/typescript.md 4.6 KB
- search-api/python.md 9.5 KB
- search-api/typescript.md 9.4 KB
- understanding-a-codebase.md 4.2 KB
- updating-deleting/python.md 4.6 KB
- updating-deleting/typescript.md 5.8 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 88 lines · 50 tokens per session scan A 99f1a84cb924
chroma-cloud is a skill published in the GitHub repository chroma-core/agent-skills (21 stars, last pushed 4mo ago), licensed MIT. It adds 50 tokens to every session and 1,137 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
pinecone
Managed vector DB for production RAG and search.
vector-db
Vector database expert for embeddings, similarity search, RAG patterns, and indexing strategies.
qdrant-scaling-query-volume
Guides Qdrant query volume scaling. Use when someone asks 'query returns too many results', 'scroll performance', 'large limit values', 'paginating search results', 'fetching many vectors', or 'high cardinality results'.
Embedding Generator
Generate and manage text embeddings for semantic search, clustering, and similarity tasks.
pinecone
Managed vector database for production AI applications. Fully managed, auto-scaling, with hybrid search (dense + sparse), metadata filtering, and namespaces. Low latency (<100ms p95). Use for production RAG, recommendation systems, or semantic search at scale. Best for serverless, managed infrastructure.
qdrant-vector-search
High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neighbor search, hybrid search with filtering, or scalable vector storage with Rust-powered performance.