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/archcodexorg/archcodex/claude-mdgit clone --depth 1 https://github.com/ArchCodexOrg/archcodexWhat 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.02323 | $0.02323 |
| Opus 5 | $0.01162 | $0.01162 |
| Sonnet 5 | $0.00465 | $0.00465 |
| Haiku 4.5 | $0.00232 | $0.00232 |
Grade A, and why
archcodex 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 — 278 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Code Instructions for ArchCodex
This project uses ArchCodex for architectural constraints.
BEFORE MODIFYING CODE
STOP. Call this MCP tool first:
archcodex_context { "projectRoot": "/absolute/path/to/project", "module": "src/path/to/module/" }
projectRootmust be an absolute path where.arch/exists (contains the SQLite database).
This gives you everything in one call:
- Project Rules - Layer hierarchy + shared constraints across all architectures
- Modification Order - DEFINES → IMPLEMENTS → ORCHESTRATES
- 🔴N Impact - How many files break if you change this one
- Layer Boundaries - CAN/CANNOT import lists
- Entity Schemas - Fields, relationships, behaviors (inline)
- Architecture Constraints - forbid, patterns, require, all hints
- Validation Command - Run after changes
Workflow
1. archcodex_context ← GET FULL CONTEXT FIRST (module or entity)
2. Read tool ← READ files (code content)
archcodex_read ← GET per-file constraints (auto-injected via pre-read hook)
3. Write code ← Follow modification order, respect constraints
4. archcodex_check ← VALIDATE AFTER CHANGES (auto-run via post-write hook)
Note:
archcodex_readreturns only architectural data (constraints, boundaries, hints) — never file content. Use the agent's nativeReadtool for code content. The pre-read hook auto-injects constraints when reading src/ files.
MCP Tools
| When | Tool Call |
|---|---|
| Before modifying | archcodex_context { "projectRoot": "/path", "module": "src/dir/" } |
| Before creating | archcodex_discover { "projectRoot": "/path", "query": "description" } |
| After changes | archcodex_check { "projectRoot": "/path", "files": ["src/**/*.ts"] } |
| Entity work | archcodex_context { "projectRoot": "/path", "entity": "EntityName" } |
| Task guidance | archcodex_action { "projectRoot": "/path", "query": "add order action" } |
| Verify wiring | archcodex_feature_audit { "projectRoot": "/path", "mutation": "duplicateOrder", "entity": "orders" } |
| Scaffold spec | archcodex_spec_scaffold_touchpoints { "projectRoot": "/path", "specId": "spec.orders.duplicateOrder", "entity": "orders" } |
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 · 278 lines · 2,323 tokens per session scan A 465c68e0833e
archcodex CLAUDE.md is an instructions file published in the GitHub repository ArchCodexOrg/archcodex (5 stars, last pushed 3mo ago), licensed MIT. It adds 2,323 tokens to every session, about $0.0116 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
symphony AGENTS.md
Instructions for broomva/symphony, covering agents.md - symphony, repository purpose, architecture, key design decisions and gathering context from the knowledge graph.
enterprise-software-playbook AGENTS.md
Instructions for bricerising/enterprise-software-playbook, covering agent instructions (enterprise-software-playbook), repo structure, start here, change rules (high signal) and verification.
ephemeral-sandbox CLAUDE.md
Instructions for Ephemeral-AI-Lab/ephemeral-sandbox, covering claude.md, project, engineering practice (required), build & test and sandbox tools.
matt-skills-with-to-goal CLAUDE.md
Instructions for tt-a1i/matt-skills-with-to-goal: Skills are organized into bucket folders under skills/.
pixir CLAUDE.md
Instructions for Ranvier-Technologies/pixir, covering pixir harness - legacy agent guide, current map and commands.
Agent-Memory-Bridge AGENTS.md
Instructions for zzhang82/Agent-Memory-Bridge, covering agent memory bridge contributor instructions, setup and checks, architecture boundaries, mutation and migration invariants and benchmark expectations.