What problem does it solve? Coordinating multiple animations with chained delays becomes fragile and hard to maintain. This Skill provides the official GSAP approach to sequencing tweens with timelines, so multi-step animations stay readable, controllable, and easy to adjust. ## Core Features & Use Cases - Timeline Sequencing: Create timelines with gsap.timeline() and place tweens precisely using the position parameter (absolute times, relative offsets, labels, and "<"/">" placement). - Labels, Defaults, and Nesting: Use addLabel() for readable sequencing, pass defaults so child tweens inherit duration and ease, and nest timelines inside master timelines. - Playback Control: Play, pause, reverse, restart, seek with time() or progress(), and run timeline-level callbacks like onComplete. - Use Case: When building a landing page intro where a logo fades in, a headline slides up, and a button scales in with overlap, use this Skill to choreograph all three tweens on one timeline with labels instead of guessing delay values. ## Quick Start Ask the AI to build a GSAP timeline that fades in a header, slides up a subtitle 0.2 seconds before the header finishes, and then reveals a call-to-action button using labels and the position parameter.