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.
npx skills add OpenLAIR/OpenSkill --skill evo-pdf-excel-extractiongit clone --depth 1 https://github.com/OpenLAIR/OpenSkillWrote 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.
[](https://agentmods.dev/skills/openlair/openskill/evo-pdf-excel-extraction)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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
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.
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.
- yesterday First seen · 56 lines · 41 tokens per session scan A 8f576c188bb8
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.
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…
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.
document-python-direct
Use direct Python execution for reliable spreadsheet and document/PDF generation operations.
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.
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.
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…