What problem does it solve? GSAP animations can cause jank, dropped frames, and layout thrashing when they animate layout-heavy properties or create excessive tweens. This Skill provides concrete rules for keeping animations on the compositor thread at a smooth 60fps. ## Core Features & Use Cases - Compositor-friendly properties: Guides you to animate transform and opacity (x, y, scale, rotation) instead of layout-triggering properties like width, height, top, and left. - Efficient update patterns: Recommends gsap.quickTo() for frequently updated values like mouse followers, stagger for lists, and proper will-change usage. - ScrollTrigger tuning: Covers pin promotion, scrub values, and debounced ScrollTrigger.refresh() calls to reduce scroll-time work. - Use Case: A page with a mouse-follower cursor and a long animated list stutters on low-end devices. Apply this Skill to switch to quickTo(), replace manual delays with stagger, and clean up off-screen tweens. ## Quick Start Review my GSAP animation code and optimize it for smooth 60fps performance on low-end devices.