What problem does it solve? Working with GSAP's many plugins requires knowing correct registration order, import paths, configuration options, and licensing rules, and mistakes like unregistered plugins or outdated Club GSAP install steps cause broken animations. ## Core Features & Use Cases - Plugin Registration & Licensing: Register plugins with gsap.registerPlugin() and install everything from the public gsap npm package, with no Club GSAP membership or auth token required. - Scroll, Drag & Layout: Use ScrollToPlugin, ScrollSmoother, Flip for FLIP layout transitions, Draggable with InertiaPlugin for momentum, and Observer for gesture input. - Text, SVG & Physics: Animate text with SplitText and ScrambleText, draw and morph SVG with DrawSVG and MorphSVG, move elements along paths with MotionPath, and apply Physics2D or PhysicsProps. - Use Case: When a user asks to animate a headline character-by-character on scroll, the skill guides SplitText.create with autoSplit and onSplit, plus proper registration and revert cleanup. ## Quick Start Ask the AI to register the needed GSAP plugins and write an animation, for example splitting a heading into characters with SplitText and staggering them in.