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/juliusbrussee/cavemem/claude-mdgit clone --depth 1 https://github.com/JuliusBrussee/cavememWhat 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.01990 | $0.01990 |
| Opus 5 | $0.00995 | $0.00995 |
| Sonnet 5 | $0.00398 | $0.00398 |
| Haiku 4.5 | $0.00199 | $0.00199 |
Grade A, and why
cavemem 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 yesterday.
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 — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cavemem — Agent Playbook
This file is the source of truth for AI coding assistants working on this repository. Follow it before generating code, tests, or documentation. If a request conflicts with this file, pause and ask.
Project identity
cavemem is a cross-agent persistent memory system for coding assistants. It captures observations from editor sessions, compresses prose using the project's deterministic caveman grammar, stores entries in a local SQLite + vector index, and exposes them to agents through a Model Context Protocol (MCP) server and a local web viewer.
The signature property of the project is that memory is stored compressed. Every write path runs text through @cavemem/compress. Every human-facing read path runs it back through @cavemem/compress#expand. Model-facing reads may keep content compressed when the caller requests it.
Non-negotiable rules
- All persisted prose must pass through
packages/compressbefore hitting storage. Writing raw prose to SQLite is a defect. If you add a new write path, it must useMemoryStore, which enforces this. - Never compress technical tokens. Code blocks, inline code, URLs, file paths, shell commands, version numbers, dates, numeric literals, and quoted identifiers are preserved byte-for-byte. The tokenizer in
packages/compress/src/tokenize.tsis the single authority. - Round-trip tests must pass. Any change to the compressor, the lexicon, or the tokenizer requires
pnpm --filter @cavemem/compress testgreen, including the technical-token preservation suite. - Progressive disclosure in MCP.
searchandtimelinereturn compact results (IDs + snippets). Full observation bodies are only returned byget_observations(ids[]). Do not bloat the compact shapes. - Hot-path hooks are fast. Hook handlers in
packages/hooksmust complete under 150 ms p95. Summarization, embedding, and indexing are handed off to the worker. No network calls in hooks. - Privacy is enforced at the write boundary. Content inside
<private>…</private>tags is stripped. Paths matchingsettings.excludePatternsare never read. Neither appears in logs. - Local by default. Default embedding provider is local (Transformers.js). Remote providers are opt-in via settings. Do not add default network calls.
- No silent failures. Hook and worker errors are logged as structured JSON; user-visible commands surface failures with a non-zero exit code and a short message.
- No daemon on the write path. Hooks write observations synchronously through
MemoryStore.addObservation— never across a network or HTTP boundary. Hooks may detach-spawn the worker to kick off background embedding, but they must never wait on it. If the worker is down, writes still succeed; only the semantic-search side is degraded (BM25 keeps working).
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.
- yesterday First seen · 95 lines · 1,990 tokens per session scan A eb085fe4b66d
cavemem CLAUDE.md is an instructions file published in the GitHub repository JuliusBrussee/cavemem (674 stars, last pushed 17d ago), licensed MIT. It adds 1,990 tokens to every session, about $0.0100 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
caveman CLAUDE.md
Claude Code instructions for JuliusBrussee/caveman, covering claude.md — caveman, readme is a product artifact, project overview, repository routing and what lives where.
caveman AGENTS.md
AGENTS.md instructions for JuliusBrussee/caveman: Read CLAUDE.md before repository work. Binding routing: this repo owns skills, Engine, and MV3 extension; Agent SDK work belongs in /Users/julb/Desktop/GitHub/caveman-agent-sdk; Browse driver/MCP/benchmark/plugin work belongs in…
caveman GEMINI.md
Gemini CLI instructions for JuliusBrussee/caveman: @./skills/caveman/SKILL.md @./skills/caveman-commit/SKILL.md @./skills/caveman-review/SKILL.md @./skills/caveman-compress/SKILL.md.
genshijin copilot-instructions.md
Instructions for InterfaceX-co-jp/genshijin: 原始人のように簡潔に返答せよ。技術的中身はすべて残す。無駄だけ消す。日本語前提。.
genshijin AGENTS.md
Instructions for InterfaceX-co-jp/genshijin: @./skills/genshijin/SKILL.md @./skills/genshijin-commit/SKILL.md @./skills/genshijin-review/SKILL.md @./skills/genshijin-help/SKILL.md @./skills/genshijin-compress/SKILL.md @./skills/genshijin-stats/SKILL.md @./skills/genshijin-crew/SKILL.md.
my-adhd-caveman AGENTS.md
Instructions for SteinsFu/my-adhd-caveman, covering agent guide, start here, repository map, source-of-truth rules and install for the user.