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/hmbown/aleph/agents-mdgit clone --depth 1 https://github.com/Hmbown/alephWhat 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.00594 | $0.00594 |
| Opus 5 | $0.00297 | $0.00297 |
| Sonnet 5 | $0.00119 | $0.00119 |
| Haiku 4.5 | $0.00059 | $0.00059 |
Grade A, and why
aleph 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 — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Project instructions for Codex and other AI agents working on this repository.
What is Aleph
Aleph is an MCP server implementing Recursive Language Models (RLMs). It loads large data into RAM as in-memory contexts, letting LLMs explore data via search/peek/code execution without consuming the context window. Published on PyPI as aleph-rlm.
Build & Test
pip install -e ".[dev,mcp]"
pytest tests/ -v # ~426 tests, ~5s
ruff check aleph/ tests/ # linter
Tests use pytest-asyncio with asyncio_mode = "auto".
Architecture
- MCP Server:
aleph/mcp/local_server.py(~150K chars) — 30+ tools, recipe engine, sub-query orchestration - Core RLM Loop:
aleph/core.py— load context, LLM loop, code execution, convergence - REPL Sandbox:
aleph/repl/sandbox.py+helpers.py— sandboxed exec_python with 100+ helpers - Sub-Query:
aleph/sub_query/— CLI backends (kimi, claude, codex, gemini) and API backend - Recipes:
aleph/mcp/recipes.py— declarative pipeline validation and estimation
Key Files
| File | Purpose |
|---|---|
aleph/mcp/local_server.py |
MCP server, tool registration, recipe execution |
aleph/repl/helpers.py |
REPL helpers, Recipe DSL |
aleph/repl/sandbox.py |
Sandbox, async bridge, sub_query injection |
aleph/sub_query/cli_backend.py |
CLI sub-agent spawning |
aleph/sub_query/__init__.py |
Backend detection, SubQueryConfig |
aleph/mcp/recipes.py |
Recipe schema validation |
aleph/core.py |
Core Aleph RLM loop |
Entry Points
| Command | Module | Purpose |
|---|---|---|
aleph |
aleph.mcp.local_server:main |
MCP server (primary) |
aleph-rlm |
aleph.cli:main |
Installer/configurator |
Gotchas
- SandboxConfig timeout field is
timeout_seconds(nottimeout) - Load files with absolute paths when using MCP
load_filetool - Non-zero CLI exit codes return failure (stdout content is not treated as success)
sub_query_batch/sub_query_mapparallel path uses raw async fn to avoid event loop deadlock- MCP server needs
/mcprestart in Claude Code or Codex restart after code 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.
- 2d ago First seen · 53 lines · 594 tokens per session scan A a310114c4750
aleph AGENTS.md is an instructions file published in the GitHub repository Hmbown/aleph (213 stars, last pushed 4mo ago), licensed MIT. It adds 594 tokens to every session, about $0.0030 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
mq copilot-instructions.md
Instructions for harehare/mq, covering mq development guide, project overview, coding conventions, rust code conventions and commit message conventions.
mq commit.instructions.md
Instructions for harehare/mq: Use the following format for commit messages.
mq general.instructions.md
Instructions for harehare/mq, covering general coding conventions for mq, directory structure, feature requests and bug reports.
mq rust-crate.instructions.md
Instructions for harehare/mq, a project described as: A jq-like Markdown query language for command-line processing.
mq testing.instructions.md
Instructions for harehare/mq: Use just test-all to run tests instead of cargo test.
mq cli.instructions.md
Instructions for harehare/mq, a project described as: A jq-like Markdown query language for command-line processing.