This covers the proper lifecycle patterns for using GSAP in Vue, Svelte, and similar component frameworks. It handles the critical timing issues like creating animations after DOM mount and cleaning them up on unmount to prevent memory leaks. The skill emphasizes scoping selectors with gsap.context() so your animations don't accidentally target elements outside your component, which is a common gotcha when multiple component instances exist. It's basically the non-React counterpart to the gsap-react skill, giving you the same level of cleanup safety but with onMounted/onMount instead of useGSAP.
claude skill add greensock/gsap-skills:gsap-frameworks