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/effortlessmetrics/xchecker/claude-mdgit clone --depth 1 https://github.com/EffortlessMetrics/xcheckerWrote 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.
[](https://agentmods.dev/instructions/effortlessmetrics/xchecker/claude-md)<a href="https://agentmods.dev/instructions/effortlessmetrics/xchecker/claude-md"><img src="https://agentmods.dev/badge/instructions/effortlessmetrics/xchecker/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02217 | $0.02217 |
| Opus 5 | $0.01108 | $0.01108 |
| Sonnet 5 | $0.00443 | $0.00443 |
| Haiku 4.5 | $0.00222 | $0.00222 |
Grade A, and why
xchecker 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.
How it starts
The opening of the file, as written. The whole thing — 211 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
xchecker is a Rust CLI tool for orchestrating spec generation workflows using LLMs. It transforms rough feature ideas into structured requirements, designs, and implementation tasks through a multi-phase pipeline.
Workspace Layout
xchecker is a Cargo workspace with a stable facade in the root crate:
crates/xchecker-utils: foundations (paths/sandbox, atomic write, logging, redaction, runner, types)crates/xchecker-config: config model + discovery + validation + builder + selectorscrates/xchecker-llm: provider backends (claude-cli, gemini-cli, openrouter, anthropic)crates/xchecker-engine: orchestration + phases + packet + fixup + receipt + status + workspace + gate + hookssrc/lib.rs+src/main.rs: stable API re-exports and CLI entrypoint forxchecker
Build & Test Commands
# Build
cargo build # Debug build
cargo build --release # Release build
# Run all tests (fast)
cargo test --workspace --lib --bins
# Run local-green tests (no external dependencies)
cargo test --workspace --lib && cargo test --workspace --tests -- --skip requires_claude_stub --skip requires_real_claude --skip requires_xchecker_binary
# Run tests with claude-stub (requires building stub first)
cargo build --bin claude-stub --features dev-tools
cargo test --workspace --tests -- --include-ignored --skip requires_real_claude
# Run a single test
cargo test test_name -- --nocapture
# Linting and formatting
cargo fmt -- --check
cargo clippy --workspace --all-targets --all-features -- -D warnings
# Run benchmarks
cargo bench
# Documentation validation
cargo test --features dev-tools --test doc_validation -- --test-threads=1
Architecture
Phase Pipeline
xchecker executes specs through a sequential phase pipeline:
Requirements -> Design -> Tasks -> Review -> Fixup -> Final
Each phase:
- Builds a packet (context gathered from artifacts)
- Scans for secrets (blocks execution if detected)
- Invokes LLM (Claude CLI, Gemini CLI, HTTP providers, or dry-run simulation)
- Postprocesses response into artifacts
- Writes artifacts atomically via
.partial/staging - Generates receipts with BLAKE3 hashes
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.
- 5d ago First seen · 211 lines · 2,217 tokens per session scan A 7b077e170c5c
xchecker CLAUDE.md is an instructions file published in the GitHub repository EffortlessMetrics/xchecker (1 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 2,217 tokens to every session, about $0.0111 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.
Other instructions, from other repositories
invara AGENTS.md
AGENTS.md instructions for Jujitae/invara, covering invara local execution handbook, product boundary, local architecture and canonical sources, invariants and known traps and commands and definition of done.
gemini-cli-desktop AGENTS.md
Instructions for Piebald-AI/gemini-cli-desktop, a project described as: Web/desktop UI for Gemini CLI/Qwen Code. Manage projects, switch between tools, search across past conversations, and manage MCP servers, all from one multilingual interface, locally or remotely.
testivai-oss CLAUDE.md
Claude Code instructions for testivai/testivai-oss, covering testivai-oss — claude code guide, repo layout, package manager, common commands and architecture — how the oss lane works.
cordon AGENTS.md
AGENTS.md instructions for ilyautov/cordon, covering working in this repository, the three invariants, the map, commands and tests.
everything-gemini-code GEMINI.md
Gemini CLI instructions for Jamkris/everything-gemini-code, covering project instructions, prompt defense baseline and guidelines.
shift-log CLAUDE.md
Claude Code instructions for re-cinq/shift-log, covering openspec instructions, integration tests and beads task tracking.