Claude Code Skills Monorepo
A centralized repository for Claude Code extensions including skills, commands, scripts, and plugins.
✨ Features
| Component | Description |
|---|
| Skills | EPUB reader, PDF-to-Markdown converter, and axe (iOS Simulator control) |
| Plan Saver Plugin | Automatically saves plans from plan mode to project directories |
| Slash Commands | /latest-plan, /reflect, /handoff for workflow enhancement |
| Utility Scripts | Standalone scripts for plan management |
🚀 Installation
Option 1: Claude Code Marketplace (Recommended)
Install plugins using the official Claude Code plugin system:
# Add this repo as a marketplace
/plugin marketplace add aliceisjustplaying/claude-resources-monorepo
# Install plugins
/plugin install plan-saver@alice-marketplace
/plugin install handoff@alice-marketplace
Note: Skills (epub, pdf-to-markdown, axe) are not distributed via marketplaces. See "Installing Skills" below.
Option 2: Clone + Setup Script (Full Access)
For developers who want everything, or to contribute:
git clone https://github.com/aliceisjustplaying/claude-resources-monorepo.git
cd claude-resources-monorepo
./setup.sh
This will:
- Symlink skills →
~/.claude/skills/
- Symlink commands →
~/.claude/commands/
- Symlink scripts →
~/.claude/scripts/
- Symlink plugins →
~/.claude/plugins/
- Symlink skills →
~/.codex/skills/
- Symlink scripts →
~/.codex/scripts/
- Generate Codex prompts from
commands/*.md → ~/.codex/prompts/
- Run plugin installers (e.g., plan-saver daemon setup)
Installing Skills
Skills must be copied or symlinked manually. Choose one:
Personal use (available in all your projects):
# Clone the repo, then symlink specific skills
ln -s /path/to/claude-code-skills-monorepo/skills/epub ~/.claude/skills/epub
ln -s /path/to/claude-code-skills-monorepo/skills/pdf-to-markdown ~/.claude/skills/pdf-to-markdown
ln -s /path/to/claude-code-skills-monorepo/skills/axe ~/.claude/skills/axe
# Codex (user-level)
ln -s /path/to/claude-code-skills-monorepo/skills/epub ~/.codex/skills/epub
ln -s /path/to/claude-code-skills-monorepo/skills/pdf-to-markdown ~/.codex/skills/pdf-to-markdown
ln -s /path/to/claude-code-skills-monorepo/skills/axe ~/.codex/skills/axe
Per-project (shared with collaborators via git):
# Copy a skill into your project
cp -r /path/to/claude-code-skills-monorepo/skills/epub .claude/skills/
git add .claude/skills/epub
git commit -m "Add epub skill"
Codex supports repo-local skills in .codex/skills/ if you prefer to check them into a project instead.
📦 Components
Plugins
plan-saver (v2.2.0)
Automatically distributes plans created in Claude Code's plan mode to their respective project directories.
How it works:
- When Claude Code starts, a session is registered with the working directory
- The daemon watches
~/.claude/plans/ for new plan files
- When a plan is saved, it's matched to the correct project via session tracking
- Plans are copied to
{project}/.claude/plans/NNNN-title.md with auto-incrementing numbers
- When plans are updated, the existing destination is updated (no duplicate files)
Commands:
# Check daemon status
plugins/plan-saver/status.sh
# Uninstall
plugins/plan-saver/uninstall.sh
handoff (v1.0.0)
Automatically detects handoff files and prompts Claude to continue previous work.
How it works:
- On session start, checks if
.claude/handoff.md exists in the project
- If found, injects a prompt telling Claude to read it and continue
- Near-zero overhead when no handoff file exists (~5ms shell check)
Usage:
- Run
/handoff when context is running low
- Start a new session — Claude automatically picks up where you left off
- Claude deletes the handoff file after absorbing the context
Skills
epub
Read and extract content from EPUB ebook files.
| Capability | Description |
|---|
| Metadata | View title, author, publisher, description |
| TOC | List table of contents with chapter references |
| Read | Read specific chapters by number |
| Extract | Export entire book as Markdown |
| Search | Search text with surrounding context |
Requirements: Node.js, built with bun install && bun run build in skills/epub/scripts/epub-reader/
pdf-to-markdown
Convert PDF documents to clean, structured Markdown for full context loading.
| Capability | Description |
|---|
| Text | Formatting preservation (headers, bold, italic, lists) |
| Tables | IBM TableFormer AI extraction (~93.6% accuracy) |
| Images | Extraction with caching |
| Layout | Multi-column support |
Requirements: Python 3.11+, virtual environment created automatically on first use
axe
Control iOS Simulators via accessibility APIs for UI automation and testing.