EasyGlobe EasyGlobe
Back to Skills Hub

Skill Detail

Document Skills

PDF Processing Guide · github

Creates and parses PDFs, DOCX, XLSX, and PPTX files.

Skill Overview

Creates and parses PDFs, DOCX, XLSX, and PPTX files.

Document Search Terms

This page targets users searching for Document Skills, download, installation, README, Skill URL, and usage guide.

Document SkillsDocument skillsDocument downloadDocument installationDocument usage guideDocument READMEDocument Skill URLDocument Claude SkillDocument Codex SkillDocument Gemini Skill

Resource Type

Anthropic Skills

Categories

Productivity, Office & Documents

Tags

PDF, DOCX, XLSX, PPTX

The download is a local Markdown skill file saved by EasyGlobe and deployable with the site to GitHub and Cloudflare.

Detailed Skill Introduction

What Document Skills is for

Document Skills is an AI agent skill resource for Productivity, Office & Documents workflows. Based on the archived project material, its core value is: Creates and parses PDFs, DOCX, XLSX, and PPTX files.. People landing on this page are likely searching for Document Skills, Document Skills download, Document Skills installation, Document Skills README, Document Skills Skill URL, or platform-specific terms such as Claude Skills, Codex Skills, Gemini Skills, Kimi Skills, and GLM Skills. This detail page brings those signals together so a user can understand what the skill does before opening the original project.

README summary

This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.

Workflow fit and practical value

The current taxonomy places Document Skills under Productivity, Office & Documents, with tags such as PDF, DOCX, XLSX, PPTX. That means the skill should be evaluated through the lens of repeatable work: what task it helps an AI agent perform, what context the agent needs, what output a user should expect, and whether the workflow can be reused as a team SOP. The archived README is used as the first source of truth whenever it includes feature lists, examples, setup notes, or usage guidance. The local Markdown download is useful for review, internal documentation, and adapting the instructions into your own agent skills repository.

Installation, usage, and platform notes

Use this skill when the task involves PDF, DOCX, XLSX, PPTX. It can be adapted into Claude Skills, Codex Skills, Gemini Skills, Kimi Skills, GLM Skills, or a team SOP. If the README does not include a complete command-by-command setup path, the Skill URL remains the official source for the latest installation instructions. Platform support should be confirmed from the original project, but the information on this page is organized so it can be reused as a reference for Claude, Codex, Gemini, Kimi, GLM, ChatGPT, or internal AI agent workflows.

Installation

from pypdf import PdfReader, PdfWriter

reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")

text = ""
for page in reader.pages:
    text += page.extract_text()

Usage

Use this skill when the task involves PDF, DOCX, XLSX, PPTX. It can be adapted into Claude Skills, Codex Skills, Gemini Skills, Kimi Skills, GLM Skills, or a team SOP.

Capabilities

Primary workflow coverage: Productivity, Office & Documents.

Supported Platforms

Use this skill as a reference template for these AI agents, model workflows, or team SOPs.

Claude SkillsCodex SkillsGemini SkillsKimi SkillsGLM SkillsChatGPT Skills

Configuration & Updates

No standalone configuration section was detected in the archive. If the source project requires API keys, account auth, CLI setup, or plugin config, follow the Skill URL.

README Command Examples

python
from pypdf import PdfReader, PdfWriter

# Read a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")

# Extract text
text = ""
for page in reader.pages:
    text += page.extract_text()
python
from pypdf import PdfWriter, PdfReader

writer = PdfWriter()
for pdf_file in ["doc1.pdf", "doc2.pdf", "doc3.pdf"]:
    reader = PdfReader(pdf_file)
    for page in reader.pages:
        writer.add_page(page)

with open("merged.pdf", "wb") as output:
    writer.write(output)
python
reader = PdfReader("input.pdf")
for i, page in enumerate(reader.pages):
    writer = PdfWriter()
    writer.add_page(page)
    with open(f"page_{i+1}.pdf", "wb") as output:
        writer.write(output)

Tags

PDFDOCXXLSXPPTX

FAQ

What is Document Skills?

Creates and parses PDFs, DOCX, XLSX, and PPTX files.

Who should use Document Skills?

Use this skill if your team, operator, developer, or AI agent works on Productivity, Office & Documents workflows.

When should you use Document Skills?

Use it when a task involves PDF, DOCX, XLSX, PPTX, or when the workflow should become a Claude Skill, Codex Skill, Gemini Skill, Kimi Skill, GLM Skill, or team SOP.

How do you download Document Skills?

Use the “Download Skill File” button near the top of the page or in the Skill Information panel. The local Markdown file saved by EasyGlobe is manual-document-skills.md.

How do you install Document Skills?

Check the Installation section on this page. If the archived README does not include an explicit installation section, open the Skill URL and follow the official README, platform documentation, or marketplace instructions.

How do you use Document Skills?

Check the Usage, Capabilities, and README summary sections. The page extracts usage notes, command examples, and workflow context from the archived README where available.

Does Document Skills work with Claude, Codex, Gemini, Kimi, and GLM?

This page packages the resource as reusable AI agent skill material for Claude Skills, Codex Skills, Gemini Skills, Kimi Skills, GLM Skills, ChatGPT Skills or team SOPs. Actual runtime compatibility depends on the official instructions at the Skill URL.

Where is the Skill URL for Document Skills?

The Skill URL is shown in the Skill Information panel. You can also use the “Open Original Skill” button near the top of the page to open the original project or official page.

What is the difference between the local download and the Skill URL?

The local download is an EasyGlobe-saved Markdown copy for archiving, reading, and reuse. The Skill URL points to the original project, official documentation, or marketplace page for the latest instructions.