What problem does it solve? Writing animation logic often requires repetitive math like clamping values, mapping ranges, interpolating colors, and generating random values. This Skill provides ready-to-use patterns for GSAP's built-in utility functions so you avoid reimplementing common transformation logic. ## Core Features & Use Cases - Math & Range Utilities: Use clamp, mapRange, normalize, snap, and wrap to control values feeding into tweens and ScrollTrigger callbacks. - Transformation & Color Utilities: Chain operations with pipe, blend values and colors with interpolate, and distribute values across element collections for staggered layouts. - Use Case: When building a scroll-driven parallax section, map scroll progress to element positions with mapRange, clamp the result to safe bounds, and interpolate background colors across sections. ## Quick Start Use the gsap-utilities skill to map scroll progress to an element's x position with clamping and color interpolation.