# 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.

- Skill: `studiomeyer-io/csv-validator` (Agent Skill)
- Install (CLI): `npx skillmds@latest add studiomeyer-io/csv-validator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/studiomeyer-io/csv-validator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- License: MIT
- Author: studiomeyer-io (https://skillmd.com/u/studiomeyer-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/studiomeyer-io/csv-validator

---


# 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

1. Read the target CSV file.
2. Compare the header row to the expected column list.
3. Walk the rows and collect any with the wrong number of fields.
4. Report mismatches with their 1-based line numbers.

## Notes

- Keep tool access minimal: this skill only needs `Read` and `Grep`.
- It never writes files or makes network calls.

