40
0
Source

Document processing. USE WHEN document, process file. SkillSearch('documents') for docs.

Install

mkdir -p .claude/skills/documents && curl -L -o skill.zip "https://mcp.directory/api/skills/download/875" && unzip -o skill.zip -d .claude/skills/documents && rm skill.zip

Installs to .claude/skills/documents

About this skill

Customization

Before executing, check for user customizations at: ~/.claude/skills/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.

  1. 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 &
    
  2. 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 CORE Context

Before starting any task with this skill, load complete CORE context:

read ~/.claude/skills/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

šŸ”€ Document Type Routing

This skill organizes document processing across 4 document types:

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/documents/docx/Scripts/
  • OOXML tools: ~/.claude/skills/documents/docx/ooxml/
  • License: ~/.claude/skills/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/documents/pdf/Scripts/
  • License: ~/.claude/skills/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/documents/pptx/Scripts/
  • OOXML tools: ~/.claude/skills/documents/pptx/ooxml/
  • License: ~/.claude/skills/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/documents/xlsx/recalc.py
  • License: ~/.claude/skills/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

  1. Tracked Changes - Use redlining workflow for professional document review
  2. Minimal Edits - Only mark text that actually changes, preserve original RSIDs
  3. Batch Changes - Group related edits (3-10 changes) for efficient processing
  4. Verification - Always convert to markdown to verify changes applied correctly

PDF Best Practices

  1. Library Selection - pypdf for basic ops, pdfplumber for text/tables, reportlab for creation
  2. OCR for Scanned - Use pytesseract + pdf2image for scanned documents
  3. Form Filling - Follow forms.md for programmatic form completion
  4. Command Line - Use qpdf/pdftotext for simple operations

PPTX Best Practices

  1. Design First - Analyze content and choose appropriate colors/layouts before coding
  2. Web-Safe Fonts - Only use web-safe fonts (Arial, Helvetica, Times, etc.)
  3. Visual Verification - Always generate thumbnails to inspect layout issues
  4. Template Analysis - Create inventory before using templates to understand structure

XLSX Best Practices

  1. Use Formulas - ALWAYS use Excel formulas, NEVER hardcode calculated values
  2. Zero Errors - Deliver with zero formula errors (#REF!, #DIV/0!, etc.)
  3. Recalculate - Run recalc.py after creating/editing to update formula values
  4. 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

šŸ”— 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

  1. Quality First - Professional formatting and structure from the start
  2. Template Reuse - Leverage existing templates when available
  3. Validation - Always verify output (visual inspection, error checking)
  4. Automation - Use scripts for repetitive tasks

Document Editing

  1. Preserve Intent - Maintain original formatting and structure
  2. Track Changes - Use proper workflows for document review
  3. Batch Processing - Group related operations for efficiency
  4. Error Prevention - Validate before finalizing

Document Analysis

  1. Right Tool - Choose appropriate library/tool for the task
  2. Data Integrity - Preserve original data when extracting/converting
  3. Format Awareness - Understand document structure (OOXML, PDF structure, etc.)
  4. Performance - Use efficient methods for large documents

šŸ“š Full Reference Documentation

Word Documents (DOCX):

  • Main Guide: ~/.claude/skills/documents/docx/SKILL.md
  • Creation Reference: ~/.claude/skills/documents/docx/docx-js.md
  • Editing Reference: ~/.claude/skills/documents/docx/ooxml.md

PDF Processing:

  • Main Guide: ~/.claude/skills/documents/pdf/SKILL.md
  • Forms Guide: ~/.claude/skills/documents/pdf/forms.md
  • Advanced Reference: ~/.claude/skills/documents/pdf/reference.md

PowerPoint Presentations (PPTX):

  • Main Guide: ~/.claude/skills/documents/pptx/SKILL.md
  • Creation Reference: ~/.claude/skills/documents/pptx/html2pptx.md
  • Editing Reference: ~/.claude/skills/documents/pptx/ooxml.md

Excel Spreadsheets (XLSX):

  • Main Guide: ~/.claude/skills/documents/xlsx/SKILL.md
  • Recalc Script: ~/.claude/skills/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

More by danielmiessler

View all →

alex-hormozi-pitch

danielmiessler

Create irresistible offers and pitches using Alex Hormozi's methodology from $100M Offers. Guides through value equation, guarantee frameworks, pricing psychology, and creating offers "too good not to take" for any product or service.

9619

art

danielmiessler

Complete visual content system for Unsupervised Learning. FOURTEEN workflows - (1) VISUALIZE (adaptive multi-modal orchestrator), (2) MERMAID (Excalidraw-style technical diagrams), (3) Editorial illustrations, (4) Technical diagrams, (5) Visual taxonomies, (6) Timelines, (7) Frameworks, (8) Comparisons, (9) Annotated screenshots, (10) Recipe cards, (11) Aphorisms, (12) Conceptual maps, (13) Stats, (14) Comics. USE WHEN user requests any visual content: 'visualize', 'mermaid', 'flowchart', 'sequence diagram', 'state diagram', 'infographic', 'art', 'illustration', 'diagram', 'taxonomy', 'timeline', 'framework', 'comparison', 'screenshot', 'recipe', 'aphorism', 'quote card', 'map', 'stat card', 'comic'. Note: Blogging skill auto-routes header images here.

791

osint

danielmiessler

Open source intelligence gathering. USE WHEN OSINT, due diligence, background check, research person, company intel, investigate. SkillSearch('osint') for docs.

321

research

danielmiessler

Comprehensive research, analysis, and content extraction system. USE WHEN user says 'research' (ANY form - this is the MANDATORY trigger), 'do research', 'extensive research', 'quick research', 'minor research', 'research this', 'find information', 'investigate', 'extract wisdom', 'extract alpha', 'analyze content', 'can't get this content', 'use fabric', OR requests any web/content research. Supports three research modes (quick/standard/extensive), deep content analysis, intelligent retrieval, and 242+ Fabric patterns. NOTE: For due diligence, OSINT, or background checks, use OSINT skill instead.

391

knowledge-worker-salaries

danielmiessler

Comprehensive global knowledge worker salary data with total market value calculations, sector breakdowns, geographic comparisons, and authoritative sources. USE WHEN discussing knowledge worker compensation, salary benchmarking, economic analysis of professional labor markets, or AI impact on wages.

10

paiupgrade

danielmiessler

Extract system improvements from content AND monitor external sources (Anthropic ecosystem, YouTube). USE WHEN upgrade, improve system, system upgrade, analyze for improvements, check Anthropic, Anthropic changes, new Claude features, check YouTube, new videos. SkillSearch('upgrade') for docs.

10

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

250778

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

194410

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

173269

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

200227

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

156191

rust-coding-skill

UtakataKyosui

Guides Claude in writing idiomatic, efficient, well-structured Rust code using proper data modeling, traits, impl organization, macros, and build-speed best practices.

158171

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.