What problem does it solve? Animation code often passes review because it technically runs, yet feels sluggish, fires too often, drops frames, or ignores accessibility. This Skill applies a strict, opinionated review bar to motion code so feel-breaking regressions are caught before merge. ## Core Features & Use Cases - Standards-based review: Measures every animation in a diff against ten non-negotiable rules covering easing, duration, transform origin, interruptibility, GPU-only properties, and accessibility. - Precise value citations: Pulls exact easing curves, duration tables, and spring configurations from STANDARDS.md instead of approximating fixes. - Structured verdict output: Produces a Before/After/Why findings table plus a tiered verdict ending in an explicit Block or Approve decision. - Use Case: A developer opens a pull request adding a dropdown that uses transition: all 300ms ease-in and scale(0). The review flags the unbounded transition, the ease-in curve, and the from-nothing scale, then prescribes transform 200ms ease-out with scale(0.95) plus opacity. ## Quick Start Ask the AI to review the animation and motion code in your current diff against the review-animations standards and return a findings table with a Block or Approve verdict.