Customization
Before executing, check for user customizations at:
~/.claude/PAI/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.
🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)
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.
Documents Skill
🎯 Load Full PAI Context
Before starting any task with this skill, load complete PAI context:
read ~/.claude/PAI/SKILL.md
When to Activate This Skill
Word Documents (DOCX)
- User wants to create, edit, or analyze Word documents
- User mentions "tracked changes", "redlining", "document review"
- User needs to convert documents to other formats
- User wants to work with document structure, comments, or formatting
PDF Files
- User wants to create, merge, split, or manipulate PDFs
- User mentions "extract text from PDF", "PDF tables", "fill PDF form"
- User needs to convert PDFs to/from other formats
- User wants to add watermarks, passwords, or extract images
PowerPoint Presentations (PPTX)
- User wants to create or edit presentations
- User mentions "slides", "presentation template", "speaker notes"
- User needs to convert presentations to other formats
- User wants to work with slide layouts or design elements
Excel Spreadsheets (XLSX)
- User wants to create or edit spreadsheets
- User mentions "formulas", "financial model", "data analysis"
- User needs to work with Excel tables, charts, or pivot tables
- User wants to convert spreadsheets to/from other formats
Workflow Routing
| Request Pattern |
Route To |
| Consulting report, McKinsey report, assessment report, professional PDF |
Workflows/ConsultingReport.md |
| Large PDF, process big PDF, Gemini PDF |
Workflows/ProcessLargePdfGemini3.md |
| Word document, DOCX, create docx, edit docx, tracked changes, redlining |
Docx/SKILL.md |
| PDF, create PDF, merge PDF, split PDF, extract text from PDF, fill form |
Pdf/SKILL.md |
| Presentation, PPTX, slides, PowerPoint, speaker notes |
Pptx/SKILL.md |
| Spreadsheet, XLSX, Excel, formulas, financial model, data analysis |
Xlsx/SKILL.md |
Document Type Details
This skill organizes document processing across 4 document types plus specialized workflows:
Consulting Reports (HTML + Playwright PDF)
Reference Documentation:
Workflows/ConsultingReport.md - Complete consulting report generation workflow
Routing Logic:
- "Create consulting report", "generate report PDF" → ConsultingReport workflow
- "Build assessment report", "strategic assessment" → ConsultingReport workflow
- "McKinsey-style report", "professional report PDF" → ConsultingReport workflow
Pipeline: Report Artifacts → Structured HTML → Playwright PDF
Key Capabilities:
- Parse report directories with mixed content (markdown, TypeScript data, images)
- Professional CSS typography (Georgia serif body, Inter sans headings)
- Color-coded callout boxes (red/amber/green) and severity badges
- Auto-generated linked Table of Contents
- Cover page with classification marking
- Headers/footers with CONFIDENTIAL and page numbers
- Image compression pipeline (PNG → JPEG, max 1200px)
- A4 format with Playwright for pixel-perfect PDF output
Reference Implementation: Quorum Cyber assessment at /path/to/reference/generate-pdf.mjs
Word Documents (DOCX)
Reference Documentation:
docx/SKILL.md - Complete DOCX processing guide
docx/docx-js.md - Creating new documents with JavaScript
docx/ooxml.md - Editing existing documents with OOXML
Routing Logic:
- "Create Word document", "new docx" → Create workflow (docx-js)
- "Edit Word document", "tracked changes", "redlining" → Edit workflow (OOXML)
- "Read Word document", "extract text from docx" → Read workflow (pandoc)
- "Document review", "track changes" → Redlining workflow
Supporting Resources:
- Scripts:
~/.claude/skills/Utilities/Documents/Docx/Scripts/
- OOXML tools:
~/.claude/skills/Utilities/Documents/Docx/ooxml/
- License:
~/.claude/skills/Utilities/Documents/Docx/LICENSE.txt
Key Capabilities:
- Create professional documents with docx-js
- Edit with tracked changes (redlining workflow)
- Extract text/comments with pandoc
- Convert to images for visual inspection
- Work with raw OOXML for advanced features
PDF Processing
Reference Documentation:
pdf/SKILL.md - Complete PDF processing guide
pdf/forms.md - Filling PDF forms
pdf/reference.md - Advanced features and troubleshooting
Routing Logic:
- "Create PDF" → Creation workflow (reportlab)
- "Merge PDFs", "split PDF" → Manipulation workflow (pypdf)
- "Extract text from PDF" → Extraction workflow (pdfplumber)
- "Fill PDF form" → Forms workflow (pdf-lib or pypdf)
- "Extract tables from PDF" → Table extraction (pdfplumber + pandas)
Supporting Resources:
- Scripts:
~/.claude/skills/Utilities/Documents/Pdf/Scripts/
- License:
~/.claude/skills/Utilities/Documents/Pdf/LICENSE.txt
Key Capabilities:
- Create PDFs with reportlab
- Extract text/tables with pdfplumber
- Merge/split with pypdf or qpdf
- Fill forms programmatically
- Add watermarks and password protection
- Extract images from PDFs
PowerPoint Presentations (PPTX)
Reference Documentation:
pptx/SKILL.md - Complete PPTX processing guide
pptx/html2pptx.md - Creating presentations from HTML
pptx/ooxml.md - Editing existing presentations
Routing Logic:
- "Create presentation", "new slides" → Creation workflow (html2pptx)
- "Edit presentation", "modify slides" → Edit workflow (OOXML)
- "Use presentation template" → Template workflow
- "Extract slide text" → Read workflow (markitdown)
- "Create thumbnail grid" → Thumbnail workflow
Supporting Resources:
- Scripts:
~/.claude/skills/Utilities/Documents/Pptx/Scripts/
- OOXML tools:
~/.claude/skills/Utilities/Documents/Pptx/ooxml/
- License:
~/.claude/skills/Utilities/Documents/Pptx/LICENSE.txt
Key Capabilities:
- Create presentations with html2pptx (HTML → PPTX)
- Professional design with color palettes and layouts
- Edit with OOXML for advanced features
- Work with templates (rearrange, inventory, replace)
- Generate thumbnail grids for visual analysis
- Convert to images for inspection
Excel Spreadsheets (XLSX)
Reference Documentation:
xlsx/SKILL.md - Complete XLSX processing guide
xlsx/recalc.py - Formula recalculation script
Routing Logic:
- "Create spreadsheet", "new Excel file" → Creation workflow (openpyxl)
- "Edit spreadsheet", "modify Excel" → Edit workflow (openpyxl)
- "Analyze data", "read Excel" → Analysis workflow (pandas)
- "Financial model", "formulas" → Financial modeling workflow
- "Recalculate formulas" → Recalculation workflow (recalc.py)
Supporting Resources:
- Recalc script:
~/.claude/skills/Utilities/Documents/Xlsx/recalc.py
- License:
~/.claude/skills/Utilities/Documents/Xlsx/LICENSE.txt
Key Capabilities:
- Create spreadsheets with formulas (openpyxl)
- Data analysis with pandas
- Financial modeling with color coding standards
- Formula recalculation with LibreOffice
- Error detection and validation
- Preserve formatting and formulas when editing
📋 Document Processing Principles
DOCX Best Practices
- Tracked Changes - Use redlining workflow for professional document review
- Minimal Edits - Only mark text that actually changes, preserve original RSIDs
- Batch Changes - Group related edits (3-10 changes) for efficient processing
- Verification - Always convert to markdown to verify changes applied correctly
PDF Best Practices
- Library Selection - pypdf for basic ops, pdfplumber for text/tables, reportlab for creation
- OCR for Scanned - Use pytesseract + pdf2image for scanned documents
- Form Filling - Follow forms.md for programmatic form completion
- Command Line - Use qpdf/pdftotext for simple operations
PPTX Best Practices
- Design First - Analyze content and choose appropriate colors/layouts before coding
- Web-Safe Fonts - Only use web-safe fonts (Arial, Helvetica, Times, etc.)
- Visual Verification - Always generate thumbnails to inspect layout issues
- Template Analysis - Create inventory before using templates to understand structure
XLSX Best Practices
- Use Formulas - ALWAYS use Excel formulas, NEVER hardcode calculated values
- Zero Errors - Deliver with zero formula errors (#REF!, #DIV/0!, etc.)
- Recalculate - Run recalc.py after creating/editing to update formula values
- Financial Standards - Follow color coding (blue inputs, black formulas, green links)
Examples
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
Example 4: Generate professional consulting report PDF
User: "Create a consulting report from the assessment data"
→ Routes to ConsultingReport workflow
→ Parses report directory for data files, markdown, diagrams
→ Compresses images (PNG→JPEG, max 1200px)
→ Generates styled HTML with professional typography
→ Converts to PDF via Playwright with headers/footers
→ Outputs McKinsey-quality A4 PDF with TOC, diagrams, color boxes
🔗 Integration with Other Skills
Feeds Into:
- writing skill - Creating documents for blog posts and newsletters
- business skill - Creating consulting proposals and financial models
- research skill - Extracting data from research documents
Uses:
- media skill - Creating images for document illustrations
- development skill - Building document processing automation
- system skill - Command-line tools and scripting
🎯 Key Principles
Document Creation
- Quality First - Professional formatting and structure from the start
- Template Reuse - Leverage existing templates when available
- Validation - Always verify output (visual inspection, error checking)
- Automation - Use scripts for repetitive tasks
Document Editing
- Preserve Intent - Maintain original formatting and structure
- Track Changes - Use proper workflows for document review
- Batch Processing - Group related operations for efficiency
- Error Prevention - Validate before finalizing
Document Analysis
- Right Tool - Choose appropriate library/tool for the task
- Data Integrity - Preserve original data when extracting/converting
- Format Awareness - Understand document structure (OOXML, PDF structure, etc.)
- Performance - Use efficient methods for large documents
📚 Full Reference Documentation
Word Documents (DOCX):
- Main Guide:
~/.claude/skills/Utilities/Documents/Docx/SKILL.md
- Creation Reference:
~/.claude/skills/Utilities/Documents/Docx/docx-js.md
- Editing Reference:
~/.claude/skills/Utilities/Documents/Docx/ooxml.md
PDF Processing:
- Main Guide:
~/.claude/skills/Utilities/Documents/Pdf/SKILL.md
- Forms Guide:
~/.claude/skills/Utilities/Documents/Pdf/forms.md
- Advanced Reference:
~/.claude/skills/Utilities/Documents/Pdf/reference.md
PowerPoint Presentations (PPTX):
- Main Guide:
~/.claude/skills/Utilities/Documents/Pptx/SKILL.md
- Creation Reference:
~/.claude/skills/Utilities/Documents/Pptx/html2pptx.md
- Editing Reference:
~/.claude/skills/Utilities/Documents/Pptx/ooxml.md
Excel Spreadsheets (XLSX):
- Main Guide:
~/.claude/skills/Utilities/Documents/Xlsx/SKILL.md
- Recalc Script:
~/.claude/skills/Utilities/Documents/Xlsx/recalc.py
Summary
The documents skill provides comprehensive document processing:
- DOCX - Create, edit, analyze Word documents with tracked changes support
- PDF - Create, manipulate, extract from PDFs with form filling capabilities
- PPTX - Create, edit presentations with professional design and templates
- XLSX - Create, edit spreadsheets with formulas and financial modeling
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
1---2name: documents3description: Read, write, convert, and analyze documents — routes to PDF, DOCX, XLSX, PPTX sub-skills for creation, editing, extraction, and format conversion. USE WHEN document, process file, create document, convert format, extract text, PDF, DOCX, XLSX, PPTX, Word, Excel, spreadsheet, PowerPoint, presentation, slides, consulting report, large PDF, merge PDF, fill form, tracked changes, redlining.4---56## Customization78**Before executing, check for user customizations at:**9`~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/Documents/`1011If 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.121314## 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION)1516**You MUST send this notification BEFORE doing anything else when this skill is invoked.**17181. **Send voice notification**:19 ```bash20 curl -s -X POST http://localhost:8888/notify \21 -H "Content-Type: application/json" \22 -d '{"message": "Running the WORKFLOWNAME workflow in the Documents skill to ACTION"}' \23 > /dev/null 2>&1 &24 ```25262. **Output text notification**:27 ```28 Running the **WorkflowName** workflow in the **Documents** skill to ACTION...29 ```3031**This is not optional. Execute this curl command immediately upon skill invocation.**3233# Documents Skill3435## 🎯 Load Full PAI Context3637**Before starting any task with this skill, load complete PAI context:**3839`read ~/.claude/PAI/SKILL.md`404142## When to Activate This Skill4344### Word Documents (DOCX)45- User wants to create, edit, or analyze Word documents46- User mentions "tracked changes", "redlining", "document review"47- User needs to convert documents to other formats48- User wants to work with document structure, comments, or formatting4950### PDF Files51- User wants to create, merge, split, or manipulate PDFs52- User mentions "extract text from PDF", "PDF tables", "fill PDF form"53- User needs to convert PDFs to/from other formats54- User wants to add watermarks, passwords, or extract images5556### PowerPoint Presentations (PPTX)57- User wants to create or edit presentations58- User mentions "slides", "presentation template", "speaker notes"59- User needs to convert presentations to other formats60- User wants to work with slide layouts or design elements6162### Excel Spreadsheets (XLSX)63- User wants to create or edit spreadsheets64- User mentions "formulas", "financial model", "data analysis"65- User needs to work with Excel tables, charts, or pivot tables66- User wants to convert spreadsheets to/from other formats6768## Workflow Routing6970| Request Pattern | Route To |71|---|---|72| Consulting report, McKinsey report, assessment report, professional PDF | `Workflows/ConsultingReport.md` |73| Large PDF, process big PDF, Gemini PDF | `Workflows/ProcessLargePdfGemini3.md` |74| Word document, DOCX, create docx, edit docx, tracked changes, redlining | `Docx/SKILL.md` |75| PDF, create PDF, merge PDF, split PDF, extract text from PDF, fill form | `Pdf/SKILL.md` |76| Presentation, PPTX, slides, PowerPoint, speaker notes | `Pptx/SKILL.md` |77| Spreadsheet, XLSX, Excel, formulas, financial model, data analysis | `Xlsx/SKILL.md` |7879## Document Type Details8081This skill organizes document processing across 4 document types plus specialized workflows:8283### Consulting Reports (HTML + Playwright PDF)8485**Reference Documentation:**86- `Workflows/ConsultingReport.md` - Complete consulting report generation workflow8788**Routing Logic:**89- "Create consulting report", "generate report PDF" → ConsultingReport workflow90- "Build assessment report", "strategic assessment" → ConsultingReport workflow91- "McKinsey-style report", "professional report PDF" → ConsultingReport workflow9293**Pipeline:** Report Artifacts → Structured HTML → Playwright PDF9495**Key Capabilities:**96- Parse report directories with mixed content (markdown, TypeScript data, images)97- Professional CSS typography (Georgia serif body, Inter sans headings)98- Color-coded callout boxes (red/amber/green) and severity badges99- Auto-generated linked Table of Contents100- Cover page with classification marking101- Headers/footers with CONFIDENTIAL and page numbers102- Image compression pipeline (PNG → JPEG, max 1200px)103- A4 format with Playwright for pixel-perfect PDF output104105**Reference Implementation:** Quorum Cyber assessment at `/path/to/reference/generate-pdf.mjs`106107108### Word Documents (DOCX)109110**Reference Documentation:**111- `docx/SKILL.md` - Complete DOCX processing guide112- `docx/docx-js.md` - Creating new documents with JavaScript113- `docx/ooxml.md` - Editing existing documents with OOXML114115**Routing Logic:**116- "Create Word document", "new docx" → Create workflow (docx-js)117- "Edit Word document", "tracked changes", "redlining" → Edit workflow (OOXML)118- "Read Word document", "extract text from docx" → Read workflow (pandoc)119- "Document review", "track changes" → Redlining workflow120121**Supporting Resources:**122- Scripts: `~/.claude/skills/Utilities/Documents/Docx/Scripts/`123- OOXML tools: `~/.claude/skills/Utilities/Documents/Docx/ooxml/`124- License: `~/.claude/skills/Utilities/Documents/Docx/LICENSE.txt`125126**Key Capabilities:**127- Create professional documents with docx-js128- Edit with tracked changes (redlining workflow)129- Extract text/comments with pandoc130- Convert to images for visual inspection131- Work with raw OOXML for advanced features132133### PDF Processing134135**Reference Documentation:**136- `pdf/SKILL.md` - Complete PDF processing guide137- `pdf/forms.md` - Filling PDF forms138- `pdf/reference.md` - Advanced features and troubleshooting139140**Routing Logic:**141- "Create PDF" → Creation workflow (reportlab)142- "Merge PDFs", "split PDF" → Manipulation workflow (pypdf)143- "Extract text from PDF" → Extraction workflow (pdfplumber)144- "Fill PDF form" → Forms workflow (pdf-lib or pypdf)145- "Extract tables from PDF" → Table extraction (pdfplumber + pandas)146147**Supporting Resources:**148- Scripts: `~/.claude/skills/Utilities/Documents/Pdf/Scripts/`149- License: `~/.claude/skills/Utilities/Documents/Pdf/LICENSE.txt`150151**Key Capabilities:**152- Create PDFs with reportlab153- Extract text/tables with pdfplumber154- Merge/split with pypdf or qpdf155- Fill forms programmatically156- Add watermarks and password protection157- Extract images from PDFs158159### PowerPoint Presentations (PPTX)160161**Reference Documentation:**162- `pptx/SKILL.md` - Complete PPTX processing guide163- `pptx/html2pptx.md` - Creating presentations from HTML164- `pptx/ooxml.md` - Editing existing presentations165166**Routing Logic:**167- "Create presentation", "new slides" → Creation workflow (html2pptx)168- "Edit presentation", "modify slides" → Edit workflow (OOXML)169- "Use presentation template" → Template workflow170- "Extract slide text" → Read workflow (markitdown)171- "Create thumbnail grid" → Thumbnail workflow172173**Supporting Resources:**174- Scripts: `~/.claude/skills/Utilities/Documents/Pptx/Scripts/`175- OOXML tools: `~/.claude/skills/Utilities/Documents/Pptx/ooxml/`176- License: `~/.claude/skills/Utilities/Documents/Pptx/LICENSE.txt`177178**Key Capabilities:**179- Create presentations with html2pptx (HTML → PPTX)180- Professional design with color palettes and layouts181- Edit with OOXML for advanced features182- Work with templates (rearrange, inventory, replace)183- Generate thumbnail grids for visual analysis184- Convert to images for inspection185186### Excel Spreadsheets (XLSX)187188**Reference Documentation:**189- `xlsx/SKILL.md` - Complete XLSX processing guide190- `xlsx/recalc.py` - Formula recalculation script191192**Routing Logic:**193- "Create spreadsheet", "new Excel file" → Creation workflow (openpyxl)194- "Edit spreadsheet", "modify Excel" → Edit workflow (openpyxl)195- "Analyze data", "read Excel" → Analysis workflow (pandas)196- "Financial model", "formulas" → Financial modeling workflow197- "Recalculate formulas" → Recalculation workflow (recalc.py)198199**Supporting Resources:**200- Recalc script: `~/.claude/skills/Utilities/Documents/Xlsx/recalc.py`201- License: `~/.claude/skills/Utilities/Documents/Xlsx/LICENSE.txt`202203**Key Capabilities:**204- Create spreadsheets with formulas (openpyxl)205- Data analysis with pandas206- Financial modeling with color coding standards207- Formula recalculation with LibreOffice208- Error detection and validation209- Preserve formatting and formulas when editing210211## 📋 Document Processing Principles212213### DOCX Best Practices2141. **Tracked Changes** - Use redlining workflow for professional document review2152. **Minimal Edits** - Only mark text that actually changes, preserve original RSIDs2163. **Batch Changes** - Group related edits (3-10 changes) for efficient processing2174. **Verification** - Always convert to markdown to verify changes applied correctly218219### PDF Best Practices2201. **Library Selection** - pypdf for basic ops, pdfplumber for text/tables, reportlab for creation2212. **OCR for Scanned** - Use pytesseract + pdf2image for scanned documents2223. **Form Filling** - Follow forms.md for programmatic form completion2234. **Command Line** - Use qpdf/pdftotext for simple operations224225### PPTX Best Practices2261. **Design First** - Analyze content and choose appropriate colors/layouts before coding2272. **Web-Safe Fonts** - Only use web-safe fonts (Arial, Helvetica, Times, etc.)2283. **Visual Verification** - Always generate thumbnails to inspect layout issues2294. **Template Analysis** - Create inventory before using templates to understand structure230231### XLSX Best Practices2321. **Use Formulas** - ALWAYS use Excel formulas, NEVER hardcode calculated values2332. **Zero Errors** - Deliver with zero formula errors (#REF!, #DIV/0!, etc.)2343. **Recalculate** - Run recalc.py after creating/editing to update formula values2354. **Financial Standards** - Follow color coding (blue inputs, black formulas, green links)236237## Examples238239**Example 1: Create proposal with tracked changes**240```241User: "Create a consulting proposal doc with redlining"242→ Routes to DOCX workflows243→ Creates document with docx-js244→ Enables tracked changes for review workflow245→ Outputs professional .docx with revision marks246```247248**Example 2: Fill a PDF form programmatically**249```250User: "Fill out this NDA PDF with my info"251→ Routes to PDF workflows252→ Reads form fields from PDF253→ Fills fields programmatically with pdf-lib254→ Outputs completed, flattened PDF255```256257**Example 3: Build financial model spreadsheet**258```259User: "Create a revenue projection spreadsheet"260→ Routes to XLSX workflows261→ Creates workbook with openpyxl262→ Adds formulas (never hardcoded values)263→ Runs recalc.py to update calculations264```265266**Example 4: Generate professional consulting report PDF**267```268User: "Create a consulting report from the assessment data"269→ Routes to ConsultingReport workflow270→ Parses report directory for data files, markdown, diagrams271→ Compresses images (PNG→JPEG, max 1200px)272→ Generates styled HTML with professional typography273→ Converts to PDF via Playwright with headers/footers274→ Outputs McKinsey-quality A4 PDF with TOC, diagrams, color boxes275```276277## 🔗 Integration with Other Skills278279### Feeds Into:280- **writing** skill - Creating documents for blog posts and newsletters281- **business** skill - Creating consulting proposals and financial models282- **research** skill - Extracting data from research documents283284### Uses:285- **media** skill - Creating images for document illustrations286- **development** skill - Building document processing automation287- **system** skill - Command-line tools and scripting288289## 🎯 Key Principles290291### Document Creation2921. **Quality First** - Professional formatting and structure from the start2932. **Template Reuse** - Leverage existing templates when available2943. **Validation** - Always verify output (visual inspection, error checking)2954. **Automation** - Use scripts for repetitive tasks296297### Document Editing2981. **Preserve Intent** - Maintain original formatting and structure2992. **Track Changes** - Use proper workflows for document review3003. **Batch Processing** - Group related operations for efficiency3014. **Error Prevention** - Validate before finalizing302303### Document Analysis3041. **Right Tool** - Choose appropriate library/tool for the task3052. **Data Integrity** - Preserve original data when extracting/converting3063. **Format Awareness** - Understand document structure (OOXML, PDF structure, etc.)3074. **Performance** - Use efficient methods for large documents308309## 📚 Full Reference Documentation310311**Word Documents (DOCX):**312- Main Guide: `~/.claude/skills/Utilities/Documents/Docx/SKILL.md`313- Creation Reference: `~/.claude/skills/Utilities/Documents/Docx/docx-js.md`314- Editing Reference: `~/.claude/skills/Utilities/Documents/Docx/ooxml.md`315316**PDF Processing:**317- Main Guide: `~/.claude/skills/Utilities/Documents/Pdf/SKILL.md`318- Forms Guide: `~/.claude/skills/Utilities/Documents/Pdf/forms.md`319- Advanced Reference: `~/.claude/skills/Utilities/Documents/Pdf/reference.md`320321**PowerPoint Presentations (PPTX):**322- Main Guide: `~/.claude/skills/Utilities/Documents/Pptx/SKILL.md`323- Creation Reference: `~/.claude/skills/Utilities/Documents/Pptx/html2pptx.md`324- Editing Reference: `~/.claude/skills/Utilities/Documents/Pptx/ooxml.md`325326**Excel Spreadsheets (XLSX):**327- Main Guide: `~/.claude/skills/Utilities/Documents/Xlsx/SKILL.md`328- Recalc Script: `~/.claude/skills/Utilities/Documents/Xlsx/recalc.py`329330---331332## Summary333334**The documents skill provides comprehensive document processing:**335336- **DOCX** - Create, edit, analyze Word documents with tracked changes support337- **PDF** - Create, manipulate, extract from PDFs with form filling capabilities338- **PPTX** - Create, edit presentations with professional design and templates339- **XLSX** - Create, edit spreadsheets with formulas and financial modeling340341**Reference-based organization** - Each document type has complete guides and tooling342343**Routing is automatic** - Analyzes user intent and activates appropriate document type workflow344345**Professional quality** - Standards and best practices for production-ready documents