Csv validator
Skill studiomeyer-io/skilldoctor/examples/skills/csv-validator
A linter + security scanner for AI-agent skill files — validate Claude Code SKILL.md / AGENTS.md / subagent frontmatter, catch prompt-injection & data-exfil in installed skills, A–F grade, --fix, SARIF + GitHub Action.
npx -y skills add studiomeyer-io/skilldoctor --skill csv-validatorAssembled 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
Validates CSV files against an expected header schema and reports row-level mismatches. Use when the user mentions CSV validation, header checks, or cleaning up tabular data exports.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.8 KB, as published. Nobody here has run it
CSV validator
A clean, well-formed example skill that passes skilldoctor with grade A.
When to use
The user has a CSV and wants to confirm its columns match an expected schema, or wants to find rows that don't conform.
Steps
- Read the target CSV file.
- Compare the header row to the expected column list.
- Walk the rows and collect any with the wrong number of fields.
- Report mismatches with their 1-based line numbers.
Notes
- Keep tool access minimal: this skill only needs
ReadandGrep. - It never writes files or makes network calls.