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/edimuj/tokenlean/claude-mdgit clone --depth 1 https://github.com/edimuj/tokenleanWhat 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.00583 | $0.00583 |
| Opus 5 | $0.00292 | $0.00292 |
| Sonnet 5 | $0.00117 | $0.00117 |
| Haiku 4.5 | $0.00058 | $0.00058 |
Grade A, and why
tokenlean 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
shell.mjs # Safe git/rg wrappers (spawnSync, no shell injection) How it starts
The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tokenlean
CLI tools for AI agents - maximum insight with minimum tokens.
Project Structure
bin/ # CLI entry points (tl-*.mjs) - thin wrappers
src/ # Shared modules
output.mjs # Common flags (-l, -t, -j, -q, -h), formatting, token estimation
project.mjs # File categorization, language detection, skip/important logic
cache.mjs # LRU disk cache for expensive operations (ripgrep results)
traverse.mjs # Fast file traversal with filtering
config.mjs # Config file loading (.tokenleanrc.json)
shell.mjs # Safe git/rg wrappers (spawnSync, no shell injection)
generic-lang.mjs # Regex-based symbol/import extraction for non-JS/TS languages
skills/ # Agent skills
claude/ # Claude Code skill variants
codex/ # Codex skill variants
Adding a New Tool
- Create
bin/tl-<name>.mjswith shebang#!/usr/bin/env node - Import shared modules from
../src/ - Use
output.mjsfor consistent flags and formatting - Add entry to
package.jsonbin section - Run
npm linkto test locally
Conventions
- Minimal dependencies - node-html-markdown for tl-browse, otherwise Node.js built-ins only
- ES modules - use
.mjsextension,import/export - All tools support common flags:
-l(limit),-t(tokens),-j(JSON),-q(quiet),-h(help) - Users invoke tools via
tl <command>(e.g.tl symbols,tl run), which dispatches tobin/tl-<command>.mjs - For noisy logs, prefer
tl tail <file>(or piped stdin) to collapse repeats and surface error/warn lines - Exit codes: 0 success, 1 error
- Output should be token-efficient (no verbose explanations)
Shell Completions
tl completions bash|zsh outputs a completion script. Dynamic — new tools are picked up automatically.
Backend: tl --list-commands [--with-desc] and tl --list-flags <command> (extracts flags from tool source via regex).
Testing
npm link # Install locally
tl <tool> --help # Verify help works
tl <tool> [args] # Test functionality
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 · 60 lines · 583 tokens per session scan A 138012bb263c
tokenlean CLAUDE.md is an instructions file published in the GitHub repository edimuj/tokenlean (11 stars, last pushed 1mo ago), licensed MIT. It adds 583 tokens to every session, about $0.0029 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
h5i-ctx2img AGENTS.md
Instructions for Koukyosyumei/h5i-ctx2img, covering persona, h5i integration, workflow, code commits and capturing large command output (token reduction).
h5i-ctx2img CLAUDE.md
Instructions for Koukyosyumei/h5i-ctx2img, a project described as: Render agent context as images. Same text, 60–75% fewer tokens.
stealth-browser-mcp AGENTS.md
Instructions for vibheksoni/stealth-browser-mcp, covering agent instructions, start here, recommended proxy services, environment and validation.
mcp-steroid CLAUDE.md
Instructions for jonnyzzz/mcp-steroid, covering claude.md, agents.md, design philosophy, recursive context lookup (do this before sub-folder work), sub-folder guides and must do.
untether GEMINI.md
Instructions for littlebearapps/untether, covering untether — gemini instructions, stack & conventions, architecture, key rules and testing.
kinocut copilot-instructions.md
Copilot instructions for KyaniteLabs/kinocut: Read the nearest AGENTS.md for repository rules. For Kinocut workflows, load skills/kinocut/SKILL.md; it is the canonical public skill. Keep this adapter limited to host-specific discovery and do not duplicate policy here.