csv-pro

csv-pro is a skill for Claude Code from bestdeejay-design/agent-skills. It costs 205 tokens per session (1,052 once invoked), scanned A, original, MIT.

A tool that profiles a CSV file—a plain-text table of rows and columns—by examining its columns, values, missing data, duplicates, and unusual entries.

In plain words
What is it for?
Use it to identify column types, ranges, averages, unique and frequent values, empty columns, duplicate rows, outliers, and overly long text.
Why use it?
It quickly reveals the shape and quality of a dataset before you load it into a database or use it for machine learning.

Skill for Claude Code

Written for Claude Code: when-to-use in frontmatter.

Good fit Use it to identify column types, ranges, averages, unique and frequent values, empty columns, duplicate rows, outliers, and overly long text.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bestdeejay-design/agent-skills/csv-pro
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 bestdeejay-design/agent-skills --skill csv-pro
Clone the repo
git clone --depth 1 https://github.com/bestdeejay-design/agent-skills

Made for: Claude Code.

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-pro

README.md
[![agentmods](https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/csv-pro.svg)](https://agentmods.dev/skills/bestdeejay-design/agent-skills/csv-pro)
Your own site
<a href="https://agentmods.dev/skills/bestdeejay-design/agent-skills/csv-pro"><img src="https://agentmods.dev/badge/skills/bestdeejay-design/agent-skills/csv-pro.svg" alt="Measured on agentmods" height="20"></a>
Per session 205 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,052 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.00205 $0.01052
Opus 5 $0.00102 $0.00526
Sonnet 5 $0.00041 $0.00210
Haiku 4.5 $0.00020 $0.00105

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

Security

Grade A, and why

csv-pro 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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/csv_pro.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.

skills/csv-pro/SKILL.md · 73 lines

What it actually says

CSV Pro

Профилирование CSV-файлов: типы колонок, статистика, аномалии.

Загружай этот скилл когда нужно быстро понять, что лежит в CSV: типы колонок, диапазоны значений, пропуски, дубликаты и выбросы.

🎯 When to use

Use this skill when:

  • Есть CSV-файл и нужно понять его структуру: типы колонок, min/max/mean, уникальные значения
  • Нужно проверить качество данных перед загрузкой в БД или ML-пайплайн
  • Просят «профиль csv», «анализ csv», «что в csv», «csv anomalies»
  • Нужен отчёт об аномалиях: пустые колонки, дубликаты строк, выбросы, длинные строки

Do NOT use when:

  • Нужна полная аналитика с корреляциями и рекомендациями — это data-analysis
  • Нужны SQL-запросы к данным — это sql-helper
  • Нужно просто посчитать строки или суммы — проще wc -l и awk

📦 Files

  • SKILL.md — этот файл
  • scripts/csv_pro.py — профилировщик CSV (Python 3 stdlib)

🧰 Usage

# Файл → markdown-профиль (по умолчанию):
python3 skills/csv-pro/scripts/csv_pro.py --input data.csv

# Файл → JSON:
python3 skills/csv-pro/scripts/csv_pro.py --input data.csv --output json

# Файл → HTML с графиками:
python3 skills/csv-pro/scripts/csv_pro.py --input data.csv --output html

# Из stdin (текст прямо в пайплайне):
cat data.csv | python3 csv_pro.py --stdin

# Явный разделитель:
python3 csv_pro.py --input data.csv --delimiter ';'

Canonical analogues

Полный справочник канонических паттернов — references/canonical-patterns.md. Топ-аналоги и их takeaways:

  • ydata-profiling — эталонный набор метрик (skewness, kurtosis, quantiles, MAD, infinite counters) и 18 типов алертов.
  • csvkit csvstat — CLI-эталон: csvstat data.csv --json, метрики len и maxprecision.
  • DuckDB SUMMARIZE — SQL-профиль с approx-квантилями и null_percentage.
  • Great Expectations — словарь проверяемых утверждений (63 core-ожидания).
  • dataprep.EDA — типизированные инсайты: Zeros, Negatives, Constant Length, High Cardinality.

🔬 Проверка результата

  • Markdown: таблица «Колонки» (тип, уникальные, пустые, min/max/mean, топ-3) + секция «Аномалии».
  • JSON: валидный JSON с полями columns и anomalies — проверка python3 -m json.tool.
  • HTML: интерактивный дашборд с гистограммами для числовых колонок и bar charts для категорий.
  • Пустой файл: сообщение «Файл пуст», код 0.
  • Отсутствующий файл: сообщение в stderr, код 1.
Files

What ships with it

3 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. 2d ago Changed · +4 lines · +4 tokens per session b88d404a4300
  2. 7d ago First seen · 69 lines · 201 tokens per session scan A 1aea8dfb8740

Subscribe to this mod's changes

csv-pro is a skill published in the GitHub repository bestdeejay-design/agent-skills (5 stars, last pushed 3d ago), licensed MIT. It adds 205 tokens to every session and 1,052 once invoked, about $0.0010 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-31.

Related

Other skills, from other repositories

google-apps-script

Build Google Apps Script automation for Sheets and Workspace. Custom menus, triggers (onEdit / time-driven / form submit), dialogs, sidebars, email batches, PDF export, external API. Use whenever the user wants to automate a Google Sheet, build a Sheets menu / sidebar / dialog, hit a Sheets row from email or a…

jezweb/claude-skills · 89 tokens

openakita/skills@wecom-cli

WeCom (Enterprise WeChat) CLI - official open-source CLI tool from WeCom. Covers 7 business categories: Contacts, Todos, Meetings, Messages, Schedules, Documents, Smartsheets. Built in Rust for macOS/Linux/Windows. Use when user wants to operate WeCom resources.

openakita/openakita · 70 tokens

new-job

This skill should be used when the user wants to add a new company or job to their Excel tracker (List.xlsx). Triggers on phrases like "add [company] to tracker", "I applied to [company]", "track [company]", "save [company] for later", "add [company] [role]", "new application at [company]".

Mahashwetha/Job-search-email-system-claude · 76 tokens

google-workspace-ops

Google Workspace CLI automation via gogcli. Gmail, Calendar, Drive, Docs, Slides, Sheets, and 9 more services. JSON-first output, composable pipelines.

buildoak/fieldwork-skills · 40 tokens

gog

Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.

bighardperson/computer-science-skills-collection · 20 tokens

gog

A command-line tool for Google Workspace, the group of services including Gmail, Calendar, Drive, Contacts, Sheets, and Docs.

AlekseiUL/sprut-agent-kit · 74 tokens