← Back to Skills Marketplace
rishabhdugar

Split PDF

by Rishabh Dugar · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
61
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install split-pdf
Description
Split a single PDF into multiple parts. Supports page ranges, per-page splitting, and fixed chunk splitting.
README (SKILL.md)

Split PDF

What It Does

Splits a single PDF into multiple smaller PDFs. Supports splitting by page ranges, one page per file, or fixed number of chunks.

When to Use

  • Extract specific pages from a large PDF
  • Split a document into individual page PDFs
  • Divide a PDF into N equal parts

Split Modes

Mode Param Behaviour
By pages pages: "1-3,5,8-10" Each comma group = one output PDF
Each page mode: "each" One PDF per page
Fixed chunks chunks: 3 Split into N roughly equal parts
Default (none) Same as mode: "each"

Required Inputs

Provide one of:

  • url — public URL to a PDF
  • file — base64-encoded PDF
  • Multipart upload with file field

Authentication

Send your API key in the CLIENT-API-KEY header.

Get your free API key at https://pdfapihub.com. Full API documentation is available at https://pdfapihub.com/docs.

Use Cases

  • Chapter Extraction — Split a book or manual into individual chapter PDFs
  • Page Isolation — Extract a specific page (e.g., signature page) from a contract
  • Selective Sharing — Share only relevant pages from a large report without exposing the rest
  • Batch Processing — Split a multi-page scanned document into individual page files
  • Archival — Break large PDFs into smaller files for easier storage and retrieval
  • Print Shop — Split documents into sections for different print runs

Limits

  • Max 200 pages per document
  • Max 100 output chunks

Example Usage

curl -X POST https://pdfapihub.com/api/v1/pdf/split \
  -H "CLIENT-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://pdfapihub.com/sample-pdfapi-intro.pdf",
    "pages": "1-5,8,10-15",
    "output": "url"
  }'
Usage Guidance
This skill is coherent but it sends your PDF files to a third-party service (pdfapihub.com). Do not use it with sensitive or confidential documents unless you've reviewed that service's privacy, retention, and deletion policies. Provide an API key with minimal privileges and consider using a short-lived or test key first. If you require offline/privacy-preserving splitting, use a local tool instead. Also confirm how your platform stores the CLIENT-API-KEY and whether the agent is allowed to invoke the skill autonomously; if you do not want automatic calls, disable autonomous invocation or avoid installing the skill.
Capability Analysis
Type: OpenClaw Skill Name: split-pdf Version: 1.0.0 The skill bundle is a standard API wrapper for a PDF splitting service hosted at pdfapihub.com. All files (SKILL.md, skill.json, example.json) consistently describe legitimate PDF processing functionality, and there is no evidence of malicious instructions, data exfiltration beyond the stated purpose, or obfuscation.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Name/description match the declared endpoint and parameters in skill.json and SKILL.md. Requesting an API key and accepting a URL/base64/multipart file are expected for a PDF-splitting API; there are no unrelated binaries, config paths, or secrets requested.
Instruction Scope
SKILL.md instructs the agent to POST the PDF (via URL, base64, or multipart) to https://pdfapihub.com/api/v1/pdf/split and include CLIENT-API-KEY in the header. The instructions do not tell the agent to read other files, environment variables, or system state. Important privacy note: using the skill will transmit the full PDF (potentially containing sensitive data) to a third party — this is expected behavior for a hosted API but is a relevant security/privacy consideration.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing is written to disk and no external packages or downloads are performed. This is the lowest-risk install model.
Credentials
The only credential required is the API key delivered in the CLIENT-API-KEY header (declared in skill.json). No unrelated credentials or high-privilege environment variables are requested. Users will need to provide that API key to the platform — ensure the platform stores it securely and that the key has limited scope.
Persistence & Privilege
always is false and the skill does not request system-wide changes or access to other skills' configs. The skill can be invoked autonomously by the agent (disable-model-invocation=false), which is the normal default — note this only increases risk if you allow the agent to act without prompts.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install split-pdf
  3. After installation, invoke the skill by name or use /split-pdf
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Split a single PDF into multiple parts. Supports page ranges (1-3,5,8-10), per-page splitting, and fixed N-chunk splitting. Output is always a zip containing the split PDFs.
Metadata
Slug split-pdf
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Split PDF?

Split a single PDF into multiple parts. Supports page ranges, per-page splitting, and fixed chunk splitting. It is an AI Agent Skill for Claude Code / OpenClaw, with 61 downloads so far.

How do I install Split PDF?

Run "/install split-pdf" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Split PDF free?

Yes, Split PDF is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Split PDF support?

Split PDF is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Split PDF?

It is built and maintained by Rishabh Dugar (@rishabhdugar); the current version is v1.0.0.

💬 Comments