Good csv cleaner
Skill Redfloor/skillsmith/tests/fixtures/skills/good-csv-cleaner
An agent with subskills that audits, optimizes, tests, and self-heals agentic skills and prompt-based tools (Claude SKILL.md + Agent SDK / MCP).
npx -y skills add Redfloor/skillsmith --skill good-csv-cleanerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Cleans messy CSV files into a normalized schema. Use this when the user has a .csv with malformed rows, inconsistent headers, or junk lines and wants a tidy spreadsheet out. Not for Excel-specific formatting.
SKILL.md
0.8 KB, as published. Nobody here has run it
CSV Cleaner
Use this when the user provides a messy CSV and wants it normalized.
- Run
python scripts/normalize.pyto parse the CSV and deduplicate rows deterministically. If it exits nonzero, report the error and stop. - Validate the result against the schema in schema.json so the output contract is enforced, otherwise the downstream step will reject it.
- If the user asks, explain which rows were dropped and why — this needs judgment about what counts as "junk" for their data.
See the format guide for column conventions.