What problem does it solve? UI codebases drift away from their documented design system over time, and manually comparing every component against the contract is slow and error-prone. This Skill audits code against docs/DESIGN_SYSTEM.md and produces a structured, actionable list of deviations. ## Core Features & Use Cases - Contract-Based Scanning: Checks spacing, color, typography, component patterns, and layout against the values defined in docs/DESIGN_SYSTEM.md. - Severity Classification: Labels each finding as a violation, drift, or inconsistency so fixes can be prioritized. - Structured Audit Artifact: Writes a findings report to docs/tmp/design-audit-{scope}.md with file paths, line numbers, current values, expected values, and concrete fixes. - Use Case: Audit the src/features/dashboard/ directory to find every raw hex color, off-scale spacing value, and non-standard border radius, then hand the report to a fix workflow. ## Quick Start Audit the dashboard components against docs/DESIGN_SYSTEM.md and write a findings report. Note: this Skill is deprecated; prefer the current ui-* and design-* reference skills unless you explicitly need the legacy docs/DESIGN_SYSTEM.md contract workflow.