chroma-hybrid-search

chroma-hybrid-search is a skill for Claude Code, Codex from masteryee-labs/Tool.Agent-Harness-Deploy. It costs 57 tokens per session (750 once invoked), scanned A, original, MIT.

A local search tool that combines keyword matching, meaning-based search, and result re-ranking over stored project knowledge. ChromaDB is a local database for vector-based search, while BM25 is a keyword search method.

In plain words
What is it for?
Use it to search the hot and cold stores under /.deep-memory for code, implementation ideas, or previous solutions.
Why use it?
It helps find relevant code or solutions in stored memory and reduces the chance of relying on an invented answer when an exact match is needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to search the hot and cold stores under /.deep-memory for code, implementation ideas, or previous solutions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search
Install

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.

Any agent
npx skills add masteryee-labs/Tool.Agent-Harness-Deploy --skill chroma-hybrid-search
Clone the repo
git clone --depth 1 https://github.com/masteryee-labs/Tool.Agent-Harness-Deploy

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for chroma-hybrid-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search/github.svg)](https://agentmods.dev/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search)
Your own site
<a href="https://agentmods.dev/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search"><img src="https://agentmods.dev/badge/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for chroma-hybrid-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search"><img src="https://agentmods.dev/badge/skills/masteryee-labs/tool.agent-harness-deploy/chroma-hybrid-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 750 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.00750
Opus 5 $0.00028 $0.00375
Sonnet 5 $0.00011 $0.00150
Haiku 4.5 $0.00006 $0.00075

Measured 11d ago against content hash 84780043c401, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

chroma-hybrid-search 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 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/search.py, scripts/update_db.py, scripts/write_cold.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

distill/skills/chroma-hybrid-search/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chroma Hybrid Search Skill

Cross-platform command convention<PY> is the global workspace venv Python:

  • Windows PowerShell: & "$HOME\.deep-memory\.venv\Scripts\python"
  • Linux/macOS: ~/.deep-memory/.venv/bin/python

Default workspace: ~/.deep-memory. Override with --workspace or DEEP_MEMORY_WORKSPACE.

Repo-local script path (this repo): distill/skills/chroma-hybrid-search/scripts/. When synced into a tool, the canon points here. The scripts are self-contained and operate on ~/.deep-memory/ (user-global), not the repo.

First-Time Bootstrap

If ~/.deep-memory/.venv does not exist:

# Windows
python -m venv "$HOME\.deep-memory\.venv"
# Linux/macOS
python3 -m venv ~/.deep-memory/.venv

# Install deps (path is relative to this repo root)
<PY> -m pip install -r distill/skills/chroma-hybrid-search/requirements.txt

# Build index
<PY> distill/skills/chroma-hybrid-search/scripts/update_db.py

Usage

Hybrid (default)

<PY> distill/skills/chroma-hybrid-search/scripts/search.py --query "spring animation tuning" --limit 3 --min-score 0.35

Vector only

<PY> distill/skills/chroma-hybrid-search/scripts/search.py --query "..." --mode vector --limit 3

BM25 only

<PY> distill/skills/chroma-hybrid-search/scripts/search.py --query "KEY_xxx" --mode bm25 --limit 3

Scoped by skill or tag

<PY> distill/skills/chroma-hybrid-search/scripts/search.py --query "session timeout" --skill backend-dev
<PY> distill/skills/chroma-hybrid-search/scripts/search.py --query "config drift" --tag redis

Output

JSON array:

[
  {
    "path": "experience/skill-remotion-best-practices.md#fps-30-causes-av-desync",
    "rerank_score": 0.9402,
    "text": "## FPS 30 causes A/V desync\n..."
  }
]

Use the text field directly. Do not read the whole source file at path — that defeats chunking.

Anti-Hallucination

  • Always pass --min-score 0.35 in hybrid mode.
  • Below-threshold results are dropped.
  • If 0 hits, continue without hallucinated context.

Read the full file on GitHub · 91 lines

Files

What ships with it

4 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.

Changes

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.

  1. 11d ago First seen · 91 lines · 57 tokens per session scan A 84780043c401

Subscribe to this mod's changes

chroma-hybrid-search is a skill published in the GitHub repository masteryee-labs/Tool.Agent-Harness-Deploy (5 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 750 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-31.

Related

Other skills, from other repositories

langchain

Apply when building LangChain pipelines, LCEL chains, agents, or retrieval-augmented generation systems.

sordi-ai/skill-everything · 24 tokens

install-openviking-memory

Install and configure the OpenViking long-term memory plugin for OpenClaw via natural conversation. Once installed, the plugin automatically captures facts from chats and recalls relevant context before each reply (auto-capture + auto-recall, cross-session). Covers prerequisites, install through OpenClaw's plugin…

volcengine/OpenViking · 191 tokens

using-agent-brain

Expert Agent Brain skill for document search with BM25 keyword, semantic vector, hybrid, graph, and multi retrieval modes. Use when asked to "search documentation", "query domain", "find in docs", "bm25 search", "hybrid search", "semantic search", "graph search", "multi search", "find dependencies", "code…

SpillwaveSolutions/agent-brain · 249 tokens

pageindex

PageIndex - Vectorless reasoning-based RAG for document retrieval.

marcusquinn/aidevops · 15 tokens

mfs-ingest

Register, update, or re-sync data sources for MFS so they become searchable — postgres / mysql / mongo / snowflake / bigquery, github / jira / linear / notion / hubspot / zendesk, slack / discord / gmail / feishu, s3 / gdrive / web / file. Use whenever the user wants to ADD a new data source to MFS, change an existing…

zilliztech/mfs · 196 tokens

setup-open-index

Install and configure Open Index as the read/write context layer for a domain-specialized agent. Use when setting up a legal, marketing, customer support, sales, infrastructure, or other domain agent with Open Index over MCP.

DrDroidLab/open-index · 48 tokens