Books distilled into Claude Code skills. Load a book's wisdom as actionable guidance.
Great Book Skills are Claude Code skills based on influential books. Each skill distills a book's core principles into instructions Claude can apply while working with you.
Think of it as having a writing coach, strategy advisor, or management mentor on call—except instead of asking "what would Grove say?", Claude already knows.
- Elements of Style — Strunk & White's blade for cutting prose
- On Writing Well — Zinsser's warm, exacting eye for nonfiction
- Bird by Bird — Lamott's survival guide for writers facing the blank page
- Hey Whipple, Squeeze This — Sullivan's irreverent guide to advertising copy
- The Lean Startup — Ries's methodology for building under uncertainty
- Good Strategy Bad Strategy — Rumelt's bullshit detector for strategy
- 7 Powers — Helmer's diagnostic for durable competitive advantage
- High Output Management — Grove's operating system for managers who build things
- The Manager's Path — Fournier's guide to each level of the engineering ladder
- Radical Candor — Scott's discipline for feedback that's both kind and clear
- The First 90 Days — Watkins' systematic approach to leadership transitions
- Inspired — Cagan's diagnosis of product org dysfunction
- The Mom Test — Fitzpatrick's discipline for customer conversations that reveal truth
- Thinking, Fast and Slow — Kahneman's toolkit for when intuition lies
- The Goal — Goldratt's Theory of Constraints as diagnostic tool
- Made to Stick — Heath brothers' craft of ideas that survive
- Don't Make Me Think — Krug's commonsense approach to web usability
- The Design of Everyday Things — Norman's systematic lens for user-centered design
If you're new to Claude Code skills, here's what you need to know.
Skills are instructions Claude loads when relevant. Each skill is a markdown file (SKILL.md) that teaches Claude how to approach a specific kind of work. When you're drafting nonfiction and your writing feels stiff, Claude can load On Writing Well and apply Zinsser's principles. When you're evaluating a business strategy, it can load Good Strategy Bad Strategy and run Rumelt's diagnostic.
Skills aren't always-on. Claude reads each skill's description and decides whether to load it based on what you're working on. This means you can have many skills installed without bloating every conversation—only relevant ones activate.
Skills can also be invoked directly. Type /on-writing-well to explicitly load a skill, regardless of context. Some skills support modes or arguments: /on-writing-well --revise or /mom-test "my interview transcript".
Skills use tokens. When a skill loads, its contents count against your context window. These skills are kept lean (under 300 lines each), but if you install many skills with overlapping domains (say, all three writing skills), they might all load when you're writing. That's useful if you want multiple perspectives, noisy if you don't.
Skills are registered by pointing to the folder containing SKILL.md.
For a single project — add to .claude/settings.json in your project:
{
"skills": [
"/path/to/great-book-skills/writing/on-writing-well",
"/path/to/great-book-skills/strategy/good-strategy-bad-strategy"
]
}For all your projects — add to ~/.claude/settings.json:
{
"skills": [
"/path/to/great-book-skills/writing/on-writing-well"
]
}Replace /path/to/great-book-skills with wherever you cloned this repo.
claude skill add /path/to/great-book-skills/writing/elements-of-styleThis adds the skill to your user-level settings.
Start with one or two that match your current work. If you're doing a lot of writing, install a writing skill. If you're in strategy mode, install a strategy skill.
You can install all of them globally, but:
- Skills with overlapping domains may all load at once
- More skills = more potential context usage
- Some skills are better invoked explicitly than auto-loaded
A reasonable approach: install your most-used skills globally, keep specialized ones at the project level, and invoke others directly when needed.
Once installed, skills activate automatically when the context matches their description. For Elements of Style, ask Claude to edit prose, tighten writing, or review for clarity—the skill loads without you asking.
You can also invoke directly:
/elements-of-style Review this paragraph for wordiness
Some skills have modes. On Writing Well supports three:
/on-writing-well --draft # Scaffolding questions before you write
/on-writing-well --revise # Diagnostic on an existing draft
/on-writing-well --polish # Final pass, light touch
If you don't specify, the skill will determine the mode from context or ask.
A great book skill isn't a book summary. It's a translation: taking what made the book useful and reformulating it as guidance Claude can execute.
What makes a good skill:
- Actionable — Not "good writing is clear" but "cut every word that serves no function"
- Opinionated — Captures the book's point of view, not generic advice
- Expert frame — Written as if by someone who's internalized the book, not summarized it
- Contextual — Knows when to apply (and when not to)
See CONTRIBUTING.md for the skill template and guidelines.
MIT. The skills are original distillations, not reproductions of copyrighted text.