원클릭으로
documents
USE WHEN document, process file. SkillSearch('documents') for docs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
USE WHEN document, process file. SkillSearch('documents') for docs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
USE WHEN PAI system, PAI algorithm, how PAI works, system overview, core configuration, PAI infrastructure.
USE WHEN upgrade, improve system, system upgrade, analyze for improvements, check Anthropic, Anthropic changes, new Claude features, check YouTube, new videos, sync PAI, sync upstream, pull PAI updates. SkillSearch('upgrade') for docs.
USE WHEN user says create custom agents, spin up custom agents, specialized agents, OR asks for agent personalities, available traits, agent voices. Handles custom agent creation, personality assignment, voice mapping, and parallel agent orchestration.
USE WHEN user wants to create visual content, illustrations, diagrams, OR mentions art, header images, visualizations, mermaid, flowchart, technical diagram, infographic, PAI icon, pack icon, or PAI pack icon.
USE WHEN TELOS, life goals, projects, dependencies, books, movies. SkillSearch('telos') for docs.
USE WHEN annual reports, security reports, threat reports, industry reports, update reports, analyze reports, vendor reports, threat landscape.
| name | Documents |
| description | USE WHEN document, process file. SkillSearch('documents') for docs. |
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.
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/PAI/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