mcpbeat Sign in

Book Companion Skill for Codex

Create companion Codex workflows from book chapters, reader exercises, prompts, field notes, and teaching material. Use when Codex needs to turn a chapter excerpt, 書籍練習, AI 提示詞, worksheet, or author note into a reusable Skill-style workflow, GitHub-shareable companion artifact, or book link resource for readers.

1k tokens
context cost
the whole folder, loaded on every use
4
files
instructions only
0
copies elsewhere
how many repositories repackaged it
256
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/twhsi/skills --skill book-companion-skill

The instruction itself

9 sections, as written by the author

Book Companion Skill

Overview

Convert book material into a reader-friendly, executable Codex workflow. Preserve the author's voice, make the task usable by someone who only has the book in front of them, and produce artifacts that can be shared through GitHub or linked from a printed/e-book chapter.

Workflow

  • Identify the source material:
  • Book title or working title
  • Chapter or section
  • Reader goal
  • Raw exercise, prompt, note, or example
  • Expected output format, if provided
  • Decide the artifact type:
  • Reader prompt: A short prompt readers can paste into Codex or ChatGPT.
  • Skill draft: A SKILL.md workflow for repeatable use.
  • Chapter companion card: A compact Markdown card for a GitHub README, QR landing page, or book appendix.
  • Exercise upgrade: A clearer, more testable version of a chapter exercise.
  • Translate the book material into action:
  • Keep the reader's first step obvious.
  • State what input the reader should provide.
  • State what Codex should produce.
  • Include constraints only when they materially improve the result.
  • Avoid assuming readers know internal author notes or private context.
  • Package the result for sharing:
  • Use stable filenames and short slugs.
  • Prefer Markdown for GitHub readability.
  • Include a clear "Use this with Codex" prompt.
  • Include install or copy instructions only when the artifact is a full Skill.
  • Keep book-facing links durable: point readers to a GitHub repo, release, or landing page rather than a local file path.

Output Patterns

Reader Prompt

Use this shape when the reader should copy one prompt from GitHub or a QR page:

## Chapter X: <exercise name>

Paste this into Codex:

> Use this chapter exercise to help me <reader goal>. My raw material is below. Ask at most two clarifying questions if needed, then produce <expected output>.

Skill Draft

Use this shape when the book material should become a reusable Codex Skill:

---
name: <short-hyphen-name>
description: <what the skill does and exact trigger scenarios>
---

# <Human Title>

## Overview

<one or two sentences>

## Workflow

<steps another Codex instance can follow>

Chapter Companion Card

Use this shape for GitHub pages, README sections, and book links:

## <Chapter / Tool / Exercise Name>

**Use when:** <reader situation>

**Input:** <what the reader brings>

**Codex prompt:** `<single concise prompt>`

**Output:** <what Codex returns>

Quality Bar

  • Make the artifact useful without private context.
  • Keep names short, lowercase, and hyphenated for Skill folders.
  • Put trigger scenarios in the description frontmatter, not only in the body.
  • Keep SKILL.md lean; move long examples or chapter-specific details to references/.
  • Do not include hidden author-only assumptions in reader-facing prompts.
  • When the output is for GitHub, include relative links and durable headings.

References

Read references/chapter-workflow-patterns.md when converting multiple chapter exercises, building a companion README, or standardizing many book links.

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ×10

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

56k tokens scripts
Skill Creator
by vercel-labs
vendor ×10

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

12k tokens scripts
Skill Creator
by JayZeeDesign
×9

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

10k tokens scripts
Template Skill
by JayZeeDesign
×7

Replace with description of the skill and when Claude should use it.

35 tokens
Dispatching Parallel Agents
by ZhanlinCui
×5

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

2k tokens
Skill Development
by anthropics
vendor ×4

This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.

9k tokens
Find Skills
by sanity-io
vendor ×4

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

1k tokens
Writing Skills
by ZhanlinCui
×4

Use when creating new skills, editing existing skills, or verifying skills work before deployment

26k tokens scripts

How to use it

Copy the folder

Take twhsi/book-companion-skill from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.