What problem does it solve? Manual edits to JSON data files often introduce syntax errors, duplicate slugs, malformed dates, or inconsistent tags that only surface as build failures. This Skill catches those issues early by validating all data files before builds or commits. ## Core Features & Use Cases - JSON Syntax & Schema Validation: Parses all files in src/data/ and checks required fields, date formats, slug uniqueness, and URL formats for posts, talks, timeline, and project data. - Cross-File Integrity Checks: Detects duplicate slugs across collections, inconsistent date formats, and tag capitalization mismatches. - Structured Validation Report: Outputs a per-file report with errors, warnings, entry counts, and file size anomalies, plus optional guided fixes. - Use Case: After bulk-editing posts.json, run validation before yarn build to catch a duplicate slug and two malformed dates instead of debugging a failed static export. ## Quick Start Ask the assistant to validate all JSON data files in src/data and report any errors or warnings before the next build.