The dark index — Fathohm<br>Sign inGet your Map →GalleryThe dark indexHow it worksComprehension debtSign in
The dark index · 2026-08-12<br>How much of the most-starred code on GitHub has no human on its recent record<br>49.5%<br>of the code in the 100 most-starred repositories on GitHub has nobody on its recent record : no human wrote or prompted it in the last 180 days. Weighted by bytes, so the big repositories count for more than the small ones.
Measured on 2026-08-12 with fathohm 1.5.1, the same command anybody can run. Every row below is one repository, and you can reproduce any of them yourself in about the time it takes to clone it — or point it at your own repository.<br>This is not comprehension debt<br>Comprehension debt — code no human has recently written, reviewed, or explained, measured from the record rather than from a survey — is the thing Fathohm exists to measure, and the term is Addy Osmani’s, not ours. This page does not measure it.<br>What this measures is narrower and it is exact: the share of a repository’s code that no human has written or prompted inside the window . Git records every commit’s author and date, so there is no estimate in it — but git keeps no review record at all. A file can be dark here and still have been read closely by three people last week: reviews leave their trace on GitHub, not in the repository, so this reading is blind to them by construction.<br>The two do not move together, and we can show that rather than assert it: in the public gallery, llm.c reads 100% dark and 21% debt, while express reads 71% dark and 13% debt. Do not read one as a proxy for the other. Every comprehension-debt figure we publish comes from a gallery snapshot, never from this index.<br>How the 100 were chosen<br>The index is the 100 most-starred, non-archived repositories on GitHub with a push in the 180-day measurement window — nothing else selects. What a repository contains determines its weight in the headline, never its membership.<br>The window in that rule is the same 180 days the dark share is measured over — reused rather than introduced, so the methodology contains exactly one number and there is no second parameter anyone can accuse us of tuning. Note which way that filter cuts: a repository with no pushes in the window is 100% dark by arithmetic before any measurement runs, so excluding those can only push the headline down .<br>The rule we rejected, and why<br>An earlier draft admitted a repository only if code outweighed prose. The top of GitHub by stars is largely awesome-lists and learning resources, and without some test the index would have reported build-your-own-x , the most-starred repository on GitHub, as 100% dark on the strength of 64 bytes of stray tooling.<br>That test caught every link-list correctly — and then it caught FastAPI , which documents itself in roughly thirty languages. Switching the unit did not rescue it: by file count FastAPI reads 41% instead of 25%, the same side of the line, not one verdict changed. And there is no gap between freeCodeCamp at 16% and FastAPI at 25% to put a line in.<br>That is a predicate reporting its own root failure rather than a badly chosen threshold. Any test weighing prose against code punishes documentation, and an index published by a company that sells comprehension cannot ship a rule that penalises a project for investing in being understood.<br>So there is no such rule. The fix for “there is nowhere to draw the line” was not a better line but no line: membership is settled entirely by the published query, and what a repository contains only ever scales its weight . A link-list is a member whose influence rounds to nothing, and nobody had to decide to exclude it.<br>Reproduce any row<br>Clone the repository and read it. The clock is pinned so you get what we got, and the blobless filter keeps the whole commit history while skipping file contents — which Fathohm never reads.<br>git clone --filter=blob:none https://github.com//.git<br>npx fathohm read --now 2026-08-12T00:00:00Z<br>If your number differs from ours, the disagreement is reproducible and we would rather hear it than not. The scoring methodology is public down to the constants.<br>Read your own repository<br>The same command with no argument and no pinned clock. Run it inside any git repository and it reads that one.<br>npx fathohm read<br>It reads git metadata only — messages, authors, dates, paths and blob sizes. Not the contents of your files. It writes nothing, anywhere, and there is no account: npx fetches the package, runs it, and you are done. What you get back is the reading above, for your code — who has left the building , not who understands what.<br>If you would rather have it on your PATH than fetch it each time, it is a normal npm package.<br>npm install -g fathohm<br>fathohm read<br>What this cannot tell you<br>It cannot see reviews. Git has none, so this reading is blind to the single most common way a person comes to understand code. A repository that reviews everything carefully looks the same here as one that reviews...