What problem does it solve? Working with GSAP's many plugins requires knowing correct registration order, import paths, configuration options, and current licensing rules, and outdated advice about paid Club GSAP plugins leads to broken setups. ## Core Features & Use Cases - Plugin Registration & Licensing: Register plugins with gsap.registerPlugin() and install everything from the public gsap npm package, since all plugins including SplitText and MorphSVG are now free. - Scroll, DOM & UI Plugins: Configure ScrollToPlugin, ScrollSmoother, Flip for layout transitions, Draggable with InertiaPlugin for momentum dragging, and Observer for gesture detection. - Text, SVG & Physics Plugins: Split text with SplitText, scramble text, draw and morph SVG paths, animate along motion paths, and apply 2D physics with configurable velocity and gravity. - Use Case: When a user asks to animate a heading character-by-character on page load, the skill guides creating a SplitText instance with type "chars", staggering the chars with gsap.from, and reverting on unmount. ## Quick Start Ask the AI to register the needed GSAP plugins and write an animation, for example a draggable card with inertia or a SplitText character reveal.