Sandbox
@appautomaton/document-SKILLs

Document skills for Claude Code and Codex

This repo packages document manipulation skills for PDF, Word, Excel, and PowerPoint. Each skill folder contains guidance and supporting files for tasks like extraction, tracked changes, formulas, OCR, forms, and slide editing.

159 stars10 forksPythonUpdated 7d ago
Who it's for

Builders who use Claude Code or Codex to work on office documents and want repeatable help for PDF, Word, Excel, and PowerPoint files.

What it delivers

You can ask your agent to edit and analyze document files without rebuilding the workflow from scratch each time.

What it does

PDF handling

Covers text and table extraction, form filling, merge and split workflows, OCR for scanned pages, and reference notes.

Word document editing

Supports creating, editing, and analyzing DOCX files, including tracked changes, comments, formatting, and OOXML details.

PowerPoint editing

Helps with existing presentations, including slide reordering, text replacement, thumbnails, and OOXML notes.

Spreadsheet analysis

Provides spreadsheet skills for formulas, formatting, recalculation, and data analysis in XLSX files.

Claude Code plugin install

Includes a plugin manifest so Claude Code users can install the skills from the marketplace without cloning first.

Any-agent symlink setup

Shows how to clone the repo and symlink each skill into Claude Code or Codex skill directories.

How to get it

  1. 1Two commands inside Claude Code, no cloning
    /plugin marketplace add appautomaton/document-SKILLs
    /plugin install document-skills@appautomaton-skills

README

Document Processing Skills

English | 中文

A collection of Claude Code / Codex skills for document manipulation — PDF extraction/forms, Excel analysis/formulas, Word, and PowerPoint.

Quick start

Claude Code, as a plugin

Two commands inside Claude Code, no cloning:

/plugin marketplace add appautomaton/document-SKILLs
/plugin install document-skills@appautomaton-skills

Skills are then invoked as document-skills:pdf, document-skills:docx, and so on.

Any agent, via symlinks

[!TIP] Clone this repo anywhere you keep your skills, then symlink each skill into your agent's skills directory.

git clone https://github.com/appautomaton/document-SKILLs.git ~/skills/documents
cd ~/skills/documents

# Claude Code
for s in docx pdf pptx xlsx; do
  ln -s "$(pwd)/$s" ~/.claude/skills/$s
done

# Codex
for s in docx pdf pptx xlsx; do
  ln -s "$(pwd)/$s" ~/.codex/skills/$s
done

Skills

SkillWhat it does
docxCreate, edit, and analyze Word documents — tracked changes, comments, formatting
pdfExtract text/tables, fill forms, merge/split, OCR scanned pages
pptxEdit existing presentations — reorder slides, replace text, thumbnails
xlsxCreate/edit spreadsheets — formulas, formatting, data analysis

Dependencies

[!NOTE] Python scripts use uv + PEP 723 inline metadata — no virtual environments or pip install needed. Just uv run.

System tools:

# macOS: one command via the repo Brewfile.
# Installs uv and node only if missing, optional tools are commented in the file.
brew bundle

# Linux
sudo apt-get install -y pandoc poppler-utils tesseract-ocr qpdf libreoffice

Node.js packages (docx and pptx skills only):

cd docx && npm install
cd ../pptx && npm install

License

MIT — see LICENSE.

Source

Based on Anthropic's official skills.


🤖 Checkout linux.do for more fun stuff about AI!

Files in the repo

Repository payload14 top-level entries
  • .claude-plugin
  • docs
  • docx
  • pdf
  • pptx
  • xlsx
  • .gitignore
  • AGENTS.md
  • Brewfile
  • CLAUDE.md
  • LICENSE
  • README.md
  • README.zh-CN.md
  • requirements.txt

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export.

57k
ayghri/
i-have-adhd

A skill to stop your coding agent from burying the answer. ADHD-friendly output.

38k
mvanhorn/
last30days-skill

AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary

62k