xchecker CLAUDE.md

xchecker CLAUDE.md is an instructions file for coding agents from EffortlessMetrics/xchecker. It costs 2,217 tokens per session, scanned A, original, Apache-2.0.

A project instruction file for xchecker, a Rust command-line tool that turns rough feature ideas into requirements, designs, and implementation tasks. It documents the workspace structure and commands for building and testing the project.

In plain words
What is it for?
Use it when working on xchecker to understand its Rust crates and run the documented build and test commands.
Why use it?
It gives coding agents consistent information about the repository, its components, and how to verify changes.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/effortlessmetrics/xchecker/claude-md.svg)](https://agentmods.dev/instructions/effortlessmetrics/xchecker/claude-md)
Your own site
<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>
Per session 2,217 This file is loaded in full into every session.
When invoked 2,217 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.02217 $0.02217
Opus 5 $0.01108 $0.01108
Sonnet 5 $0.00443 $0.00443
Haiku 4.5 $0.00222 $0.00222

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

Security

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.

CLAUDE.md · 211 lines

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 + selectors
  • crates/xchecker-llm: provider backends (claude-cli, gemini-cli, openrouter, anthropic)
  • crates/xchecker-engine: orchestration + phases + packet + fixup + receipt + status + workspace + gate + hooks
  • src/lib.rs + src/main.rs: stable API re-exports and CLI entrypoint for xchecker

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:

  1. Builds a packet (context gathered from artifacts)
  2. Scans for secrets (blocks execution if detected)
  3. Invokes LLM (Claude CLI, Gemini CLI, HTTP providers, or dry-run simulation)
  4. Postprocesses response into artifacts
  5. Writes artifacts atomically via .partial/ staging
  6. Generates receipts with BLAKE3 hashes

Read the full file on GitHub · 211 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 · 211 lines · 2,217 tokens per session scan A 7b077e170c5c

Subscribe to this mod's changes

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.