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/rtk-ai/rtk/claude-mdgit clone --depth 1 https://github.com/rtk-ai/rtkWhat 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.01835 | $0.01835 |
| Opus 5 | $0.00918 | $0.00918 |
| Sonnet 5 | $0.00367 | $0.00367 |
| Haiku 4.5 | $0.00184 | $0.00184 |
Grade A, and why
rtk CLAUDE.md scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
rtk proxy curl https://api.example.com/data # Any command works How it starts
The opening of the file, as written. The whole thing — 172 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.
Project Overview
rtk (Rust Token Killer) is a high-performance CLI proxy that minimizes LLM token consumption by filtering and compressing command outputs. It reduces bash output by 60-90% on common development operations through smart filtering, grouping, truncation, and deduplication. All percentages in this repo measure bash output, not your bill. RTK ships no tokenizer (src/core/tracking.rs estimates tokens as bytes / 4), so the ratios are reliable but the absolute token counts are approximate.
This is a fork with critical fixes for git argument parsing and modern JavaScript stack support (pnpm, vitest, Next.js, TypeScript, Playwright, Prisma).
Name Collision Warning
Two different "rtk" projects exist:
- This project: Rust Token Killer (rtk-ai/rtk)
- reachingforthejack/rtk: Rust Type Kit (DIFFERENT - generates Rust types)
Verify correct installation:
rtk --version # Should show "rtk 0.28.2" (or newer)
rtk gain # Should show token savings stats (NOT "command not found")
If rtk gain fails, you have the wrong package installed.
Development Commands
Note: If rtk is installed, prefer
rtk <cmd>over raw commands for token-optimized output. All commands work with passthrough support even for subcommands rtk doesn't specifically handle.
Build & Run
cargo build # raw
rtk cargo build # preferred (token-optimized)
cargo build --release # release build (optimized)
cargo run -- <command> # run directly
cargo install --path . # install locally
Testing
cargo test # all tests
rtk cargo test # preferred (token-optimized)
cargo test <test_name> # specific test
cargo test <module_name>:: # module tests
cargo test -- --nocapture # with stdout
bash scripts/test-all.sh # smoke tests (installed binary required)
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 First seen · 172 lines · 1,835 tokens per session scan A f9ca5f7d7925
rtk CLAUDE.md is an instructions file published in the GitHub repository rtk-ai/rtk (78,131 stars, last pushed today), licensed Apache-2.0. It adds 1,835 tokens to every session, about $0.0092 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
teaql-agent-kit AGENTS.md
Instructions for teaql/teaql-agent-kit, covering agents.md — teaql agent kit and hard requirements.
claude-code-ultimate-guide AGENTS.md
AGENTS.md instructions for FlorianBruniaux/claude-code-ultimate-guide, covering claude code ultimate guide - project context, purpose, repository structure, published at: https://cc.bruniaux.com/whitepapers/ and key files.
claude-code-ultimate-guide CLAUDE.md
Claude Code instructions for FlorianBruniaux/claude-code-ultimate-guide, covering claude code ultimate guide - project context, purpose, repository structure, published at: https://cc.bruniaux.com/whitepapers/ and key files.
claude-code-codex-bridge AGENTS.md
Instructions for vladolaru/claude-code-codex-bridge, covering agents.md, repository overview, architecture, repository structure and package layout.
CodingScaffold AGENTS.md
Instructions for JRS1986/CodingScaffold, covering agents — codingscaffold, what this project is, verification commands, project constraints and commit messages.
AmbyKit CLAUDE.md
Instructions for ambystechcom/AmbyKit, covering claude code — notes for the ambykit repo and claude-specific.