Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bbeierle12 avatar

Gsap Router

  • 93 installs
  • 8 repo stars
  • Updated August 4, 2026
  • bbeierle12/skill-mcp-claude

gsap-router is a Claude Code router skill that dispatches GSAP animation tasks to four specialized skills for fundamentals, sequencing, ScrollTrigger, and React integration.

About

gsap-router is a Claude Code router skill for GreenSock Animation Platform work. It classifies an animation request and routes to four skills covering fundamentals, sequencing, ScrollTrigger, and React integration, with signal matching and confidence scoring. A developer starts here when implementing GSAP tweens, timelines, scroll-based animations, or React animation. It includes common combinations and an easing quick reference.

  • Router for GSAP animation work across 4 specialized skills
  • Signal matching for tweens, timelines, ScrollTrigger, and React integration
  • Easing quick reference and combination patterns for page load and scroll

Gsap Router by the numbers

  • 93 all-time installs (skills.sh)
  • Ranked #1,078 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

gsap-router capabilities & compatibility

Capabilities
skill routing · web animation · scroll animation
Use cases
frontend · orchestration
From the docs

What gsap-router says it does

Routes to 4 specialized skills based on animation requirements.
SKILL.md
Use when implementing animations with GreenSock Animation Platform including tweens, timelines, scroll-based animations, or React integration.
SKILL.md
npx skills add https://github.com/bbeierle12/skill-mcp-claude --skill gsap-router

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs93
repo stars8
Last updatedAugust 4, 2026
Repositorybbeierle12/skill-mcp-claude

What it does

Route GSAP animation tasks to the right fundamentals, sequencing, ScrollTrigger, or React skill.

Who is it for?

Developers implementing GSAP animations who need to pick the right sub-skill.

Skip if: Non-GSAP animation libraries or backend work.

When should I use this skill?

Implementing animations with GSAP including tweens, timelines, scroll animations, or React integration.

What you get

A matched set of GSAP skills to load for the requested animation type.

  • A recommended set of GSAP skills to load

By the numbers

  • Routes to 4 specialized GSAP skills

Files

SKILL.mdMarkdownGitHub ↗

GSAP Router

Routes to 4 specialized skills based on animation requirements.

Routing Protocol

1. Classify — Identify animation type from user request 2. Match — Apply signal matching rules below 3. Combine — Production animations often need 2-3 skills together 4. Load — Read matched SKILL.md files before implementation

Quick Route

Tier 1: Core (Start Here)

NeedSkillSignals
Basic animations, easinggsap-fundamentalstween, animate, ease, from, to, duration, delay
Complex sequencesgsap-sequencingtimeline, sequence, orchestrate, labels, callbacks
Scroll animationsgsap-scrolltriggerscroll, pin, scrub, parallax, reveal, sticky
React integrationgsap-reactReact, useGSAP, ref, hook, cleanup, context

Signal Matching

Primary Signals

gsap-fundamentals:

  • "animate", "tween", "transition"
  • "ease", "easing", "timing"
  • "from", "to", "fromTo"
  • "duration", "delay", "repeat"
  • "stagger", "properties"

gsap-sequencing:

  • "timeline", "sequence", "orchestrate"
  • "labels", "callbacks", "nested"
  • "position parameter", "overlap"
  • "complex animation", "choreography"
  • "play", "pause", "reverse", "seek"

gsap-scrolltrigger:

  • "scroll", "ScrollTrigger"
  • "pin", "sticky", "fixed"
  • "scrub", "parallax"
  • "reveal on scroll", "snap"
  • "progress indicator"

gsap-react:

  • "React", "component"
  • "useGSAP", "useRef", "hook"
  • "cleanup", "context"
  • "event handler", "state"

Confidence Scoring

  • High (3+ signals) — Route directly to matched skill
  • Medium (1-2 signals) — Route with fundamentals as foundation
  • Low (0 signals) — Start with gsap-fundamentals

Common Combinations

Basic Animation (1 skill)

gsap-fundamentals → Tweens, easing, basic properties

React Component Animation (2 skills)

gsap-fundamentals → Animation principles, easing
gsap-react → Hook patterns, cleanup, refs

Scroll-Based Experience (3 skills)

gsap-scrolltrigger → Scroll triggers, pinning
gsap-sequencing → Timeline for pinned sections
gsap-fundamentals → Individual animations

Full Production (3-4 skills)

