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/dweekly/ftr/claude-mdgit clone --depth 1 https://github.com/dweekly/ftrWhat 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.01814 | $0.01814 |
| Opus 5 | $0.00907 | $0.00907 |
| Sonnet 5 | $0.00363 | $0.00363 |
| Haiku 4.5 | $0.00181 | $0.00181 |
Grade B, and why
ftr CLAUDE.md scanned grade B 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo cargo run -- google.com # Run CLI (requires root on Unix) How it starts
The opening of the file, as written. The whole thing — 139 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
ftr (Fast TRaceroute) is a high-performance parallel ICMP traceroute written in Rust. It sends probes concurrently for ~10x speedup over traditional traceroute, with automatic ASN lookup, reverse DNS, public IP detection via STUN, and network segment classification. Available as both a CLI tool and a Rust library. Cross-platform: Linux, macOS, Windows, FreeBSD, OpenBSD.
- Version: 0.10.0 (keep in sync with
Cargo.toml) - MSRV: 1.85.0 (keep in sync with
rust-versioninCargo.toml) - Rust Edition: 2024
- License: MIT
- Repo: github.com/dweekly/ftr
Build & Test Commands
cargo build # Debug build
cargo build --release # Release build (LTO, stripped)
cargo test # All tests
cargo test --lib # Unit tests only
cargo test <test_name> # Single test by name
cargo test --test <file> # Single integration test file
cargo fmt -- --check # Check formatting (CI enforced)
cargo clippy -- -D warnings # Lint — warnings are errors in CI
cargo audit # Security vulnerability check
cargo machete # Unused dependency check
cargo doc --no-deps --all-features # Build docs (RUSTDOCFLAGS=-Dwarnings in CI)
cargo bench # Benchmarks (criterion)
sudo cargo run -- google.com # Run CLI (requires root on Unix)
sudo cargo run -- --json --max-hops 20 google.com # JSON output
Git Hooks (required)
Install before committing — they enforce fmt and clippy locally:
git config core.hooksPath .githooks
Compliance & Release Scripts
.githooks/check-compliance.sh # Full local compliance check
.githooks/release-checklist.sh # Pre-release validation
.githooks/install-tools.sh # Install dev tools (audit, machete, etc.)
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 · 139 lines · 1,814 tokens per session scan B 55a889acdfec
ftr CLAUDE.md is an instructions file published in the GitHub repository dweekly/ftr (10 stars, last pushed 3d ago), licensed MIT. It adds 1,814 tokens to every session, about $0.0091 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
kubefwd CLAUDE.md
Instructions for txn2/kubefwd, covering claude.md, project overview, integration and usage patterns, tui (terminal user interface) and tui features.
MCP-Packet-Tracer AGENTS.md
Instructions for Mats2208/MCP-Packet-Tracer, covering agents.md, what this is, build and test, layout and rules that are not negotiable.
unifly AGENTS.md
Instructions for hyperb1iss/unifly, covering agents.md, what this repository is, quick command reference, the canonical "before commit" gate and individual gates.
SpotifyScraper CLAUDE.md
Instructions for AliAkhtari78/SpotifyScraper, covering claude.md, what this project is, architecture rules (do not violate), workflow and commands.
pydantic-ai-shields CLAUDE.md
Instructions for vstorm-co/pydantic-ai-shields, covering claude.md, project overview, development commands, project structure and core components.
saorsa-core CLAUDE.md
Instructions for WithAutonomi/saorsa-core, covering claude.md, 🤖 mandatory subagent usage, when to spawn subagents, subagent rules and build and development commands.