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

lark-cli: The Official Lark CLI That Puts 2500+ APIs in Your Terminal

Why This Tool Exists AI has made a lot of things intuitive. But there's one thing it hasn't: cal ...

Obsidian Skills: teach agents to actually work with your knowledge base

AI agents can write code and browse web pages. But ask one to edit your actual documents — good luck ...

edulab: Turn Any Math Problem Into a 3D Interactive Lesson

A student stares at a solid geometry problem. "Find the angle between line PQ and plane ABC." The te ...

Remotion: 49k Stars and 18 Agent Skills for Video in React

Write a video in React. This is the premise of Remotion, and it has proven to be a surprisingly pow ...

HyperFrames: Write HTML, Render Video, Built for Agents

Making video is slow. Traditional video tools are timeline-driven: drag assets, tweak keyframes, re ...

Seedance2-Skill: Write Video Prompts That Actually Work

You open an AI video tool. You type "cinematic shot of a woman walking through a neon-lit street." Y ...