What problem does it solve? It consolidates the project's code quality gates—TypeScript type checking, ESLint, and Prettier formatting—into one repeatable workflow so you can verify code health before committing without remembering individual commands. ## Core Features & Use Cases - Sequential Quality Checks: Runs tsc --noEmit, eslint src --ext .ts,.tsx, and prettier --check in order and reports output as-is. - Guided Auto-Fix: On failure, asks before running eslint --fix and prettier --write, then re-runs checks to show what remains. - Accessibility Handoff: When lint passes and rendering components changed, it prompts you to optionally run the /a11y audit for WCAG 2.2 AA review. - Use Case: Before committing changes to a Button component, invoke the skill to confirm zero type errors and lint violations, auto-fix formatting, then opt into an accessibility audit. ## Quick Start Ask the assistant to run the lint checks on the project and report any type errors, ESLint violations, or formatting issues.