{
  "markdown": "# Document Processing Skills\n\nEnglish | [中文](README.zh-CN.md)\n\nA collection of Claude Code / Codex skills for document manipulation — PDF extraction/forms, Excel analysis/formulas, Word, and PowerPoint.\n\n## Quick start\n\n### Claude Code, as a plugin\n\nTwo commands inside Claude Code, no cloning:\n\n```\n/plugin marketplace add appautomaton/document-SKILLs\n/plugin install document-skills@appautomaton-skills\n```\n\nSkills are then invoked as `document-skills:pdf`, `document-skills:docx`, and so on.\n\n### Any agent, via symlinks\n\n> [!TIP]\n> Clone this repo anywhere you keep your skills, then symlink each skill into your agent's skills directory.\n\n```bash\ngit clone https://github.com/appautomaton/document-SKILLs.git ~/skills/documents\ncd ~/skills/documents\n\n# Claude Code\nfor s in docx pdf pptx xlsx; do\n  ln -s \"$(pwd)/$s\" ~/.claude/skills/$s\ndone\n\n# Codex\nfor s in docx pdf pptx xlsx; do\n  ln -s \"$(pwd)/$s\" ~/.codex/skills/$s\ndone\n```\n\n## Skills\n\n| Skill | What it does |\n|---|---|\n| [docx](docx/) | Create, edit, and analyze Word documents — tracked changes, comments, formatting |\n| [pdf](pdf/) | Extract text/tables, fill forms, merge/split, OCR scanned pages |\n| [pptx](pptx/) | Edit existing presentations — reorder slides, replace text, thumbnails |\n| [xlsx](xlsx/) | Create/edit spreadsheets — formulas, formatting, data analysis |\n\n## Dependencies\n\n> [!NOTE]\n> Python scripts use [uv](https://docs.astral.sh/uv/) + PEP 723 inline metadata — no virtual environments or `pip install` needed. Just `uv run`.\n\nSystem tools:\n\n```bash\n# macOS: one command via the repo Brewfile.\n# Installs uv and node only if missing, optional tools are commented in the file.\nbrew bundle\n\n# Linux\nsudo apt-get install -y pandoc poppler-utils tesseract-ocr qpdf libreoffice\n```\n\nNode.js packages (docx and pptx skills only):\n\n```bash\ncd docx && npm install\ncd ../pptx && npm install\n```\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n\n## Source\n\nBased on [Anthropic's official skills](https://github.com/anthropics/skills).\n\n---\n\n🤖 Checkout [linux.do](https://linux.do) for more fun stuff about AI!\n",
  "bytes": 2083,
  "sha": "612618fe3031a4cd9a111274cc39eee0b0e93bfded635e415b53692dfd300b84",
  "repo_slug": "appautomaton/document-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_appautomaton_document_skills_docx_48ac6acd/readme"
}