Claude Deep Reading — Development skill for Claude Code
Token-efficient Claude Code deep reading skills: original text is read only within forked sub-agents, with zero original text in the main session; anchor-based memory, reuse of read content, resume fr.
How to install Claude Deep Reading
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open Madao1210/claude-deep-reading and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Claude Deep Reading does
Token-efficient Claude Code deep reading skills: original text is read only within forked sub-agents, with zero original text in the main session; anchor-based memory, reuse of read content, resume from breakpoints, and usage tracking. A token-efficient deep-reading skill for Claude Code.
Alternatives in Development
- Root Cause Tracing — Use when errors occur deep in execution and you need to trace back to find the original trigger 102.5k ★
- Career-Ops For Codex — Read CLAUDE.md for all project instructions, routing, and behavioral rules 32.5k ★
- Claude Token Efficient — One CLAUDE.md file 3.8k ★
README
Deep Reading · A Token-Efficient Reading Skill for Claude Code
[中文](README.cn.md) | English
**Token efficiency first**: chapter source text is read only inside forked subagents — the main session receives nothing but explanations and memory.
The problem it solves
Pasting a long book into a chat chapter by chapter makes tokens grow linearly with the book — by the later chapters, every turn is re-carrying the earlier text. This tool splits "reading" and "recording" into two roles:
| Role | Does | Cost profile |
|---|---|---|
| Main session (moderator) | Dispatches tasks, collects explanations, saves memory, keeps the ledger | Nearly flat per chapter, independent of chapter size |
| Forked subagent (researcher) | Reads one chapter behind closed doors, returns notes + explanation | Grows with chapter size |
Measured (12 chapters, 148,321 characters of a public-domain book, on the author's machine, 2026-09-23):
- The main session grows by only ~17k tokens per chapter (steady-state mean 16,996); correlation with chapter size r = -0.36
- Source text entered the main session 0 times across all 12 chapters
- All source-text work is carried by subagents (16.5M full tokens in total, ~95% cache re-reads)
Features
- Import: EPUB / Markdown / directory → per-chapter files (idempotent; an unchanged source is never re-imported)
- Chapter-by-chapter reading: the subagent reads the chapter in slices and returns an ordered explanation plus memory with paragraph anchors (
[n]) - Cross-session resume: state lives on disk; memory carries content hashes, so a changed source invalidates old memory and triggers a re-read
- Reuse: already-read chapters are explained from memory — no re-reading
- Export:
reading.mdassembled verbatim by script; explanations can be repackaged into an EPUB - Usage accounting: every operation is appended to a ledger;
--reportprints per-chapter numbers
Quick start
Requirements: Claude Cod
Related Skills
Annotate Paper
An agent skill that turns an academic paper into a reading companion: a plain-language opening, the real forwa
Mindmap From Transcript
You are reading a rich transcript of a video. The transcript was produced from the original audio and on-scree
Delegate First
Keep the main conversation clean by forking implementation work to sub-agents. Use when you want ongoing conve
Module Analyzer
You are a deep codebase analyst. You are given a specific directory within a larger project. Your job is to pr
Proofread
Proofread text to fix flow, grammar, clarity, and awkwardness while preserving original voice and tone
Muse:Chain
Run a sequential multi-persona chain on a question. Each persona sees the original question plus a 2-3 sentenc
Related Agents
Lean Coder
Token-efficient coding agent for any project. Use for edits, refactors and bug fixes (multi-file or unfamiliar
Ashlr Code
Main AshlrCode agent — token-efficient coding, editing, search. Delegates aggressively to ashlr:explore and as
Style Sync
Checks that CSS custom properties defined in src/styles/main.css (like --accent, --bg, --text) are consistentl