aleph CLAUDE.md

aleph CLAUDE.md is an instructions file for coding agents from Hmbown/aleph. It costs 1,029 tokens per session, scanned A, original, MIT.

A repository guide for Aleph, an MCP server that lets language models explore large data through search, previews, and code without placing all of it in their prompt.

In plain words
What is it for?
Use it when developing Aleph, running its tests, checking types, or keeping its version files in sync.
Why use it?
It gives contributors one place to find setup commands, architecture notes, testing instructions, and development requirements. MCP is a standard way for an AI model to use external tools and data.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/hmbown/aleph/claude-md
Clone the repo
git clone --depth 1 https://github.com/Hmbown/aleph

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 aleph CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hmbown/aleph/claude-md.svg)](https://agentmods.dev/instructions/hmbown/aleph/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/hmbown/aleph/claude-md"><img src="https://agentmods.dev/badge/instructions/hmbown/aleph/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,029 This file is loaded in full into every session.
When invoked 1,029 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01029 $0.01029
Opus 5 $0.00515 $0.00515
Sonnet 5 $0.00206 $0.00206
Haiku 4.5 $0.00103 $0.00103

Measured 4d ago against content hash c08568ef6010, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aleph 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 4d 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 · 78 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

What is Aleph

Aleph is an MCP server implementing Recursive Language Models (RLMs). It loads large data (up to ~1GB) into RAM as in-memory contexts, letting LLMs explore data via search/peek/code execution without consuming the context window. Only results enter the LLM prompt, never raw content. Published on PyPI as aleph-rlm.

Build & Development Commands

# Install for development (Python 3.10+ required)
pip install -e ".[dev,mcp]"

# Run all tests
pytest tests/ -v

# Run a single test file
pytest tests/test_helpers.py -v

# Run a specific test class or method
pytest tests/test_helpers.py::TestPeek::test_peek_full -v

# Type checking
mypy aleph/

# Version is in two places — sync with:
python scripts/sync_versions.py

Tests use pytest-asyncio with asyncio_mode = "auto" (no need for @pytest.mark.asyncio). CI runs on Python 3.10, 3.11, 3.12.

Architecture

Core RLM Loop (aleph/core.py)

The Aleph class implements the RLM pattern: load context into a sandboxed REPL variable (ctx), send query+metadata to an LLM, then loop — parsing the LLM response for code blocks or FINAL(...) answers, executing code in the sandbox, feeding results back — until the answer converges or the budget is exhausted.

MCP Server (aleph/mcp/local_server.py)

AlephMCPServerLocal is the primary interface. It exposes 30+ tools to MCP clients (Claude Desktop, Cursor, VSCode, Claude Code). Entry point: aleph command. Key flags: --enable-actions (filesystem/shell tools), --workspace-mode any, --tool-docs concise.

Tool categories: context management (load/list/diff/peek/search), computation (exec_python, get_variable), reasoning (think, evaluate_progress, summarize_so_far, finalize), recursion (sub_query, sub_aleph), action tools (read_file, write_file, run_command, rg_search, run_tests), recipes (run_recipe, compile_recipe), and remote MCP orchestration.

Read the full file on GitHub · 78 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. 4d ago First seen · 78 lines · 1,029 tokens per session scan A c08568ef6010

Subscribe to this mod's changes

aleph CLAUDE.md is an instructions file published in the GitHub repository Hmbown/aleph (213 stars, last pushed 4mo ago), licensed MIT. It adds 1,029 tokens to every session, about $0.0051 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.