pdf Skill
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and Published by anthropics in skills.
Decision snapshot
Is this a fit?
Writing, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
21 days ago
No specific cautions were detected. Review the source and requested permissions before installing.
What is pdf Skill?
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and Published by anthropics in skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Writing
- Writing use cases
Declared skill metadata
- Declared license: Proprietary. LICENSE.txt has complete terms
- Source file: skills/pdf/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- Install or run with Copy skill directory
When to use pdf Skill
- Use it for writing.
Built with
Editorial notes
Source
- Creator: anthropics
- Repository: anthropics/skills
- Skill file: skills/pdf/SKILL.md
What it does
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and
Skill instructions
PDF Processing Guide Overview 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. Quick Start 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.extracttext() Python Libraries pypdf - Basic Operations Merge PDFs python from pypdf import PdfWriter, PdfReader writer = PdfWriter() for pdffile in ["doc1.pdf", "doc2.pdf", "doc3.pdf"]: reader = PdfReader(pdffile) for page in reader.pages: writer.addpage(page) with open("merged.pdf", "wb") as output: writer.write(output) Split PDF python reader = PdfReader("input.pdf") for i, page in enumerate(reader.pages): writer = PdfWriter() writer.addpage(page) with open(f"page{i+1}.pdf", "wb") as output: w
Verified compatibility and discovery
Frequently asked questions
What is pdf?
pdf is a open-source AI agent skill with Copy skill directory. Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages.
Who is pdf best for?
pdf is best for reusing agent instructions, scripts, and references, writing workflows.
How do I install pdf?
Install or run pdf using Copy skill directory. Check pdf for the latest setup command.
Is pdf actively maintained?
pdf may need a closer maintenance check before production use.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.