What problem does it solve? Writing correct GSAP animations requires knowing the right tween methods, transform aliases, easing names, and accessibility patterns; this Skill provides the official core API guidance so generated animation code follows GSAP best practices. ## Core Features & Use Cases - Core Tween Methods: Covers gsap.to(), from(), fromTo(), and set() with common vars like duration, delay, ease, stagger, repeat, and overwrite. - Transforms & Easing: Documents transform aliases (x, y, scale, rotation), autoAlpha, svgOrigin, directional rotation, and the full built-in ease catalog plus CustomEase. - Responsive & Accessible Animation: Explains gsap.matchMedia() for breakpoints and prefers-reduced-motion handling with automatic revert. - Use Case: A developer asks for a staggered card entrance animation in a React app that respects reduced-motion settings; the Skill produces a gsap.to() tween with stagger, transform aliases, and a matchMedia block that sets duration to 0 when reduceMotion matches. ## Quick Start Use the gsap-core skill to write a GSAP animation that fades in and slides up all elements with the class 'card' with a 0.1 second stagger.