trs CLAUDE.md

trs CLAUDE.md is an instructions file for coding agents from dPeluChe/trs. It costs 529 tokens per session, scanned A, original, MIT.

Shared instructions for the trs repository, a Rust command-line tool that shortens terminal output. They define local quality checks and explain that AGENTS.md contains the main agent guidance.

In plain words
What is it for?
Use them to run Rust formatting, Clippy linting, builds, and the full test suite; configure Git hooks and merge behavior; and decide when a code-simplification review is needed.
Why use it?
They give contributors one local gate that mirrors the repository's continuous-integration checks. This helps detect formatting, lint, build, and test failures before changes are merged.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/dpeluche/trs/claude-md
Clone the repo
git clone --depth 1 https://github.com/dPeluChe/trs

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for trs CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dpeluche/trs/claude-md.svg)](https://agentmods.dev/instructions/dpeluche/trs/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/dpeluche/trs/claude-md"><img src="https://agentmods.dev/badge/instructions/dpeluche/trs/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 529 This file is loaded in full into every session.
When invoked 529 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00529 $0.00529
Opus 5 $0.00264 $0.00264
Sonnet 5 $0.00106 $0.00106
Haiku 4.5 $0.00053 $0.00053

Measured 4d ago against content hash bb29e64304f6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

trs 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 4d 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.

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.

CLAUDE.md · 47 lines

How it starts

The opening of the file, as written. The whole thing — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

Agent instructions for this repo live in AGENTS.md. Start there. This file carries only the machine-readable config the hooks and the ship gate read.

Personal agent setup (skills, flow imports) belongs in your own global config, not here: this file is committed and shared by every contributor.

ship config

# Mirrors .github/workflows/ci.yml so a local gate fails whatever CI would.
# --all-targets is a superset of CI's plain clippy: it also lints tests.
lint: cargo fmt -- --check && cargo clippy --all-targets -- -D warnings
# No separate typecheck: clippy type-checks the crate, so a `cargo check`
# step would just repeat the same work.
build: cargo build
# --no-fail-fast so one failing suite doesn't mask the rest (matters most
# on the blocking windows-latest job).
test: cargo test --no-fail-fast
# pre-push deliberately not delegated: it already mirrors CI and is stricter.
hooks_skip: pre-push: "already mirrors CI (fmt + clippy + full suite), stricter than the ship-config gate"
merge_policy: ask   # auto | ask
loc_limit: 500
simplify: 500       # run /simplify only if changed LOC > N (off = only on request)

Git hooks

core.hooksPath points at the tracked .githooks/, so lefthook's own stubs in .git/hooks/ are never invoked. .githooks/pre-commit and .githooks/commit-msg delegate to lefthook explicitly; both no-op when lefthook isn't installed, so nobody is blocked by an optional tool.

.githooks/pre-push deliberately does NOT delegate: it already mirrors CI (fmt + clippy + the full test suite), which is stricter than the ship-config gate, and delegating would run clippy twice.

Release

Tagging vX.Y.Z triggers .github/workflows/release.yml (5 binaries + npm publish + GitHub Release). Bump Cargo.toml, regenerate CHANGELOG.md with git cliff -o CHANGELOG.md --tag vX.Y.Z, merge, then tag. A tagged run uses the workflow at the tag's commit, so fixing a failed release means re-tagging, not re-running.

Read the full file on GitHub · 47 lines

Changes

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.

  1. 4d ago First seen · 47 lines · 529 tokens per session scan A bb29e64304f6

Subscribe to this mod's changes

trs CLAUDE.md is an instructions file published in the GitHub repository dPeluChe/trs (10 stars, last pushed 6d ago), licensed MIT. It adds 529 tokens to every session, about $0.0026 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.