Book2Skills: turn books into agent skills that actually work

Book2Skills: turn books into agent skills that actually work

Book2Skills is an open-source project that distills classic book methodologies into structured AI agent skills. Each skill is a folder with a SKILL.md core file and reference documents — the agent reads the framework, applies the actual decision rules from the book, and produces reasoning traceable to specific chapters. The project is on GitHub under MIT license, currently released with Philip Fisher’s Common Stocks and Uncommon Profits, with more on the roadmap.

Telling an AI to “act like a value investor” produces a generic blend of everything it has ever read about value investing. The result is smooth, agreeable, and useless when you need a specific decision: at what P/E ratio do you walk away? What counts as a sufficient margin of safety? The AI cannot answer because “act like” is not a knowledge injection. It is a probabilistic approximation based on training data.

How book2skills works

The project converts books into skills following a standard format:

skills/your-skill-name/
├── SKILL.md              # Core file with YAML frontmatter + main framework
└── references/           # Detailed reference files, loaded on demand
    ├── framework.md
    ├── evaluation-criteria.md
    ├── common-mistakes.md
    └── ...

SKILL.md contains the core methodology: decision processes, evaluation criteria, what the author advises against. References hold deeper content loaded only when the agent needs it. Each claim is traceable to a specific chapter — no invented frameworks, no paraphrased approximations.

The quality standards are specific: faithful to source (annotated by chapter), actionable (produces specific judgments, not generalities), clear structure (headings, tables, lists), SKILL.md under 500 lines. Contributors must read the full original book — summaries and secondhand materials are rejected.

Skill vs prompt

ApproachWhat the AI receivesResult
Prompt engineering”Act like Philip Fisher”Generic impression from training data
book2skills skill15-point scuttlebutt framework + evaluation criteria + chapter-annotated rulesSpecific buy/sell judgments with traceable reasoning

Prompt engineering is cheaper and works for broad tasks. Skill injection is better when the decision framework has nuance that training data cannot capture. Fisher’s “scuttlebutt” method — talk to competitors, suppliers, and former employees before buying a stock — is a specific investigative process. An AI prompted to “do scuttlebutt research” will produce a plausible-sounding but generic investigation plan. An AI that reads the skill applies the actual 15-point checklist from the book.

Where the project is now

Currently released: Common Stocks and Uncommon Profits by Philip Fisher. Roadmap includes The Intelligent Investor (Graham), One Up On Wall Street (Lynch), Poor Charlie’s Almanack (Munger), Good to Great (Collins), and more in investing, business thinking, and mental models.

The library is small because each skill requires reading the full book and distilling it into an agent-readable format. Quality over quantity is explicit in the contribution standards.

The project accepts contributions. Anyone can submit a book request via GitHub Issues, or contribute a new skill by following the CONTRIBUTING guide: read the full book, create the skill folder, test it in Claude.ai or Claude Code, and submit a PR.

Book2Skills does not make your AI smarter. It replaces approximation with citation. Whether that matters depends on how often your AI’s “good enough” answer turns out not to be.

Installation

The skills follow the Agent Skills open standard and work with Claude.ai, Claude Code, Cursor, VS Code, and compatible tools.

# Clone the repo
git clone https://github.com/simbajigege/book2skills.git

# Copy a skill into your project
cp -r book2skills/skills/common-stocks-uncommon-profits .claude/skills/

# Or download the .skill file from Releases

For Claude.ai: Settings → Features → Custom Skills → Upload the .skill file. For any platform that supports Agent Skills: copy the skill folder to the platform’s skills directory.

The hosted library at book2skills.com/zh/ provides a browsable web version of the same skills with additional collection features.

GitHub: https://github.com/simbajigege/book2skills Website: https://book2skills.com/zh/ License: MIT (code), skill content for personal learning and research

Related Posts

22 Claude Code Skills for End-to-End Content Creation: From Generation to Publish in One Workflow

22 Claude Code Skills for End-to-End Content Creation: From Generation to Publish in One Workflow

You finish a technical blog post. Now comes the headache: generate a cover image, create illustratio ...

Why Claude's Team Is Ditching Markdown as AI Output Explodes from 10 to 1,000 Lines

Why Claude's Team Is Ditching Markdown as AI Output Explodes from 10 to 1,000 Lines

Your AI can now generate 1,000-line plans, complex flowcharts, and full code reviews in one shot. An ...

How to Turn Real-World Capabilities Into an Agent Skill

General-purpose AI agents are powerful, but they lack the one thing every team has: **procedural kno ...

Tell Claude to Draw: Diagrams with /drawio in Claude Code

Tell Claude to Draw: Diagrams with /drawio in Claude Code

You're describing an architecture to Claude Code. The response includes detailed ASCII art that almo ...

Karpathy's Fix for Claude Code: Four Principles That Kill Bloated AI Code

Andrej Karpathy put his finger on it: LLMs make wrong assumptions and run with them. They overcompli ...