@neil_xbt: Someone turned 383 scattered files and 100 meeting transcripts into a compact wiki and cut their Claude token usage by …
Summary
A technique called the LLM Wiki pattern compiles raw documents into a structured wiki with an index, cutting Claude token usage by 95% by paying structural understanding costs only once during compilation instead of on every query.
View Cached Full Text
Cached at: 06/25/26, 09:15 AM
Someone turned 383 scattered files and 100 meeting transcripts into a compact wiki and cut their Claude token usage by 95%!
The folder structure that did it got Andrej Karpathy 16 million views.
Every AI knowledge tool that processes raw documents on every query burns tokens on structural understanding already paid for the last time you asked.
Roughly 75% of tokens in a typical query go toward understanding structure, not generating the answer. The LLM Wiki pattern pays that cost once, during compilation, and never again.
→ raw folder: immutable source documents the LLM reads but never modifies → wiki folder: structured markdown pages with cross-references the LLM builds and maintains
→ index file: a lightweight map the model loads first, pulling only the relevant pages → the 75% finding: LLMs spend 75% of tokens on structural understanding, not answers — the wiki eliminates that cost after the first build
The gap between people re-processing their own documents on every query and people querying a compiled wiki at 95% lower cost is not technical complexity.
It is two folders and thirty minutes of setup.
Bookmark so you do not lose it!
Follow @neil_xbt for more AI engineering intelligence that shows you what the 16-million-view folder structure actually requires to build.
Similar Articles
@noisyb0y1: CLAUDE CODE DEVELOPER MAKING $1.4M/YEAR SHOWED THE SYSTEM THAT SAVES 95% OF TOKENS one MD file into Claude Code - and t…
A developer claims a system saved 95% of tokens in Claude Code by providing a single Markdown file with secret Anthropic documentation, making the agent precise and boosting productivity 10x.
@PrajwalTomar_: Wait this is actually INSANE. Most of your Claude Code bill is you paying to re-read the same code. Every edit, it read…
A tweet points out that most Claude Code token costs come from re-reading the entire codebase on each edit, and highlights a new category of tools that use codebase mapping, context pruning, and project memory to drastically cut token usage, with a list of 10 tools in the linked article.
Cut my Claude Code token burn by 30-40% — the stack that's actually real (2026)
Sharing a practical stack to reduce Claude Code token usage by 30-40%, focusing on real-world efficiency gains for AI coding.
@PawelHuryn: 187,000 people have starred one CLAUDE.md file on GitHub. A CLAUDE.md loads on every turn. Every line is rent you pay o…
A Twitter thread by Paweł Huryn shares insights on writing effective CLAUDE.md files for Claude Code, emphasizing project-specific rules and avoiding unnecessary bloat.
@Asteri_eth: Karpathy found a way to reduce token consumption by 90% The problem is that the LLM re-reads the same files over and ov…
Karpathy's 'Wiki Layer' method reduces LLM token usage by up to 90% by having the model clean, structure, and link data into a local Markdown knowledge base, eliminating repeated reading of raw files.