evo-pdf-excel-extraction

evo-pdf-excel-extraction is a skill for Claude Code, Codex from OpenLAIR/OpenSkill. It costs 41 tokens per session (478 once invoked), scanned A, original, Apache-2.0.

A data-import tool for extracting tables from PDF files and reading Excel spreadsheets into pandas DataFrames, which are table-like datasets in Python. It cleans values and standardizes IDs and numbers for later comparison.

In plain words
What is it for?
Use it to load multi-page PDF tables or Excel sheets, normalize their columns and values, and prepare them for analysis or record comparison.
Why use it?
It removes repetitive parsing and cleanup work, including repeated PDF headers, whitespace, numeric formatting, and invalid IDs. This makes data from different file types easier to compare.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to load multi-page PDF tables or Excel sheets, normalize their columns and values, and prepare them for analysis or record comparison.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openlair/openskill/evo-pdf-excel-extraction
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OpenLAIR/OpenSkill --skill evo-pdf-excel-extraction
Clone the repo
git clone --depth 1 https://github.com/OpenLAIR/OpenSkill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for evo-pdf-excel-extraction

README.md
[![agentmods](https://agentmods.dev/badge/skills/openlair/openskill/evo-pdf-excel-extraction/github.svg)](https://agentmods.dev/skills/openlair/openskill/evo-pdf-excel-extraction)
Your own site
<a href="https://agentmods.dev/skills/openlair/openskill/evo-pdf-excel-extraction"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-pdf-excel-extraction/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for evo-pdf-excel-extraction

Your own site · 80×15
<a href="https://agentmods.dev/skills/openlair/openskill/evo-pdf-excel-extraction"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-pdf-excel-extraction.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 478 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.00478
Opus 5 $0.00020 $0.00239
Sonnet 5 $0.00008 $0.00096
Haiku 4.5 $0.00004 $0.00048

Measured yesterday against content hash 8f576c188bb8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

evo-pdf-excel-extraction scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/utils.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

tasks-evolved/pdf-excel-diff/environment/skills/evo-pdf-excel-extraction/SKILL.md · 56 lines

What it actually says

evo-pdf-excel-extraction

Extracts tabular data from PDF files and Excel files, returning normalized DataFrames.

Key Functions

extract_table_from_pdf(pdf_path, table_settings=None)

Extracts a multi-page table from a PDF. Handles:

  • Multi-page concatenation (iterates all pages)
  • Header detection from first page
  • Repeated header detection on subsequent pages
  • Cell cleaning (whitespace, newlines)

read_excel_file(excel_path, id_column='ID', sheet_name=0, dtype_map=None)

Reads .xlsx files with openpyxl engine. Preserves string IDs.

normalize_dataframe(df, id_column='ID', numeric_columns=None)

Normalizes a DataFrame for comparison:

  • Strips whitespace from strings
  • Preserves ID as string (removes .0 suffix)
  • Removes commas from numeric strings and coerces to numeric
  • Replaces empty/'nan'/'None' with NaN
  • Drops rows with invalid IDs

Usage

import sys
sys.path.insert(0, '/app/environment/skills/evo-pdf-excel-extraction/scripts')
from utils import extract_table_from_pdf, read_excel_file, normalize_dataframe

# Extract from PDF
df_pdf = extract_table_from_pdf('/root/employees_backup.pdf')

# Read Excel
df_excel = read_excel_file('/root/employees_current.xlsx', id_column='ID')

# Normalize both
numeric_cols = ['Salary', 'Years', 'Score']
df_pdf_norm = normalize_dataframe(df_pdf, id_column='ID', numeric_columns=numeric_cols)
df_excel_norm = normalize_dataframe(df_excel, id_column='ID', numeric_columns=numeric_cols)

Domain Knowledge

  • pdfplumber extracts text as strings; all values need type coercion
  • PDF cells may contain commas in numbers (e.g., "112,000")
  • Employee IDs format: "EMP00002" (alphanumeric, 8 chars)
  • Numeric columns: Salary (int), Years (int), Score (float)
  • Text columns: First, Last, Dept, Position, Location
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 56 lines · 41 tokens per session scan A 8f576c188bb8

Subscribe to this mod's changes

evo-pdf-excel-extraction is a skill published in the GitHub repository OpenLAIR/OpenSkill (90 stars, last pushed 2d ago), licensed Apache-2.0. It adds 41 tokens to every session and 478 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-11.

Related

Other skills, from other repositories

document-extraction

Use this skill for intelligent document processing and content extraction using LandingAI's Agentic Document Extraction (ADE). Trigger when users need to (1) Parse documents (PDFs, images, spreadsheets, presentations) into structured Markdown with layout understanding, (2) Extract specific structured data from…

nrl-ai/chub · 222 tokens

doc-reader

Read any common document/data file — PDF, Word (.docx), Excel (.xlsx/.xls), PowerPoint (.pptx), images (OCR), CSV/TSV, plain text, JSON/YAML/TOML, HTML/XML, and most source-code files. Use the readdocument tool.

HKUDS/Vibe-Trading · 65 tokens

document-python-direct

Use direct Python execution for reliable spreadsheet and document/PDF generation operations.

HKUDS/OpenSpace · 17 tokens

kordoc

A command-line and server tool for reading and creating Korean official documents, including HWP, HWPX, PDF, DOCX, and spreadsheet files. It can convert documents to Markdown and create or update HWPX files.

chrisryugj/kordoc · 253 tokens

meta-multi-format-export-pack

From one piece of source content, render four deliverables: .docx report, .pptx slides, .xlsx data, and an HTML/PDF public version.

opensquilla/opensquilla · 41 tokens

superlinked-docs

Offload document, image, and structured-output work to the Superlinked inference cluster: convert PDF/DOCX/PPTX/XLSX/HTML/scans to clean markdown, describe an image (caption + tags), or produce schema/grammar-constrained JSON off the cluster — instead of ingesting the file directly, which can reduce the tokens billed…

superlinked/sie · 125 tokens