gsap-fundamentals → Core animations
gsap-sequencing → Complex orchestration
gsap-react → Framework integration
gsap-scrolltrigger → Scroll interactions (if needed)

Decision Table

FrameworkAnimation TypeComplexityRoute To
Vanilla JSSimpleLowfundamentals
Vanilla JSSequencedMediumfundamentals + sequencing
Vanilla JSScroll-basedMediumfundamentals + scrolltrigger
ReactSimpleLowfundamentals + react
ReactComplexHighAll four skills
ReactScrollMediumreact + scrolltrigger

Animation Categories

Motion Type → Skill Mapping

Animation TypePrimary SkillSupporting Skill
Fade in/outgsap-fundamentals-
Slide/movegsap-fundamentals-
Scale/rotategsap-fundamentals-
Staggergsap-fundamentals-
Page transitionsgsap-sequencingfundamentals
Orchestrated revealsgsap-sequencingfundamentals
Scroll revealsgsap-scrolltriggerfundamentals
Parallaxgsap-scrolltrigger-
Pinned sectionsgsap-scrolltriggersequencing
React animationsgsap-reactfundamentals
React + scrollgsap-reactscrolltrigger

Integration with Other Domains

With R3F (r3f-*)

r3f-fundamentals → 3D scene setup
gsap-fundamentals → Object property animation
gsap-sequencing → Camera movements, scene transitions

GSAP animates Three.js object properties via onUpdate.

With Post-Processing (postfx-*)

postfx-composer → Effect setup
gsap-fundamentals → Animate effect parameters
gsap-sequencing → Transition between effect states

GSAP drives effect intensity, colors, etc.

With Audio (audio-*)

audio-playback → Music timing
gsap-sequencing → Sync animations to audio cues
gsap-fundamentals → Audio-reactive property changes

Timeline callbacks sync with audio events.

With Particles (particles-*)

particles-systems → Particle emitters
gsap-fundamentals → Animate emitter properties
gsap-sequencing → Particle burst sequences

Workflow Patterns

Page Load Animation

1. gsap-fundamentals → Understand tweens, easing
2. gsap-sequencing → Build entrance timeline
3. gsap-react → Integrate with React (if applicable)

Scroll Experience

1. gsap-scrolltrigger → Set up triggers, pins
2. gsap-sequencing → Build scrubbed timelines
3. gsap-fundamentals → Individual animation properties

Interactive UI

1. gsap-fundamentals → Hover, click animations
2. gsap-react → Event handlers, cleanup
3. gsap-sequencing → Complex interaction sequences

Temporal Collapse Stack

For the New Year countdown project:

gsap-fundamentals → Digit animations, pulse effects, easing
gsap-sequencing → Countdown sequence, final moment orchestration
gsap-react → Component integration, cleanup

Key animations:

  • Digit flip on time change
  • Pulse/glow intensity over time
  • Final countdown dramatic sequence
  • Celebration reveal at zero

Quick Reference

Task → Skills

TaskPrimarySecondary
"Animate this element"fundamentals-
"Create entrance animation"fundamentalsreact
"Build page transition"sequencingfundamentals
"Animate on scroll"scrolltriggerfundamentals
"React component animation"reactfundamentals
"Pinned scroll section"scrolltriggersequencing
"Complex animation sequence"sequencingfundamentals
"Staggered list animation"fundamentalsreact

Easing Quick Reference

FeelEase
Snappy UIpower2.out
Smooth entrancepower3.out
Playful bounceback.out(1.7)
Springyelastic.out
Ball dropbounce.out
Linear/mechanicalnone

Fallback Behavior

  • No framework stated → Assume vanilla JS, start with gsap-fundamentals
  • React mentioned → Add gsap-react to combination
  • Scroll mentioned → Add gsap-scrolltrigger
  • "Complex" or "sequence" → Add gsap-sequencing
  • Unclear requirements → Start with gsap-fundamentals

Performance Priority

When performance is critical: 1. gsap-fundamentals — Use transforms, avoid layout properties 2. gsap-react — Proper cleanup prevents memory leaks 3. gsap-scrolltrigger — Use scrub wisely, batch updates 4. gsap-sequencing — Reuse timelines, don't recreate

Related skills

FAQ

How many skills does it route to?

Four: gsap-fundamentals, gsap-sequencing, gsap-scrolltrigger, and gsap-react.

What does it route by?

Signal matching with confidence scoring based on the animation type in the request.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.