Install any skill in seconds. Free to start, no credit card required.
Get Started Free →When you want to read and extract structured notes from a book — PDF, EPUB, MOBI, markdown, .txt, pasted text, or URL to a public-domain work. Reads in chunks (by chapter when a TOC exists, by 50-page blocks otherwise), extracts per-chapter TL;DR + key concepts + quotes + action items + frameworks, and offers to capture to second-brain raw/ as a highlights- file. Four modes — notes (default, chapter-by-chapter), summary (whole-book TL;DR + 3–5 takeaways), quotes (pull-quote highlights only), stu
.claude/skills/coreyhaines31-read-book/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | 52% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 45% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 77% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 287% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 29% | 0% |
Sibling to watch-video. Same content-consumption pattern: ingest → chunk → extract → optionally capture to second-brain.
Accept:
Read pages:"X-Y")pandoc or ebook-convert to extract — see references/sources.md)WebFetch (Project Gutenberg, archive.org, etc.)Detect type from file extension. If ambiguous, ask.
| Invocation | Mode | What you get | |---|---|---| | /read-book <input> | notes (default) | Chapter-by-chapter: TL;DR + key concepts + quotes + action items + frameworks | | /read-book <input> summary | summary | Whole-book TL;DR (1 paragraph) + 3–5 key takeaways + who-it's-for | | /read-book <input> quotes | quotes | Pull-quote highlights only, with chapter context and page refs | | /read-book <input> study | study | Notes mode + 10–20 spaced-repetition Q&A cards |
If the book is long (>200 pages) and mode is unspecified, default to notes but warn it'll take many tool calls.
See references/sources.md for per-source ingestion. Output of this step: text content + a chunking plan.
Chunking strategy (hybrid, in priority order):
pdfinfo <pdf> | grep "Pages" for PDFspdftotext -layout <pdf> | grep -i "^chapter\|^part" for chapter detection, or read TOC from page 1–5pandoc <epub> -o tmp.md, chunks are between # Chapter X headersSave the chunking plan as ~/Documents/books/<author>-<title-slug>-<YYYY-MM-DD>/chunks.json:
json{ "source": "<path>", "title": "<book title>", "author": "<author>", "type": "pdf", "total_pages": 287, "chunking": "by-chapter", "chunks": [ {"i": 0, "label": "Introduction", "pages": "1-12"}, {"i": 1, "label": "Chapter 1: The Problem", "pages": "13-32"}, ... ] }
Loop:
Read tool with pages: for PDF, full file for text/MD)references/output-modes.md for templates)~/Documents/books/<workdir>/notes-<NNN>-<label-slug>.mdFor PDFs, don't read the whole book in one call — Claude's PDF tool maxes around 10 pages. Process chunks individually.
If a chunk fails to extract anything useful (e.g., it's mostly diagrams or front-matter), log the skip and continue.
Combine all chunk notes into a single ~/Documents/books/<workdir>/notes.md matching the mode's full-book template (see references/output-modes.md).
Top of the file always has the metadata block + the second-brain-compatible frontmatter:
markdownsource: <file path or URL> captured: YYYY-MM-DD type: book book_title: <title> author: <author> mode: notes chunks: <count> chunking: <strategy> # <title> by <author> ## TL;DR <2–3 sentences> ## Key takeaways 1. ... ## Chapter notes ... ## Cross-references (suggested for wiki) - Could connect to [[Longevity Biomarkers]] (per Chapter 3 discussion of biomarkers) - Could connect to [[Productivity & Systems]] (per Chapter 7 framework)
The cross-reference suggestions are advisory — they're suggestions for /sb compile to act on, not auto-applied. Keep responsibilities separated.
Ask:
> "Want to capture this to second-brain? I'll write it to `${SECOND_BRAIN_VAULT:-$HOME/Documents/SecondBrain}/raw/highlights-<slug>.md` matching your vault's `highlights-` type prefix."
Default is ask, never auto-write. If yes:
notes.md (with the second-brain-compatible frontmatter at top) to ${SECOND_BRAIN_VAULT:-$HOME/Documents/SecondBrain}/raw/highlights-<slug>.mdIf the user skips capture, the workdir still has everything — they can grab the file later.
In chat:
<title> · <author> · <total_pages or word count> · <mode> · <chunks processed>notes / study modes: brief list of top 3 takeawaysquotes mode: top 3 quotes| Invocation | Mode | Behavior | |---|---|---| | /read-book <input> | notes | Full pipeline, default mode | | /read-book <input> summary | summary | Just TL;DR + key takeaways (1 read pass for short books, sampled chapters for long) | | /read-book <input> quotes | quotes | Chapter-by-chapter, but only output quotes | | /read-book <input> study | study | Notes + Q&A spaced-rep cards | | /read-book <input> --capture | (any) | Skip the ask step, auto-write to second-brain raw/ | | /read-book <input> --render pdf | (any) | Also render the final notes.md to PDF via pandoc (uses ~/.local/share/makerskills/render.css). See references/output-modes.md. | | /read-book <input> --render html | (any) | Same as above but HTML |
second-brain — primary integration: writes highlights-<slug>.md to raw/. Then /sb compile merges into wiki pages.deep-research — when a research question turns up a book, /read-book is the next step. Notes feed back into the research brief.business-brainstorm — when scoring an idea (e.g., business books on similar models), read-book provides the structured evidence.decide — when a decision hinges on what an authority has written (e.g., "should I take VC money?" → read Naval / Jason Cohen), read-book extracts the relevant chapter.slide-deck — book takeaways → talk material (book talk pattern).watch-video — sibling skill, same content-consumption pattern. Audiobook? Use watch-video transcript mode.nonfictionskills / fictionskills — when researching to write a book, this skill reads the comp titles.| Failure | Response | |---|---| | EPUB/MOBI without pandoc / ebook-convert | Tell the user: brew install pandoc or brew install calibre (calibre includes ebook-convert) | | PDF is scanned (no text layer) | Suggest OCR first: brew install ocrmypdf && ocrmypdf <pdf> <pdf-ocr.pdf> | | PDF has no detectable TOC | Fall back to 50-page chunks. Note in the metadata. | | Book is unusually long (>500 pages) | Warn cost / time, ask if the user wants summary mode instead of full notes | | Chunk extraction empty | Skip the chunk, log, continue. Don't fail the whole run. |
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-14 | fail→pass | 11,304 | 2,065 | -82% | 1 | 1 | 0% | 1,661 | 2,521 | +52% | 0 | 0 | — |
case-01 | fail→fail | 5,269 | 7,451 | +41% | 1 | 1 | 0% | 797 | 2,646 | +232% | 0 | 0 | — |
case-02 | fail→fail | 7,804 | 9,667 | +24% | 1 | 1 | 0% | 1,170 | 2,775 | +137% | 0 | 0 | — |
case-03 | fail→fail | 14,561 | 7,891 | -46% | 1 | 1 | 0% | 2,528 | 2,677 | +6% | 0 | 0 | — |
case-04 | fail→fail | 11,049 | 7,128 | -35% | 1 | 1 | 0% | 1,903 | 3,385 | +78% | 0 | 0 | — |
case-05 | fail→pass | 15,032 | 5,793 | -61% | 1 | 1 | 0% | 2,149 | 3,113 | +45% | 0 | 0 | — |
case-06 | fail→pass | 11,326 | 4,295 | -62% | 1 | 1 | 0% | 1,729 | 3,065 | +77% | 0 | 0 | — |
case-07 | fail→pass | 4,474 | 4,463 | -0% | 1 | 1 | 0% | 773 | 2,991 | +287% | 0 | 0 | — |
case-08 | fail→pass | 12,552 | 2,406 | -81% | 1 | 1 | 0% | 2,071 | 2,671 | +29% | 0 | 0 | — |
case-09 | pass→pass | 6,391 | 5,112 | -20% | 1 | 1 | 0% | 1,105 | 3,045 | +176% | 0 | 0 | — |
case-10 | pass→pass | 6,374 | 2,287 | -64% | 1 | 1 | 0% | 1,018 | 2,631 | +158% | 0 | 0 | — |
case-11 | pass→pass | 3,350 | 2,046 | -39% | 1 | 1 | 0% | 546 | 2,556 | +368% | 0 | 0 | — |
case-12 | fail→pass | 9,446 | 2,966 | -69% | 1 | 1 | 0% | 1,353 | 2,707 | +100% | 0 | 0 | — |
case-13 | fail→fail | 19,781 | 6,742 | -66% | 1 | 1 | 0% | 3,524 | 2,588 | -27% | 0 | 0 | — |
case-15 | pass→pass | 11,483 | 3,137 | -73% | 1 | 1 | 0% | 1,610 | 2,682 | +67% | 0 | 0 | — |
case-16 | pass→pass | 12,352 | 5,694 | -54% | 1 | 1 | 0% | 1,879 | 3,101 | +65% | 0 | 0 | — |
case-17 | fail→pass | 9,666 | 3,762 | -61% | 1 | 1 | 0% | 1,439 | 2,934 | +104% | 0 | 0 | — |
case-18 | fail→fail | 6,819 | 4,795 | -30% | 1 | 1 | 0% | 890 | 2,796 | +214% | 0 | 0 | — |
case-19 | pass→fail | 7,526 | 6,173 | -18% | 1 | 1 | 0% | 1,318 | 2,451 | +86% | 0 | 0 | — |
case-20 | pass→pass | 22,668 | 26,070 | +15% | 1 | 1 | 0% | 4,270 | 7,343 | +72% | 0 | 0 | — |
case-21 | pass→pass | 11,134 | 13,755 | +24% | 1 | 1 | 0% | 2,078 | 4,258 | +105% | 0 | 0 | — |
case-22 | fail→pass | 12,316 | 5,195 | -58% | 1 | 1 | 0% | 2,430 | 3,186 | +31% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 17 counted toward the lift figure. The other 5 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +32 percentage points is the difference between those two pass rates over the 17 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.