PDF to Excel

v1.0.0

Extract tables and text from a PDF into an Excel workbook (XLSX). Each page becomes a separate sheet.

0· 77·1 current·1 all-time
byRishabh Dugar@rishabhdugar

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for rishabhdugar/pdf-to-xlsx.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "PDF to Excel" (rishabhdugar/pdf-to-xlsx) from ClawHub.
Skill page: https://clawhub.ai/rishabhdugar/pdf-to-xlsx
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install pdf-to-xlsx

ClawHub CLI

Package manager switcher

npx clawhub@latest install pdf-to-xlsx
Security Scan
Capability signals
CryptoCan make purchasesRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (convert PDF tables/text to XLSX) matches the instructions and the skill.json (POST to pdfapihub API). The only minor inconsistency is a claim in SKILL.md that it "Uses PyMuPDF table detection" — the skill is instruction-only and actually calls an external API, so that line appears to describe the remote service implementation (or is misleading) rather than local behavior.
Instruction Scope
Runtime instructions are limited and explicit: supply a PDF (URL/base64/multipart) and an API key via the CLIENT-API-KEY header, POST to the documented endpoint, and receive XLSX output. This will send the full PDF contents to a third‑party endpoint (pdfapihub.com), which is expected for a hosted conversion service but is a privacy consideration and should be understood before uploading sensitive documents.
Install Mechanism
No install spec and no code files — the skill is instruction-only, so nothing is written to disk and no external packages are pulled in by the skill itself.
Credentials
The skill does not request environment variables or local credentials. It requires an API key in the CLIENT-API-KEY header (declared in skill.json), which is proportional to calling an external API. There are no unrelated credentials or config paths requested.
Persistence & Privilege
The skill does not request always:true, does not install or modify agent configuration, and has no persistent/system privileges. Autonomous invocation is allowed by platform default but is not combined with broad privileges here.
Assessment
This skill delegates conversion to an external service (https://pdfapihub.com) and requires you to provide an API key. Before using it: (1) Do not upload confidential or regulated documents unless you trust the provider and have checked their privacy/retention policy; (2) Verify the provider's reputation and pricing (the skill's source/homepage is unknown); (3) Be aware the SKILL.md mentions PyMuPDF (likely describing the provider's implementation) but the agent will send your PDF to the remote API for processing; (4) If you need on‑device processing for privacy reasons, consider local tools that avoid sending files off your machine.

Like a lobster shell, security has layers — review code before you run it.

latestvk977ay8cb6pzvnxc0xgp8ag37s850fy2
77downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

PDF to Excel

What It Does

Extracts tables and text from a PDF into an Excel workbook. Each page becomes a separate sheet. Uses PyMuPDF table detection with fallback to line-by-line text extraction.

When to Use

  • Extract tabular data from PDF invoices or reports
  • Convert PDF financial statements to Excel
  • Pull structured data from PDF tables

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

  • Invoice Data Extraction — Pull line items and totals from PDF invoices into Excel for accounting
  • Financial Statement Analysis — Convert PDF bank statements to Excel for analysis and reconciliation
  • Report Data Mining — Extract tabular data from PDF reports for further processing
  • Procurement — Convert PDF purchase orders into spreadsheets for tracking
  • Tax Preparation — Extract financial data from PDF tax documents into Excel

Aliases

  • /v1/convert/pdf/excel is an alias

Example Usage

curl -X POST https://pdfapihub.com/api/v1/convert/pdf/xlsx \
  -H "CLIENT-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://pdfapihub.com/sample-pdfinvoice-with-image.pdf", "output": "url" }'

Comments

Loading comments...