Csv validator
Skill studiomeyer-io/skilldoctor/examples/skills/csv-validator
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.From its SKILL.md
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 file declares
Copied from the file, not written here
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, 133 tokens by cl100k_base, 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.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.