book-to-skill

book-to-skill is a skill for Claude Code, Codex from OutlineDriven/odin-claude-plugin. It costs 64 tokens per session (1,476 once invoked), scanned A, original, Apache-2.0.

A workflow for turning a book, course, whitepaper, or similar source into a reusable agent skill. It decides whether the source describes a procedure or mainly provides reference material, then organizes the result into instructions and supporting references.

In plain words
What is it for?
Use it to extract terminology, restrictions, procedures, completion checks, and reference material from one source document and write a validated SKILL.md.
Why use it?
It turns a long source into an agent-readable method with explicit rules and checkable steps. It also prevents a source from being treated as a procedure when it does not contain enough ordered actions.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: reads .claude/ paths; mentions subagents.

Part of the odin-agent plugin — 46 skills shipped together

Good fit Use it to extract terminology, restrictions, procedures, completion checks, and reference material from one source document and write a validated SKILL.md.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/outlinedriven/odin-claude-plugin/book-to-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OutlineDriven/odin-claude-plugin --skill book-to-skill
Clone the repo
git clone --depth 1 https://github.com/OutlineDriven/odin-claude-plugin

Made for: Claude Code, Codex.

Or install odin-agent, the plugin that ships this one along with the rest of its 46 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for book-to-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/book-to-skill/github.svg)](https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/book-to-skill)
Your own site
<a href="https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/book-to-skill"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/book-to-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for book-to-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/book-to-skill"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/book-to-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,476 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00064 $0.01476
Opus 5 $0.00032 $0.00738
Sonnet 5 $0.00013 $0.00295
Haiku 4.5 $0.00006 $0.00148

Measured 6d ago against content hash cc321e0704bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

book-to-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/odin-agent/skills/book-to-skill/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Book to skill

Contract

Field Bound contract
Trigger The user names one book, course, paper, or comparable single source document and asks to distill it into a reusable skill.
Authority Reversible local write. Writes only the chosen target skill directory (SKILL.md and optional references/). Rollback is deleting that directory. No source file is mutated or copied wholesale.
Side effect Creates files under the chosen target directory only; never copies the source document into the skill.
Done A SKILL.md that parses as YAML, carries an attribution line, passes four validation checks, and routes correctly on at least two positive and two negative probe prompts.

Inputs

  • The named source document, accessible as a file the agent can open. A document the agent cannot open stops the run.
  • Optional: a write target directory, defaulting to .claude/skills/<name>/.
  • A folder of multiple sources is out of scope; that belongs to corpus mapping, not this skill.

Procedure

  1. Read the source. List its chapters, top-level headings, or sections, whichever structure the document provides. Show one line per unit with its heading slug where one exists. Done when: an inventory covering every top-level unit is shown.
  2. Classify. Ask whether three or more ordered actions can be named, each with a checkable done-state. Three or more is procedure (a sequence the agent can follow). Fewer is reference (distinctions and rules consulted on demand). If both are present, use a procedure spine with judgment material in references/. Done when: the classification is stated with the three actions named, or with the statement that fewer than three exist.
  3. Extract into four buckets. Sort what you read into coined terms and leading words; constraints and prohibitions; procedures with their completion criteria; and deep material destined for references/. Done when: every inventoried unit has contributed to a bucket or is marked out of scope for the skill.
  4. Name it. Kebab-case matching ^[a-z0-9]+(-[a-z0-9]+)*$, at most 64 characters, identical to the directory name. Done when: the name matches the directory to be written to.
  5. Write the frontmatter. description at most 1024 characters, front-loaded, one trigger per genuinely distinct branch, phrased positively. Redirect rather than forbid: "for X, use skill Z" rather than "do not use for X". Done when: the description parses as single-quoted YAML and is within the limit.
  6. Write the body in the shape its classification selects. Include one attribution line naming title, author, and year. Paraphrase throughout; quote only a coined term or named law where the exact phrasing is the idea. The two shapes:
    • Procedure shape:
      # {Skill name}
      {One-paragraph attribution: title, author, year.}
      ## When to use
      {One trigger per branch, positively phrased.}
      ## Steps
      1. {Action} — done when {checkable condition}
      2. {Action} — done when {checkable condition}
      ## Rules
      - {Constraint or guardrail}
      
    • Reference shape:
      # {Skill name}
      {One-paragraph attribution: title, author, year.}
      ## When to use
      {One trigger per branch, positively phrased.}
      ## Reference
      {Definitions, distinctions, or judgment material consulted on demand. No ordered steps.}
      ## Rules
      - {Constraint or guardrail}
      
    • A source with both gets the procedure shape with judgment material in references/. Every step ends on a checkable done condition; a reference shape carries no steps. The frontmatter description is the only place the trigger is worded for dispatch; the body restates the when as prose but does not re-word the trigger for dispatch. Done when: the body follows its shape and carries the attribution.
  7. Disclose. Material only some branches reach moves to references/<topic>.md, linked one level deep from the body. Keep the body under 500 lines. Done when: branch-specific material lives behind a pointer and the body line count is under the cap.
  8. Validate. Check four conditions: name equals the directory name; the frontmatter parses as YAML; description is within 1024 characters; every relative link resolves on disk. Run yaml.safe_load on the frontmatter and test -f on each link target. Done when: all four pass.
  9. Probe and place. Author three to five probe prompts — at least two that must fire the skill and at least two out-of-scope prompts that must not — and run each in a subagent. Adjust the description until every probe lands correctly. Then ask for the write target, defaulting to .claude/skills/<name>/, and re-run step 8 there. Done when: probe results are reported and the checks are green at the target.

Read the full file on GitHub · 71 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago Changed · +21 lines · -14 tokens per session cc321e0704bc
  2. 10d ago First seen · 50 lines · 78 tokens per session scan A 2209c9f44982

Subscribe to this mod's changes

book-to-skill is a skill published in the GitHub repository OutlineDriven/odin-claude-plugin (35 stars, last pushed yesterday), licensed Apache-2.0. It adds 64 tokens to every session and 1,476 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens