npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gsap-animation-helper-skill

v1.0.0

Published

Claude AI skill for professional GSAP animations. Provides expert guidance on Tweens, Timelines, ScrollTrigger, and other GSAP features.

Readme

GSAP Animation Helper Skill

A modular Claude AI skill for creating professional animations with GSAP (GreenSock Animation Platform).

What is This?

This is a Claude AI skill that extends Claude's knowledge for GSAP animations. It's designed with a modular structure for efficient agent usage - loading only the specific documentation needed for each query.

Structure

gsap-skill/
├── SKILL.md                 # Entry point with decision tree
├── plugins/
│   ├── scroll-trigger.md    # ScrollTrigger plugin
│   ├── scroll-smoother.md   # ScrollSmoother plugin
│   ├── split-text.md        # SplitText plugin
│   ├── flip.md              # Flip plugin
│   ├── draggable.md         # Draggable + Inertia
│   ├── observer.md          # Observer plugin
│   ├── draw-svg.md          # DrawSVG plugin
│   ├── morph-svg.md         # MorphSVG plugin
│   ├── motion-path.md       # MotionPath plugin
│   ├── text-plugins.md      # Text + ScrambleText
│   └── physics.md           # Physics2D + PhysicsProps
├── frameworks/
│   ├── react.md             # React + useGSAP hook
│   ├── nextjs.md            # Next.js SSR handling
│   └── vanilla.md           # Vanilla JS patterns
├── reference/
│   ├── core-methods.md      # gsap.to, set, timeline, etc.
│   ├── utilities.md         # gsap.utils methods
│   └── easing.md            # All easing functions
└── examples/                # Code examples

Why Modular?

  1. Efficient - Load only what's needed (e.g., ScrollTrigger query → read plugins/scroll-trigger.md only)
  2. Maintainable - Update individual plugins without touching everything
  3. Scalable - Easy to add new plugins/frameworks
  4. Token-efficient - ~150 lines per file instead of 1000+ in one file

How It Works

  1. Agent reads SKILL.md (entry point with decision tree)
  2. Based on user's question, agent reads the relevant file(s)
  3. Agent provides targeted, accurate answer

Example Flow

User: "How do I use ScrollTrigger with React?"

Agent:

  1. Reads SKILL.md → sees decision tree
  2. Reads plugins/scroll-trigger.md for ScrollTrigger info
  3. Reads frameworks/react.md for React patterns
  4. Combines knowledge to answer

Quick Reference

| Topic | File | |-------|------| | Basic animations | reference/core-methods.md | | Scroll animations | plugins/scroll-trigger.md | | Smooth scrolling | plugins/scroll-smoother.md | | Text effects | plugins/split-text.md | | SVG drawing | plugins/draw-svg.md | | Shape morphing | plugins/morph-svg.md | | Path animation | plugins/motion-path.md | | Layout animation | plugins/flip.md | | Drag & drop | plugins/draggable.md | | Input handling | plugins/observer.md | | Physics | plugins/physics.md | | React | frameworks/react.md | | Next.js | frameworks/nextjs.md | | Vanilla JS | frameworks/vanilla.md | | Easing | reference/easing.md | | Utilities | reference/utilities.md |

Installation

For GSAP

npm install gsap

For This Skill

Point Claude to the SKILL.md file or include the skill in your Claude configuration.

GSAP Resources

  • Official Docs: https://gsap.com/docs/v3/
  • Cheatsheet: https://gsap.com/cheatsheet
  • Easing Visualizer: https://gsap.com/docs/v3/Eases/
  • Community: https://gsap.com/community/

License

This skill is MIT licensed.

Note: GSAP itself has its own licensing - core is free, some plugins require Club GSAP membership. See https://gsap.com/pricing/