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/agents-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/agents-md)<a href="https://agentmods.dev/instructions/effortlessmetrics/xchecker/agents-md"><img src="https://agentmods.dev/badge/instructions/effortlessmetrics/xchecker/agents-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.01859 | $0.01859 |
| Opus 5 | $0.00929 | $0.00929 |
| Sonnet 5 | $0.00372 | $0.00372 |
| Haiku 4.5 | $0.00186 | $0.00186 |
Grade A, and why
xchecker AGENTS.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 3d 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 — 191 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.
- 3d ago First seen · 191 lines · 1,859 tokens per session scan A cf91b645cc93
xchecker AGENTS.md is an instructions file published in the GitHub repository EffortlessMetrics/xchecker (1 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 1,859 tokens to every session, about $0.0093 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
AgentHarbor CLAUDE.md
Instructions for abhiunix/AgentHarbor, covering claude.md, commands, architecture, two tauri windows and adapter trait — the core abstraction.
agtrace CLAUDE.md
Instructions for lanegrid/agtrace, covering claude.md, required, project overview, quick reference and skills.
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
agentgateway copilot-instructions.md
Copilot instructions for agentgateway/agentgateway: Do not check for, speculate about, or report compilation errors during code review. Compilation diagnostics from review are frequently incorrect; rely on CI to detect and report compilation failures.
mq commit.instructions.md
Instructions for harehare/mq: Use the following format for commit messages.
codemark GEMINI.md
Gemini CLI instructions for DanielCardonaRojas/codemark, covering development workflow and debugging with the tui logging system.