What problem does it solve? Animation code often passes review because it technically works, yet feels sluggish, fires too often, drops frames, or ignores accessibility. This Skill applies a strict, opinionated craft 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 cubic-bezier curves, duration tables, and spring configurations from STANDARDS.md instead of approximating. - Structured output: Produces a Before/After/Why findings table plus a tiered verdict ending in an explicit Block or Approve decision. - Use Case: A pull request adds a dropdown that animates with transition: all 400ms ease-in from scale(0). The review flags the unbounded transition, the ease-in curve, the over-300ms duration, and the from-nothing scale, then prescribes transform 200ms ease-out from scale(0.95) with opacity. ## Quick Start Review the animation and motion code in this pull request and give me a findings table with a block or approve verdict.