ai-trailers CLAUDE.md

ai-trailers CLAUDE.md is an instructions file for coding agents from EslaMx7/ai-trailers. It costs 555 tokens per session, scanned A, original, MIT.

A CLAUDE.md guide for ai-trailers, a Bun command-line tool that records AI coding prompts in Git commit metadata. Git trailers are structured key-value lines added to commit messages.

In plain words
What is it for?
Developing, testing, and understanding the tool's prompt-capture workflow, stored .ai-trailers file, commit-msg hook, and supported AI tools.
Why use it?
It explains the Bun-specific commands and the flow from captured prompts to commit hooks and trailers. This helps contributors work with the project without substituting Node or npm conventions.

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/eslamx7/ai-trailers/claude-md
Clone the repo
git clone --depth 1 https://github.com/EslaMx7/ai-trailers

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 ai-trailers CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/eslamx7/ai-trailers/claude-md.svg)](https://agentmods.dev/instructions/eslamx7/ai-trailers/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/eslamx7/ai-trailers/claude-md"><img src="https://agentmods.dev/badge/instructions/eslamx7/ai-trailers/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 555 This file is loaded in full into every session.
When invoked 555 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.1 $0.00555 $0.00555
Opus 5 $0.00278 $0.00278
Sonnet 5 $0.00111 $0.00111
Haiku 4.5 $0.00056 $0.00056

Measured 5d ago against content hash 1c5197aac300, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

ai-trailers 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 5d 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 · 35 lines

How it starts

The opening of the file, as written. The whole thing — 35 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

ai-trailers is a Bun-only CLI tool (bunx ai-trailers) that captures AI coding tool prompts and embeds them as standard git trailers in commit messages. No runtime dependencies — uses only Bun built-ins and Node.js standard library.

Commands

bun ./src/cli.ts <command>    # Run CLI directly during development
bun install                   # Install dev dependencies
bun test                      # Run tests (bun:test)

Bun conventions

Default to Bun instead of Node.js for everything: bun not node, bunx not npx, bun install not npm install. Prefer Bun.file/Bun.write over node:fs readFile/writeFile. Bun auto-loads .env — don't use dotenv.

Architecture

Data flow: AI Tool hook → capture command → .ai-trailers file → commit-msg git hook → commit message trailers → file cleared.

Modules:

  • src/cli.ts — Entry point and command dispatcher. Imports all other modules. Reads version from package.json.
  • src/tools.ts — Tool registry. Single source of truth for supported tools (name, marker files, hook event, config format). To add a new tool, add one entry to the tools array.
  • src/detect.ts — Detects AI tools by checking for marker files/directories. Uses the registry from tools.ts.
  • src/extractors.ts — Reusable prompt extraction helpers: extractFromStdin({ format, path }) for JSON/text stdin, extractFromEnv(varName) for environment variables. Each tool defines which extractor to use.
  • src/capture.ts — Looks up the tool by name, calls its extractPrompt(), appends formatted git trailers to .ai-trailers. Called as ai-trailers capture --tool <name>.
  • src/install.ts — Installs/removes tool hook configs (deep-merges into existing settings files), the commit-msg git hook, and .gitignore entries. Respects core.hooksPath.

Key design: Each tool defines its own extractPrompt function in tools.ts using helpers from extractors.ts. Tools differ in how they pass the prompt (stdin JSON, env var) and their hook config format. Adding a new tool is one entry in the tools array.

Read the full file on GitHub · 35 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. 5d ago First seen · 35 lines · 555 tokens per session scan A 1c5197aac300

Subscribe to this mod's changes

ai-trailers CLAUDE.md is an instructions file published in the GitHub repository EslaMx7/ai-trailers (21 stars, last pushed 5mo ago), licensed MIT. It adds 555 tokens to every session, about $0.0028 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-30.