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/icformat/icfmcp/claude-mdgit clone --depth 1 https://github.com/icformat/icfmcpWhat 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.01523 | $0.01523 |
| Opus 5 | $0.00762 | $0.00762 |
| Sonnet 5 | $0.00305 | $0.00305 |
| Haiku 4.5 | $0.00152 | $0.00152 |
Grade A, and why
icfmcp 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 yesterday.
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 — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Guidance for Claude Code when working in this repository.
What this repo is
icfmcp is an MCP (Model Context Protocol) server, written in TypeScript (ESM, Node >= 20), that exposes ICF knowledge files to AI harnesses through their ICX indexes. It consumes the sibling icf.js library as a file dependency ("icf.js": "file:../icf.js" — the npm registry copy is older than the local build).
Specs (read before changing index semantics):
- ICF language spec v1.1:
F:\git\GreenbooksGithub\icformat.org\icf\specification\v1.1\ - ICX index spec v1.2:
F:\git\GreenbooksGithub\icformat.org\icx\specification\v1.2\— §7 Tags, §8 Summary, §9 inverted structures (tagindex[]/summaryindex[]), §15 harness usage flow. - icf.js API reference:
F:\git\GreenbooksGithub\icf.js\DOCUMENTATION.md
Build & test
npm run build # tsc -> dist/ (dist/index.js keeps the #!/usr/bin/env node shebang; bin "icfmcp")
npm test # vitest against tests/fixtures — no MCP transport needed
npm run typecheck # tsc --noEmit for src (tsconfig.json) and tests (tsconfig.test.json)
npm run dev -- tests/fixtures
Architecture
src/index.ts is only MCP wiring (CLI args → DocumentRegistry, zod tool schemas → McpServer, stdio transport). All logic lives in pure, transport-free modules — tests exercise them directly:
src/registry.ts—DocumentRegistry. Discovers.icffiles (directories scanned recursively, skipping dotdirs/node_modules), keys each by its file stem (duplicates suffixed-2,-3, … in sorted-path order), and caches parsed entries by mtime+size of both the ICF and its ICX.refresh()is called by every tool and is cheap when nothing changed; it also reloads when a sibling.icxappears/disappears and drops vanished files. Index acquisition per document: the ICF's@indexdirective target first, then the same-stem sibling.icx; if neither exists,generateIcx(doc)in memory.src/indexing.ts—extractIndexModel(icxDoc, masterTypes)turns a parsed/generated ICX document into anIndexModel(rows+tagIndex+summaryIndex). Two quirks it absorbs: a hand-written ICX exposes master rows viagetMasters()and data rows/tagindex[]/summaryindex[]inside one implicit record; agenerateIcxdocument puts all collections (master types included) in one synthetic record — hence themasterTypeshint from the source document.augmentFromSource(...)then fills gaps from the source ICF: missing Line/Offset/Size from scanned spans, missing tags by harvesting typed master references (ICX §7 generator rule), missing summaries from asummaryattribute/field, and synthesizes rows for records the index doesn't know.src/source.ts—scanRecordBlocksfinds column-0@recordlines, returning per-record byte offset/size, 1-based start line,id=, and the raw block text. Raw blocks are always taken from this scan (never by ICX byte ranges) so stale indexes can't corrupt output. Known limitation: a column-0@recordinside a preformatted text block would miscount; spans are correlated with parsed records by id first, by order only when counts agree.src/tags.ts— ICX §7 tag-cell handling. Feature-detects icf.js 1.2splitTags/joinTagsexports and falls back to a local implementation (join+, escape\,\+= literal plus). Keep the fallbacks and their direct tests even after icf.js 1.2 is everywhere.src/tools.ts— the seven tool functions, all(registry, args) -> JSON-serializable object. Recoverable problems return{ error, ... }(checked withisToolError), never throw;src/index.tsmaps that toisError: trueand always emits a single JSON text content block.
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.
- yesterday First seen · 55 lines · 1,523 tokens per session scan A ff9e095ed6ac
icfmcp CLAUDE.md is an instructions file published in the GitHub repository icformat/icfmcp (0 stars, last pushed 12d ago), licensed MIT. It adds 1,523 tokens to every session, about $0.0076 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
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.
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).
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.
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.
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).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.