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/infino-ai/code-context/agents-mdgit clone --depth 1 https://github.com/infino-ai/code-contextWhat 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.00815 | $0.00815 |
| Opus 5 | $0.00407 | $0.00407 |
| Sonnet 5 | $0.00163 | $0.00163 |
| Haiku 4.5 | $0.00081 | $0.00081 |
Grade A, and why
code-context 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 2d 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 — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
code-context: notes for AI agents
Read CONTRIBUTING.md first for prerequisites, the build, test commands, and the PR workflow. This file covers what isn't there: what the project is, the repo map, and the boundaries that aren't obvious from the code.
Project overview
code-context is local code search for AI coding agents: a CLI (cx) and an
MCP server over a ranked index that lives in plain files inside the repo. It
fuses keyword (BM25) and semantic (vector) search into one ranked pass and
exposes read-only SQL over the index, so an agent answers questions about a
codebase without crawling files into the context window. The index is built
and queried in-process with a local embedding model: no accounts, no API
keys, no server. It is built on the infino
engine, which runs SQL, full-text, and vector search over one copy of the
data.
The user-facing surface, quick start, and configuration live in README.md; the measured results in docs/benchmark.md; the honest limits in docs/tradeoffs.md.
Repo map
src/cli.ts: thecx/code-contextcommand entry (commander).src/mcp/server.ts: the MCP server, three tools (search,sql,reindex). Each takes an optionalpath(repo root) so one server serves multiple repos in a session, defaulting to the startup root.src/mcp/repos.ts: the per-repo registry - resolves and validates a requested root, one engine connection per repo, LRU-capped.src/mcp/ensure.ts: auto-index on first query - asearch/sqlon a never-indexed repo builds the index inline, then answers on the same call (CX_AUTO_INDEX=0restores the strict "index it first" error).src/core/: the engine-facing core.chunker(tree-sitter chunking),indexer(build + staged readiness + incremental sync),searcher(hybrid search + SQL),embedder(local model),filestate(incremental sync state),walker,manifest,config,context,output.src/commands/: CLI command implementations (index-cmd,query-cmds).test/: vitest suites.bench/: the benchmark harness.docs/: docs.
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.
- 2d ago First seen · 68 lines · 815 tokens per session scan A c495c3a7c027
code-context AGENTS.md is an instructions file published in the GitHub repository infino-ai/code-context (26 stars, last pushed 4d ago), licensed Apache-2.0. It adds 815 tokens to every session, about $0.0041 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.
Other instructions, from other repositories
CodeNib AGENTS.md
Instructions for sysevol-ai/CodeNib, covering agents.md, layered objectives, dev commands, git, commit, and pr rules and testing guidance.
Ctxo CLAUDE.md
Instructions for alperhankendi/Ctxo, covering claude.md — ctxo, project overview, quick reference, dev (pnpm workspace) and usage (consumer).
meta-llm-charter CLAUDE.md
Instructions for entropyvortex/meta-llm-charter, covering meta v3.1 core charter, bias, meta-0, r1 decompose and r2 ask gate.
gtm-cheat-codes AGENTS.md
Instructions for zapier/gtm-cheat-codes, covering agents.md and project overview.
ken CLAUDE.md
Instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).
paparats-mcp CLAUDE.md
Claude Code instructions for IBazylchuk/paparats-mcp, covering paparats-mcp, ids, architecture, typescript conventions and module structure.