csv-tools

csv-tools is a skill for Claude Code, Codex from gebruder/wirken. It costs 8 tokens per session (309 once invoked), scanned A, original, MIT.

A set of instructions for viewing, filtering, sorting, counting, and changing CSV files. CSV files are tables stored as plain text, with values separated by commas.

In plain words
What is it for?
Use it to check headers and row counts, select columns, filter or sort records, find unique values, count groups, convert CSV to TSV, and handle more complex parsing with Python.
Why use it?
It provides quick ways to inspect and reshape tabular data without opening a spreadsheet application.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/gebruder/wirken/csv-tools
Any agent
npx skills add gebruder/wirken --skill csv-tools
Clone the repo
git clone --depth 1 https://github.com/gebruder/wirken

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/gebruder/wirken/csv-tools.svg)](https://agentmods.dev/skills/gebruder/wirken/csv-tools)
Your own site
<a href="https://agentmods.dev/skills/gebruder/wirken/csv-tools"><img src="https://agentmods.dev/badge/skills/gebruder/wirken/csv-tools.svg" alt="Measured on agentmods" height="20"></a>
Per session 8 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 309 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00008 $0.00309
Opus 5 $0.00004 $0.00154
Sonnet 5 $0.00002 $0.00062
Haiku 4.5 $0.00001 $0.00031

Measured 5d ago against content hash 75ea1765a01f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

csv-tools 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 5d ago.

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-tools/SKILL.md · 48 lines

What it actually says

CSV Tools

Work with CSV files using standard shell tools.

View

  • First few rows: head -5 data.csv
  • Column headers: head -1 data.csv
  • Row count: wc -l data.csv
  • Specific columns (1st and 3rd): cut -d',' -f1,3 data.csv

Filter and sort

  • Filter rows: awk -F',' '$3 > 100' data.csv
  • Sort by column: sort -t',' -k2 -n data.csv
  • Unique values in column: cut -d',' -f2 data.csv | sort -u
  • Count by value: cut -d',' -f2 data.csv | sort | uniq -c | sort -rn

Transform

  • Remove header: tail -n +2 data.csv
  • Add line numbers: nl -ba data.csv
  • Replace delimiter: sed 's/,/\t/g' data.csv (CSV to TSV)

Python (for complex operations)

python3 -c "
import csv, sys
reader = csv.DictReader(open('data.csv'))
for row in reader:
    print(row)
" | head -10
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. 5d ago First seen · 48 lines · 8 tokens per session scan A 75ea1765a01f

Subscribe to this mod's changes

csv-tools is a skill published in the GitHub repository gebruder/wirken (170 stars, last pushed yesterday), licensed MIT. It adds 8 tokens to every session and 309 once invoked, about $0.0000 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

mckinsey-charts

Generate McKinsey-style consulting charts as native python-pptx objects (editable inside PowerPoint). Three workhorse types — bar+callout for TAM/single-number stories, stacked column over time for revenue/usage mix, and waterfall for drivers/bridge analysis. Use when you need a chart that looks like it came from an…

sruthir28/enterprise-ai-skills · 83 tokens

library

当要写/整理在线文档、建数据表增删改查、导入 CSV·Excel、做看板/dashboard/运营页/汇报页、md 转网页或演示 HTML 发布、建目录、上传下载网盘文件、审阅修订、分享协作,以及提到资料库/知识库/网盘/空间/workbuddy.cn/space 链接时使用。资料库是 WorkBuddy 原生的内容管理、分享协作与轻发布模块,覆盖在线文档(doc)、网页链接(link)、结构化数据表(database)、数据/汇报页面(page)、网盘文件(drive)与空间管理(manage);凡说资料库/知识库或出现 space 链接、未显式点名腾讯文档/飞书/Notion/乐享/金山文档/iWiki 等外部产品时一律走本…

crane-in-clear-sky/WorkWit-AI-Agent · 207 tokens

dcf-model

Build discounted cash flow valuation workbooks in Excel.

NousResearch/hermes-agent · 14 tokens

comps-analysis

Build comparable-company valuation workbooks in Excel.

NousResearch/hermes-agent · 13 tokens

lbo-model

Build leveraged buyout workbooks with IRR/MOIC in Excel.

NousResearch/hermes-agent · 19 tokens

excel-author

Build auditable financial workbooks headless via openpyxl.

NousResearch/hermes-agent · 16 tokens