What problem does it solve? Teams shipping features often lack a consistent way to verify acceptance criteria are actually tested and that pages meet WCAG 2.1 AA accessibility requirements, leading to coverage gaps and compliance violations discovered late. ## Core Features & Use Cases - Testing Patterns Reference: Arrange-Act-Assert structure, naming conventions, assertions, mock discipline, React Testing Library, Supertest API testing, and Playwright E2E patterns for JavaScript/TypeScript. - Accessibility Checklist: WCAG 2.1 AA checks covering keyboard navigation, screen readers, contrast, forms, ARIA live regions, and common anti-patterns, plus tools like axe-core, pa11y, and Lighthouse. - Structured Findings Report: Produces a test coverage assessment across the unit→integration→E2E ladder, severity-rated accessibility violations with remediation, and a PASS/FAIL/UNPROVEN verdict. - Use Case: Before merging a feature, load this Skill to verify every acceptance criterion has a corresponding test and audit the deployed page for critical accessibility violations. ## Quick Start Review the test coverage and accessibility of the new task creation feature and produce a findings report with a verdict.