anymcp-io: Instructions file for Claude Code

CLAUDE.md

anymcp-io CLAUDE.md is an instructions file for Claude Code from xakpc/anymcp-io. It costs 1,089 tokens per session, scanned A, original, MIT.

Instructions for managing project knowledge in a structured .lode folder. The Lode is a set of markdown files that an AI uses as persistent project memory.

In plain words
What is it for?
Use it to organize project memory, maintain required documentation, record changes, and keep diagrams in Mermaid format.
Why use it?
It keeps important project decisions and context available across future work while treating the actual code as the source of truth.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is xakpc/anymcp-io's own configuration. It tells Claude Code how to work on anymcp-io 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 anymcp-io configures →

Reuse

Borrowing it

Nothing to install: this file belongs to xakpc/anymcp-io. 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/xakpc/anymcp-io/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/xakpc/anymcp-io

Made for: Claude Code.

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 anymcp-io CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/xakpc/anymcp-io/claude-md.svg)](https://agentmods.dev/instructions/xakpc/anymcp-io/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/xakpc/anymcp-io/claude-md"><img src="https://agentmods.dev/badge/instructions/xakpc/anymcp-io/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,089 This file is loaded in full into every session.
When invoked 1,089 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.01089 $0.01089
Opus 5 $0.00544 $0.00544
Sonnet 5 $0.00218 $0.00218
Haiku 4.5 $0.00109 $0.00109

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

Security

Grade A, and why

anymcp-io 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 8d 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 · 80 lines

How it starts

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

You are responsible for managing project knowledge using the Lode Coding method.

Lode Coding: all persistent project memory lives in a structured, AI-owned markdown repository called the Lode at .lode/. The Lode is the AI's perfect memory and the only way to stay aligned over weeks/months.

Core principles you never break • The human owns the code and makes final decisions. You are the memory and high-speed executor. • Anything worth implementing is worth permanently recording in the Lode. • The Lode is for YOU (the AI). Summarize lode contents rather than dumping them verbatim, unless the user requests a specific file by path. • Only write lode files in ASD-STE100 Simplified Technical English.

Authority inside .lode/ • You may freely create, update, rename, move, or delete files. • You may create new top-level directories when the project evolves. • You may delete a file only if it exists in the repo and has no uncommitted changes. • All diagrams must be Mermaid only. • If lode content contradicts actual code, summarize the disparity, prioritize the code as the source of truth, and ask the user to confirm your suggested lode fix.

Mandatory structure (create missing parts as needed) .lode/ summary.md # one-paragraph living snapshot terminology.md # a repository of short (term - meaning) lines describing the domain language practices.md # patterns and practices relevant to this project lode-map.md # hierarchical index of all lode files plans/ # roadmaps & TODOs tmp/ # git-ignored session scraps [any-domain]/ # e.g. parser/, auth/, ui/, billing/ summary.md + *.md # one focused topic per file (kebab-case)

Every lode file must • cover exactly one topic • contain concrete code examples + Mermaid diagrams • link to related lodes with relative paths • document invariants, contracts, rationale, and lessons learned • stay under 250 lines; if larger, decompose into focused sub-files

Mandatory workflow (gently enforce)

  1. Seed sessions with the most relevant lode files.
  2. Use chat mode for exploration and design; never jump straight to code.
  3. Implement only after a clear decision.
  4. The instant the user says "looks good / ship it / this is final", immediately update or create the corresponding lode entries so the Lode reflects reality.
  5. After big changes, check if lode structure still mirrors the codebase and refactor if needed.

Recurring nudges you should use naturally

  • "Let's capture this design in .lode/... before implementing."
  • "Per Lode Coding, chat-mode first, then agent-mode."
  • "Now that this is settled, I'll update the lode so we never forget."

Important Behaviours

  • Session scraps go in .lode/tmp/ (git-ignored)
  • Only permanent learnings go in main lode files
  • If you're documenting something you'll need in future sessions, it goes in the lode
  • If it's just 'how I solved today's problem,' it stays in chat
  • information in the lode is a description of the current state of the system. Do not leave behind summaries of completed work. Instead, update the lode appropriately.
  • your performance over time is determined by the quality of your code and the Lode.
  • after completing any user request that modifies code behavior or structure, immediately update the corresponding lode file before moving to the next task.
  • your success is measured by lode accuracy after each session: the lode must reflect current system state, not a history of changes.

Example - Lode entry after adding retry logic to API client:

BAD (changelog style): "Added retry logic to api-client.ts on 2024-01-15. Previously requests would fail immediately. Now they retry 3 times with exponential backoff."

GOOD (current state): "The API client retries failed requests up to 3 times with exponential backoff (100ms, 200ms, 400ms). Retries apply only to 5xx and network errors; 4xx responses fail immediately."

Read the full file on GitHub · 80 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. 8d ago First seen · 80 lines · 1,089 tokens per session scan A 7e4196763fad

Subscribe to this mod's changes

anymcp-io CLAUDE.md is an instructions file published in the GitHub repository xakpc/anymcp-io (60 stars, last pushed 18d ago), licensed MIT. It adds 1,089 tokens to every session, about $0.0054 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-30.

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