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/drip-cli/drip/claude-mdgit clone --depth 1 https://github.com/drip-cli/dripWhat 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.02300 | $0.02300 |
| Opus 5 | $0.01150 | $0.01150 |
| Sonnet 5 | $0.00460 | $0.00460 |
| Haiku 4.5 | $0.00230 | $0.00230 |
Grade A, and why
drip 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 — 109 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, lint
cargo build # debug
cargo build --release # release (use this for benches)
cargo test # full suite (~431 tests)
cargo test diff_accuracy:: # run a module
cargo test modified_file_returns_unified # run a single test by name
cargo fmt --all -- --check # CI enforces
cargo clippy --all-targets --locked -- -D warnings # CI enforces
rusqlite uses the bundled feature — no system SQLite needed. CI matrix runs on Ubuntu / macOS / Windows; OS-specific paths exist for FSEvents (macOS), inotify (Linux), and ReadDirectoryChangesW (Windows) in drip watch.
Trying a local build against a real read
cargo build --release
DRIP_DATA_DIR=/tmp/drip-dev DRIP_SESSION_ID=dev \
./target/release/drip read README.md
Benchmarks (release binary only)
bash scripts/bench_reddit.sh # 4-language realistic workload
bash scripts/bench_multilang.sh # 8-language compression matrix
cargo test --release diff_perf:: # 50 KB / 99 KB diff perf assertions
cargo test concurrency:: # 15-process SQLite contention
Numbers from these scripts feed BENCHMARKS.md — re-run when changing the diff path or session storage.
Repository conventions
- Branch from
develop, notmain. PRs targetdevelop.mainis release-only (driven byrelease-please). - Conventional Commits are enforced by CI (
commitlintruns on PRs). Subject ≤ 100 chars, imperative, no trailing period. Sloppy subjects break the auto-generated CHANGELOG. - Every behavioural change needs a test. Refactors that don't change behaviour and don't unlock a future change won't be merged.
- New dependencies need a clear perf or correctness justification — the binary is intentionally < 5 MB.
CHANGELOG.mdis generated byrelease-please; never edit by hand.
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 · 109 lines · 2,300 tokens per session scan A 47c75a157a3a
drip CLAUDE.md is an instructions file published in the GitHub repository drip-cli/drip (5 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 2,300 tokens to every session, about $0.0115 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.
Other instructions, from other repositories
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
InvestSkill GEMINI.md
Instructions for yennanliu/InvestSkill, covering investskill — gemini cli setup & usage guide, installation & setup, quick start, navigate to the investskill directory and start gemini cli (loads gemini.md automatically).
she-love-me CLAUDE.md
Instructions for 863401402/she-love-me, covering claude.md and 唯一工作流.
wayland-core copilot-instructions.md
Instructions for FerroxLabs/wayland-core, covering ijfw rules, output discipline, memory routing, context discipline and cross-audit.
ZipAgent AGENTS.md
Instructions for JiayuXu0/ZipAgent, covering repository guidelines, project structure & module organization, build, test & development commands, coding style & naming conventions and testing guidelines.
AgentGo AGENTS.md
Instructions for yeasy/AgentGo, covering agents.md, purpose, startup instructions, trust & safety and failure modes.