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/epfl-lara/leanprobe/agents-mdgit clone --depth 1 https://github.com/epfl-lara/LeanProbeWhat 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.01005 | $0.01005 |
| Opus 5 | $0.00502 | $0.00502 |
| Sonnet 5 | $0.00201 | $0.00201 |
| Haiku 4.5 | $0.00101 | $0.00101 |
Grade B, and why
LeanProbe AGENTS.md scanned grade B with 1 finding 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.
Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
lean-probe install-skill --skills-dir ./.claude/skills # install into an explicit skills root How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Two kinds of "agent" relate to this repo:
- Agents using LeanProbe — an LLM agent that calls the LeanProbe MCP server
to verify Lean. The usage contract lives in the LeanProbe skill
(
src/lean_probe/skill/SKILL.md). Install it into Claude Code / Codex withlean-probe install-skill(see below), or read it directly. - Agents/contributors working on this repo — keep reading.
Working on this repo
LeanProbe is a Python package (src/lean_probe/) exposing a Python API, a CLI, and an
MCP stdio server, backed by LeanInteract.
Setup
python -m venv .venv && source .venv/bin/activate
python -m pip install -U pip
python -m pip install -e ".[dev]"
Checks (all must pass; CI runs these):
ruff check src tests # lint
ruff format --check src tests # formatting (run `ruff format src tests` to fix)
mypy src
pytest -q # unit tests use a fake LeanInteract backend
The optional real-LeanInteract test is gated and needs Lean/Lake + a built project:
LEAN_PROBE_RUN_INTEGRATION=1 pytest tests/test_integration.py -q
Module layout: segmentation (file → header + declaration chunks), projects
(Lake/REPL discovery), errors (error codes + hints), payloads (response shaping,
feedback_lean, the shared ok logic), sessions (LeanInteract lifecycle + the
single-shot run_command), probe (the LeanProbe orchestrator), skills (install
the bundled skill into agent clients). core is a backwards-compatible facade that
re-exports the public names. The agent-facing skill is shipped as package data at
skill/SKILL.md so pip install lean-probe carries it (no repo checkout needed to
run lean-probe install-skill).
Conventions:
- Keep LeanProbe independent of downstream projects (no project-specific code).
- The public Python API (
LeanProbe,LeanIncrementalSegment,segment_file) is importable from the package root — keep it backwards compatible. - If you change tool semantics, payload fields, or tool names, update the skill
(
src/lean_probe/skill/SKILL.md) and the serverinstructions/TOOL_NAMESinmcp_server.pytogether (a test asserts the tool table in the skill matches the server'sTOOL_NAMES). - Release: bump
versioninpyproject.toml, updateCHANGELOG.md, then push avX.Y.Ztag —release.ymlbuilds and publishes to PyPI.
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 · 85 lines · 1,005 tokens per session scan B 0437e71927bd
LeanProbe AGENTS.md is an instructions file published in the GitHub repository epfl-lara/LeanProbe (4 stars, last pushed 2mo ago), licensed MIT. It adds 1,005 tokens to every session, about $0.0050 per session on Opus 5. A static security scan graded it B with 1 finding (enumerates other installed skills). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
formal CLAUDE.md
Instructions for yamafaktory/formal, covering formal, rust, the files that judge changes, hints and lean.
lean-interact CLAUDE.md
Instructions for nasqret/lean-interact, covering claude.md — operating instructions for this repository, 0. start of every session, 1. the formalization loop, turn length, and deferred bookkeeping and when the proof is the interesting part.
leanforge-mcp AGENTS.md
AGENTS.md instructions for sandraschi/leanforge-mcp, covering agents.md -- leanforge-mcp, stack, repo layout, critical rules and lean subprocess.
leanforge-mcp CLAUDE.md
Claude Code instructions for sandraschi/leanforge-mcp, covering claude.md -- leanforge-mcp, what this repo does, key concepts, when working on agent.py and when working on leanclient.py.
VCVio AGENTS.md
Instructions for Verified-zkEVM/VCVio, covering vcvio — ai agent guide, fast start, attribution, headers, and docstrings, module scopes and what this project is.
intervals-icu-mcp CLAUDE.md
Instructions for hhopke/intervals-icu-mcp, covering claude.md, project overview, development commands, architecture (quick reference) and tool categories.