csv-to-executive-report

csv-to-executive-report is a skill for Claude Code, Codex from skrun-dev/skrun. It costs 81 tokens per session (1,041 once invoked), scanned A, original, MIT.

A tool that turns a CSV file—a table of rows and columns—into a multi-page PDF report for company leaders. It analyzes the data, writes a short explanation, and creates charts and summary tables.

In plain words
What is it for?
Use it to report trends, compare groups, summarize key metrics, and produce a styled PDF from a CSV.
Why use it?
It helps turn operational data such as sales, signups, usage, or support tickets into a report that can be read quickly. The charts are chosen from the columns and dates found in the file.

Skill for Claude CodeCodex

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

Good fit Use it to report trends, compare groups, summarize key metrics, and produce a styled PDF from a CSV.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skrun-dev/skrun/csv-to-executive-report
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 skrun-dev/skrun --skill csv-to-executive-report
Clone the repo
git clone --depth 1 https://github.com/skrun-dev/skrun

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 csv-to-executive-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/skrun-dev/skrun/csv-to-executive-report.svg)](https://agentmods.dev/skills/skrun-dev/skrun/csv-to-executive-report)
Your own site
<a href="https://agentmods.dev/skills/skrun-dev/skrun/csv-to-executive-report"><img src="https://agentmods.dev/badge/skills/skrun-dev/skrun/csv-to-executive-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,041 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.00081 $0.01041
Opus 5 $0.00041 $0.00521
Sonnet 5 $0.00016 $0.00208
Haiku 4.5 $0.00008 $0.00104

Measured 7d ago against content hash 8f4d735c235b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

csv-to-executive-report 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 7d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/analyze_csv.py, scripts/render_pdf.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.

agents/csv-to-executive-report/SKILL.md · 57 lines

How it starts

The opening of the file, as written. The whole thing — 57 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CSV to Executive Report

You are a data analyst writing a report for a CEO who has 4 minutes to read it. Given a CSV, you produce a multi-page PDF with a clean narrative, well-chosen charts, and a summary table — the kind of artifact that gets forwarded with "great work, please make this a monthly thing."

Workflow

  1. Analyze the CSV — call analyze_csv with the user's csv_path. The tool returns:

    { columns, dtypes, row_count, numeric_stats (per numeric col: min/max/mean/sum), sample_rows (first 10) }
    
  2. Decide what's interesting — based on the data:

    • Identify the primary metric (the column representing the headline number — usually a numeric column with high variance, named like "revenue", "signups", "errors", "duration_ms").
    • Identify a categorical breakdown dimension (a string column with 3-15 distinct values — segment, region, channel, status). Skip if no good candidate.
    • If there's a date column (named "date", "created_at", or detected as ISO format in samples), use it for trend charts.
  3. Choose 2-3 charts based on the data shape:

    • Trend chart (line) — if a date column exists, plot the primary metric over time. X-labels = dates (truncate to 10-15 evenly-sampled dates if there are too many).
    • Breakdown chart (bar) — primary metric by categorical dimension, sorted descending. Top 8 categories max.
    • Composition chart (pie) — if there's a status / category column with 3-6 values, show the proportional split. Skip if not applicable.
  4. Write the narrative — 3-4 sections, each 1-2 short paragraphs:

    • Headline (executive summary): the single most important finding. "Revenue up 23% MoM, driven primarily by enterprise tier."
    • Trend: what's changing over time. Reference the trend chart.
    • Breakdown: what's outsized in the categorical dimension. Reference the breakdown chart.
    • Watch list (optional): 1-2 anomalies / risks worth flagging. Skip if nothing stands out.

Read the full file on GitHub · 57 lines

Files

What ships with it

6 files 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. 7d ago First seen · 57 lines · 81 tokens per session scan A 8f4d735c235b

Subscribe to this mod's changes

csv-to-executive-report is a skill published in the GitHub repository skrun-dev/skrun (209 stars, last pushed 7d ago), licensed MIT. It adds 81 tokens to every session and 1,041 once invoked, about $0.0004 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-08-30.

Related

Other skills, from other repositories

liteparse

Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally without cloud dependencies.

synthetic-sciences/openscience · 49 tokens

treatment-plans

Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic disease management, perioperative care, and pain management. Includes SMART goal frameworks, evidence-based…

synthetic-sciences/openscience · 86 tokens

markitdown

Convert files and office documents to Markdown. Supports PDF, DOCX, PPTX, XLSX, images (with OCR), audio (with transcription), HTML, CSV, JSON, XML, ZIP, YouTube URLs, EPubs and more.

synthetic-sciences/openscience · 53 tokens

docutranslate

Use when translating documents locally via LLM — PDF, Word, Excel, Markdown, SRT subtitles with format preservation. DocuTranslate: LLM-powered multi-format local file translation tool with MCP server support.

znlgis/opengis-skills · 47 tokens

xberg

Extract text, tables, metadata, and images from 97+ document formats (PDF, Office, images, HTML, email, archives, academic) using Xberg CLI.

CherryHQ/stella · 38 tokens

ocr-and-documents

Extract text from PDFs and scanned documents. Use webextract for remote URLs, pymupdf for local text-based PDFs, marker-pdf for OCR/scanned docs. For DOCX use python-docx, for PPTX see the powerpoint skill.

raphaelmansuy/edgecrab · 54 tokens