A collection of Claude Code / Codex AGENTIC SKILLs for document manipulation - PDF extraction/forms, Excel analysis/formulas, Word, and PowerPoint
npx skills add https://github.com/appautomaton/document-skills --skill xlsxقم بتثبيت هذه المهارة باستخدام واجهة سطر الأوامر (CLI) وابدأ في استخدام سير عمل SKILL.md في مساحة عملك.
English | 中文
A collection of Claude Code / Codex skills for document manipulation — PDF extraction/forms, Excel analysis/formulas, Word, and PowerPoint.
[!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
| Skill | What it does |
|---|---|
| docx | Create, edit, and analyze Word documents — tracked changes, comments, formatting |
| Extract text/tables, fill forms, merge/split, OCR scanned pages | |
| pptx | Edit existing presentations — reorder slides, replace text, thumbnails |
| xlsx | Create/edit spreadsheets — formulas, formatting, data analysis |
[!NOTE]
Python scripts use uv + PEP 723 inline metadata — no virtual environments orpip installneeded. Justuv run.
System tools:
# macOS
brew install pandoc poppler tesseract qpdf
brew install --cask libreoffice
# 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
Based on Anthropic's official skills.
🤖 Checkout linux.do for more fun stuff about AI!