MemSearch is a cross-platform semantic memory layer for AI coding agents that stores human-readable Markdown memories and indexes them with Milvus for searchable retrieval. It is used by agent users who want persistent context and by developers building memory features into agents across tools such as Claude Code, Codex, DeepSeek Harness, OpenClaw, and OpenCode. Catalogue add-ons provide the hooks, skills, and plugin workflows that capture, retrieve, and maintain this memory.
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 instructions/zilliztech/memsearch/claude-mdgit clone --depth 1 https://github.com/zilliztech/memsearchWrote 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/instructions/zilliztech/memsearch/claude-md)<a href="https://agentmods.dev/instructions/zilliztech/memsearch/claude-md"><img src="https://agentmods.dev/badge/instructions/zilliztech/memsearch/claude-md.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 | $0.02349 | $0.02349 |
| Opus 5 | $0.01175 | $0.01175 |
| Sonnet 5 | $0.00470 | $0.00470 |
| Haiku 4.5 | $0.00235 | $0.00235 |
Grade A, and why
memsearch CLAUDE.md 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 2d 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Build & Test Commands
# Install in development mode
uv sync --all-extras
# Run all tests (use python -m pytest to avoid system pytest conflicts)
uv run python -m pytest
# Run a single test file
uv run python -m pytest tests/test_chunker.py
# Run a specific test
uv run python -m pytest tests/test_store.py::test_upsert_and_search -v
# Serve docs locally
uv run mkdocs serve
# Run the CLI
uv run memsearch --help
Architecture
memsearch is a semantic memory search engine for markdown knowledge bases, built on Milvus.
Data Flow
Markdown files → Scanner → Chunker → Embedder → MilvusStore
↓
User query → Embedder → Hybrid Search (dense + BM25 + RRF) → Results
Core Library (src/memsearch/)
core.py—MemSearchclass: the public Python API that orchestrates everything. Entry point forindex(),search(),compact(),watch().store.py—MilvusStore: Milvus wrapper handling collection creation, upsert, hybrid search (dense cosine + BM25 sparse + RRF reranking), and cleanup. Thechunk_hash(composite ID of source+lines+content+model) is the VARCHAR primary key.chunker.py— Splits markdown by headings intoChunkdataclasses. SHA-256 content hash enables dedup.compute_chunk_id()generates composite IDs matching OpenClaw's format.embeddings/__init__.py—EmbeddingProviderprotocol + lazy-loading factory (get_provider()). Providers: openai (default), google, voyage, jina, mistral, ollama, local, onnx.scanner.py— Walks directories to find.md/.markdownfiles, returnsScannedFilelist.config.py— Layered TOML config: dataclass defaults →~/.memsearch/config.toml→.memsearch.toml→ CLI flags.cli.py— Click CLI wrapping the Python API. All commands resolve config viaresolve_config()then instantiateMemSearch.watcher.py—watchdog-based file watcher with debounce, used bymemsearch watchand the Claude Code plugin.compact.py— LLM-powered chunk summarization (OpenAI/Anthropic/Gemini).reranker.py— Optional cross-encoder reranking (ONNX or PyTorch backend). Disabled by default; enable viareranker.modelconfig.
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.
- 2d ago Changed · +1 lines · +17 tokens per session 5de05fc6e987
- 5d ago First seen · 131 lines · 2,332 tokens per session scan A 6ec9071495a9
memsearch CLAUDE.md is an instructions file published in the GitHub repository zilliztech/memsearch (2,559 stars, last pushed 2d ago), licensed MIT. It adds 2,349 tokens to every session, about $0.0117 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 instructions, from other repositories
altk-evolve AGENTS.md
AGENTS.md instructions for AgentToolkit/altk-evolve, covering what is evolve?, key concepts, architecture flow, project directory tree (some files omitted for brevity) and first time setup.
Starlight-Intelligence-System CLAUDE.md
Claude Code instructions for frankxai/Starlight-Intelligence-System, covering starlight intelligence system, frank dna, standards, layer routing — read first and system overview.
Starlight-Intelligence-System AGENTS.md
AGENTS.md instructions for frankxai/Starlight-Intelligence-System, covering frank dna, standards, multi-agent systems & agent harnesses, 1. what makes sis unique and 2. the swarm harness process.
Starlight-Intelligence-System GEMINI.md
Gemini CLI instructions for frankxai/Starlight-Intelligence-System, covering starlight central command: starlight-intelligence-system and core mandates.
signetai CLAUDE.md
Claude Code instructions for Signet-AI/signetai, a project described as: Sync and store memories, shared identity files (AGENTS.md, CLAUDE.md), session transcripts, institutional knowledge, and secrets between all of your favorite harnesses and models.
engineering-memlog CLAUDE.md
Claude Code instructions for atazifor/engineering-memlog, covering engineering-memlog plugin — agent instructions, how the log gets into your context, search the log yourself when warranted, append a lesson after you work and plugin knobs (env vars).