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 agentmods add skills/sigilagent/sigil/csv-cleannpx skills add sigilagent/sigil --skill csv-cleangit clone --depth 1 https://github.com/sigilagent/sigilWrote 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/sigilagent/sigil/csv-clean)<a href="https://agentmods.dev/skills/sigilagent/sigil/csv-clean"><img src="https://agentmods.dev/badge/skills/sigilagent/sigil/csv-clean.svg" alt="Measured on agentmods" 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 | $0.00031 | $0.00507 |
| Opus 5 | $0.00015 | $0.00253 |
| Sonnet 5 | $0.00006 | $0.00101 |
| Haiku 4.5 | $0.00003 | $0.00051 |
Grade A, and why
clean-csv 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 3d 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.
What it actually says
Clean a messy CSV
Normalize a messy CSV export into a clean one: readable snake_case headers, no blank rows, written to disk and verified. A realistic skill — one genuine judgment call, ordered mechanical steps, a required output file, and a verification gate.
Steps
-
Read the input CSV file named in the task.
-
Rename every column header to a clean, readable
snake_caseidentifier. Real exports carry units, punctuation, vendor prefixes and parenthetical qualifiers that a literal character substitution mangles — decide what each column actually means and name it that. For example:messy header good name a literal transform gives Cust. E-mail (primary)customer_emailcust__e_mail__primary_Total Spend ($)total_spendtotal_spend____Signup Date (UTC)signup_datesignup_date__utc_First Namefirst_namefirst__name -
Drop any row where every field is empty.
-
Write the cleaned rows to
cleaned.csvin the working directory, header row first. -
Verify the result before reporting success.
Rules
- Every output header MUST be lowercase
snake_case: letters, digits and single underscores only. No leading, trailing or doubled underscores. - You MUST produce exactly one name per input column, in the original order. Do not drop, add, merge or reorder columns.
- Header names MUST be unique.
- The cleaned data MUST be written to
cleaned.csv— do not just print it.
Verification
- Re-read
cleaned.csvand confirm it parses as valid CSV with a header row. - Confirm every header matches
^[a-z][a-z0-9]*(_[a-z0-9]+)*$. - Confirm the output column count equals the input column count.
- Confirm the output row count equals the input row count minus the fully-empty rows that were removed.
- If verification fails, fix the output and check again before reporting done.
What ships with it
4 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.
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.
- 3d ago First seen · 50 lines · 31 tokens per session scan A 5a6e3950ea0f
clean-csv is a skill published in the GitHub repository sigilagent/sigil (11 stars, last pushed 13d ago), licensed MIT. It adds 31 tokens to every session and 507 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-08-30.
Other skills, from other repositories
xlsx-author
Produce a .xlsx file on disk (headless) instead of driving a live Excel workbook — for managed-agent sessions with no open Office app.
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
Workspace Data Analyst
Analyze CSV files in the workspace and summarize insights.
automation-sandbox-post-copy-config-generate
Generate the JSON config file that the Salesforce sandbox post-copy automation tool consumes, from a customer SOP in any format (PDF, xlsx, csv, JSON, docx, Markdown, plain text, or a screenshot of an endpoint table). Use when the user asks to create, build, generate, produce, or convert a post-copy or post-refresh…
excel-mcp
Excel MCP Server skill for Windows workbook automation. Use when an assistant needs rich MCP tools to create, inspect, modify, format, or analyze Excel files. Supports Power Query (M), Data Model/DAX, PivotTables, Tables, Ranges, Charts, Slicers, formatting, screenshots, VBA macros, connections, and calculation mode.…