What problem does it solve? Setting up GSAP correctly involves scattered decisions about installation methods, plugin registration, global defaults, and cleanup, and mistakes like unregistered plugins or memory leaks cause broken animations and poor performance. ## Core Features & Use Cases - Installation & Plugin Registration: Covers npm, CDN, and ES module setups, plus registering core and formerly members-only plugins like ScrollTrigger, Draggable, Flip, and SplitText. - Global Configuration: Centralizes defaults, ScrollTrigger config, custom eases, and environment-specific settings for development versus production. - Best Practices & Troubleshooting: Documents common mistakes such as conflicting tweens, missing cleanup, and unscoped selectors, with a performance checklist. - Use Case: When starting a React project that needs scroll-driven animations, use this Skill to install gsap and @gsap/react, register ScrollTrigger once, set global defaults, and wire up useGSAP with proper cleanup. ## Quick Start Set up GSAP with ScrollTrigger in my React project, including plugin registration, global defaults, and a configured gsap module.