headson CLAUDE.md

headson CLAUDE.md is an instructions file for coding agents from kantord/headson. It costs 1,357 tokens per session, scanned A, original, MIT.

Repository guidance for coding agents working on headson, a command-line and Python tool that creates compact previews of JSON, YAML, text, and code while retaining their structure.

In plain words
What is it for?
Use it when changing input formats, preview budgets, rendering options, binary detection, the Rust library, or Python bindings.
Why use it?
It explains how previews are shaped and identifies the command-line, library, and Python interfaces whose behaviour must stay consistent.

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/kantord/headson/claude-md
Clone the repo
git clone --depth 1 https://github.com/kantord/headson

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 headson CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kantord/headson/claude-md.svg)](https://agentmods.dev/instructions/kantord/headson/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/kantord/headson/claude-md"><img src="https://agentmods.dev/badge/instructions/kantord/headson/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,357 This file is loaded in full into every session.
When invoked 1,357 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.01357 $0.01357
Opus 5 $0.00678 $0.00678
Sonnet 5 $0.00271 $0.00271
Haiku 4.5 $0.00136 $0.00136

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

Security

Grade A, and why

headson 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 · 42 lines

How it starts

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

headson — AGENTS Guide

This is a distilled, action-oriented guide for agents working on headson. Use it to keep changes aligned with how the tool is meant to behave.

Mission

  • headson is a structure-aware head/tail for JSON, YAML, and text: given a byte/char/line budget, emit a compact preview that preserves tree shape and surfaces representative values (see README.md).
  • Ships as a Rust CLI (hson) and ABI3 Python bindings (headson.summarize(...)) so the same renderer can be embedded in shells, scripts, or notebooks.

Primary Surfaces to Mind

  • CLI (src/main.rs): Clap parser for budgets, format/template/style selection, color controls, compact/no-newline toggles, head/tail skew, multi-input filesets. Detects binaries via content_inspector; prints stdout preview and stderr notices.
  • Library (src/lib.rs): Entry headson(InputKind, RenderConfig, PriorityConfig, Budgets) -> String. InputKind covers Json, Yaml, Text { mode }, and multi-file Fileset. TextMode distinguishes plain text vs. code-like (indent-aware, atomic lines).
  • Python bindings (python/src/lib.rs, python/README.md): headson.summarize mirrors CLI knobs. Wheels via maturin; parity tests in tests_py/.

Core Pipeline (keep behaviors intact)

  1. Ingest (src/ingest): Normalize into JsonTreeArena with flat node/child arrays + metadata for filesets and code-aware rendering. Formats:
    • JSON: simd-json + Serde DeserializeSeed builder (ingest/formats/json) that can pre-sample arrays.
    • YAML: yaml-rust2 loader (ingest/formats/yaml) supporting multi-doc inputs (wrapped into arrays).
    • Text: heuristic builder (ingest/formats/text) that treats lines independently or, in CodeLike, builds indentation trees, keeps lines atomic, and stores the full line list for highlighting.
    • Filesets: ingest/fileset.rs merges per-file arenas under a synthetic object root; remembers filenames for section headers. Callers supply FilesetInputKind per file.
  2. Priority Ordering (src/order): build_order scores nodes so top-level structure survives tight budgets. Arrays bias head/mid/tail per PriorityConfig; objects keep key order; strings expand by grapheme (capped via max_string_graphemes); filesets interleave round-robin; code-aware heuristics boost block-introducing lines and penalize blanks.
  3. Budget Search (src/pruner/budget.rs::find_largest_render_under_budgets): Binary-search for the largest “top K nodes” that fit bytes/chars/lines. Measurements disable colors and optional fileset headers for exact counts (fileset-tree budgets are measured directly from the tree render; scaffolding lines are only charged when headers are charged). Once best K is found, ancestors/topology are reinserted. CLI --debug re-renders without color and emits JSON traces via debug::emit_render_debug.
  4. Rendering (src/serialization): Templates for strict JSON, pseudo (default), JS-with-comments (detailed), YAML, raw Text, and Code (line numbers + syntect highlight). Out writer centralizes whitespace/newline/omission markers/colors/line-number gutters. Fileset helpers print section headers/summaries unless suppressed; omission markers vary by style.

Read the full file on GitHub · 42 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 · 42 lines · 1,357 tokens per session scan A 4335387f9a8e

Subscribe to this mod's changes

headson CLAUDE.md is an instructions file published in the GitHub repository kantord/headson (253 stars, last pushed 1mo ago), licensed MIT. It adds 1,357 tokens to every session, about $0.0068 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.