Document processing. USE WHEN document, process file. SkillSearch('documents') for docs.
Before executing, check for user customizations at:
~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/Documents/
If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.
You MUST send this notification BEFORE doing anything else when this skill is invoked.
Send voice notification:
curl -s -X POST http://localhost:8888/notify \
-H "Content-Type: application/json" \
-d '{"message": "Running the WORKFLOWNAME workflow in the Documents skill to ACTION"}' \
> /dev/null 2>&1 &
Output text notification:
Running the **WorkflowName** workflow in the **Documents** skill to ACTION...
This is not optional. Execute this curl command immediately upon skill invocation.
Before starting any task with this skill, load complete CORE context:
read ~/.claude/skills/CORE/SKILL.md
This skill organizes document processing across 4 document types:
Reference Documentation:
docx/SKILL.md - Complete DOCX processing guidedocx/docx-js.md - Creating new documents with JavaScriptdocx/ooxml.md - Editing existing documents with OOXMLRouting Logic:
Supporting Resources:
~/.claude/skills/documents/docx/Scripts/~/.claude/skills/documents/docx/ooxml/~/.claude/skills/documents/docx/LICENSE.txtKey Capabilities:
Reference Documentation:
pdf/SKILL.md - Complete PDF processing guidepdf/forms.md - Filling PDF formspdf/reference.md - Advanced features and troubleshootingRouting Logic:
Supporting Resources:
~/.claude/skills/documents/pdf/Scripts/~/.claude/skills/documents/pdf/LICENSE.txtKey Capabilities:
Reference Documentation:
pptx/SKILL.md - Complete PPTX processing guidepptx/html2pptx.md - Creating presentations from HTMLpptx/ooxml.md - Editing existing presentationsRouting Logic:
Supporting Resources:
~/.claude/skills/documents/pptx/Scripts/~/.claude/skills/documents/pptx/ooxml/~/.claude/skills/documents/pptx/LICENSE.txtKey Capabilities:
Reference Documentation:
xlsx/SKILL.md - Complete XLSX processing guidexlsx/recalc.py - Formula recalculation scriptRouting Logic:
Supporting Resources:
~/.claude/skills/documents/xlsx/recalc.py~/.claude/skills/documents/xlsx/LICENSE.txtKey Capabilities:
Example 1: Create proposal with tracked changes
User: "Create a consulting proposal doc with redlining"
→ Routes to DOCX workflows
→ Creates document with docx-js
→ Enables tracked changes for review workflow
→ Outputs professional .docx with revision marks
Example 2: Fill a PDF form programmatically
User: "Fill out this NDA PDF with my info"
→ Routes to PDF workflows
→ Reads form fields from PDF
→ Fills fields programmatically with pdf-lib
→ Outputs completed, flattened PDF
Example 3: Build financial model spreadsheet
User: "Create a revenue projection spreadsheet"
→ Routes to XLSX workflows
→ Creates workbook with openpyxl
→ Adds formulas (never hardcoded values)
→ Runs recalc.py to update calculations
Word Documents (DOCX):
~/.claude/skills/documents/docx/SKILL.md~/.claude/skills/documents/docx/docx-js.md~/.claude/skills/documents/docx/ooxml.mdPDF Processing:
~/.claude/skills/documents/pdf/SKILL.md~/.claude/skills/documents/pdf/forms.md~/.claude/skills/documents/pdf/reference.mdPowerPoint Presentations (PPTX):
~/.claude/skills/documents/pptx/SKILL.md~/.claude/skills/documents/pptx/html2pptx.md~/.claude/skills/documents/pptx/ooxml.mdExcel Spreadsheets (XLSX):
~/.claude/skills/documents/xlsx/SKILL.md~/.claude/skills/documents/xlsx/recalc.pyThe documents skill provides comprehensive document processing:
Reference-based organization - Each document type has complete guides and tooling
Routing is automatic - Analyzes user intent and activates appropriate document type workflow
Professional quality - Standards and best practices for production-ready documents