telltale: Instructions file for Claude Code

CLAUDE.md

telltale CLAUDE.md is an instructions file for Claude Code, Codex from sanlee-ys/telltale. It costs 7,307 tokens per session, scanned A, original, MIT.

A project instruction file for the telltale Go application, covering contribution rules, build and test commands, known test timing issues, and the project's development conventions.

In plain words
What is it for?
Use it when changing telltale code, running its checks, building the Windows-targeted application, or reviewing its contribution workflow.
Why use it?
It gives a new coding agent the project context that cannot be inferred reliably from source code alone. It also documents platform expectations and how to interpret a slow local test run.

Instructions file for Claude CodeCodex

Written for Codex and Claude Code: runs codex exec, but also the file is CLAUDE.md. Also seen: mentions Claude Code; mentions Codex.

This is sanlee-ys/telltale's own configuration. It tells Claude Code and Codex how to work on telltale itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything telltale configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sanlee-ys/telltale. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sanlee-ys/telltale/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/sanlee-ys/telltale

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sanlee-ys/telltale/claude-md.svg)](https://agentmods.dev/instructions/sanlee-ys/telltale/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/sanlee-ys/telltale/claude-md"><img src="https://agentmods.dev/badge/instructions/sanlee-ys/telltale/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 7,307 This file is loaded in full into every session.
When invoked 7,307 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.07307 $0.07307
Opus 5 $0.03653 $0.03653
Sonnet 5 $0.01461 $0.01461
Haiku 4.5 $0.00731 $0.00731

Measured 2d ago against content hash 9332ba5038e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

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

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 · 444 lines

How it starts

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

telltale — contributor contract

This file is the convention layer a fresh session cannot get from Go itself. Read README.md, STATE.md, PARITY.md and docs/design.md too — this file is short on purpose and defers to them for the product's own claims. Rulings since 2026-09-02 live in LEDGER.md, one dated line each; read it before citing a design.md taste ruling, because three of them are lifted there.

Build and test

go vet ./...
go test ./...
go build -o telltale.exe ./cmd/telltale

A local go test ./... can time out in internal/council. That package spawns processes and runs ~455s on a reference workstation, close to Go's 600s default, so a loaded machine overruns it — a machine-speed condition, not a regression (CI runs the whole suite in ~4m22s). Two fan-out lanes hit it independently on 2026-08-16. Run go test ./internal/council -timeout 20m, or test the package you touched, when the full run overruns locally.

That is the whole CI gate (.github/workflows/ci.yml), which runs on windows-latestWindows is the primary target (ADR-002), not an afterthought platform. CI then smoke-tests the built binary against two fixtures and asserts honesty properties directly on stdout, e.g.:

if ($out -match '5h|7d') { throw "honest-gauge violation: quota rendered without rate_limits: $out" }

If you touch a statusline segment, expect a similar assertion to exist or to be worth adding — this repo tests the rendered string, not just that the code ran.

Run git as plain git, never git -C <path> — if you are a council seat. This is posture-dependent, and PR #223 did not change it either way — read STATE.md's "write seat's git -C allowlist gap" entry for the full measurement. In the ungated write posture (PostureWrite), Claude Code's own --allowedTools matcher answers your permission prompts, and it is prefix-only: autoAllowedTools in internal/council/vendors/claude.go grants Bash(git status:*) and friends, but that cannot match a command beginning git -C, and no rule spelling fixes it (Bash(git -C:*) stays rejected — it would pre-approve every -C verb, destructive ones included). Your cwd is already the workspace, so -C buys nothing and costs that posture's git calls an approval. In the gated posture (PostureWriteGated, the one PR #223 hardened), a different mechanism answers instead — council's own autoApproveRoutine, via safeGitArgs in internal/council/persistent.go — and it strips a leading -C <path> before classifying the command, so git -C <path> status and git status are already the same call to the gate (internal/council/gate_git_test.go pins this). That classifier predates PR #223 by a week and PR #223 never touched it, so the gated posture was never the bug this instruction describes. Write plain git regardless: a seat cannot tell which posture it is running under, plain git costs nothing extra when gated, and it saves an approval when ungated. This inverts the usual advice: outside a seat, git -C is preferred precisely to avoid cd && chains. Same trap on gh in the ungated posture — gh pr and gh run are allowlisted there, gh api is not, so reach for the porcelain rather than the API.

Read the full file on GitHub · 444 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. 2d ago Changed · +57 lines · +1,032 tokens per session 9332ba5038e1
  2. 3d ago Changed · +83 lines · +1,463 tokens per session 42e42e09d552
  3. 7d ago First seen · 304 lines · 4,812 tokens per session scan A 8886dc5bdcec

Subscribe to this mod's changes

telltale CLAUDE.md is an instructions file published in the GitHub repository sanlee-ys/telltale (1 stars, last pushed 2d ago), licensed MIT. It adds 7,307 tokens to every session, about $0.0365 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.

Related

Other instructions, from other repositories

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens