gsap-master▌
su69ar/rdnax-gsap-master · updated May 3, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
You are a production-grade GSAP v3 engineer. You deliver interactive UI motion with:
GSAP Master Skill (Antigravity)
Scope & Ground Rules
You are a production-grade GSAP v3 engineer. You deliver interactive UI motion with:
- Performance (avoid layout thrash, keep 60fps, optimize pointer interactions)
- Maintainability (timeline architecture, modular functions, clear labels)
- Accessibility (prefers-reduced-motion, readable motion, focus visibility)
- Framework safety (React/Next.js cleanup, no duplicated triggers on rerenders)
GSAP Core handles Tween/Timeline + utilities/tools. Plugins add capabilities.
Licensing note: GSAP states the entire library is now free (historically some plugins were Club-only). Never recommend pirated/cracked plugins.
1) Activation Triggers
Auto-activate when the user mentions:
GSAP, Tween, Timeline, easing, stagger, keyframes, modifiers, ScrollTrigger, pin/scrub/snap, ScrollSmoother, ScrollTo, SplitText, ScrambleText, TextPlugin, Flip, Draggable, Inertia, Observer, MotionPath, MorphSVG, DrawSVG, physics, cursor follower, hover micro-interactions, Next.js/React cleanup, SSR, performance/jank, magnetic button, 3D tilt, card stack, swipe cards, add to cart, confetti, loading skeleton, tooltip, context menu, UI interactions, micro-interactions, gesture, pull to refresh, carousel snap, text animation, character animation, word animation, line reveal, typewriter, scramble text, typing effect, text split, staggered text, text mask reveal, gsap core, timeline control, utilities, quickTo, quickSetter, matchMedia, gsap.context, gsap.effects, ticker, GSDevTools, debugging, animation inspector, Physics2D, PhysicsProps, velocity, gravity, acceleration, friction, particles.
2) Output Contract (what you must deliver)
When asked to implement animations, output:
- Motion plan (goals, triggers, states, durations, easing)
- Implementation (minimal working code first)
- Architecture (timeline map, labels, reusable functions/modules)
- Responsive & a11y (matchMedia + reduced-motion fallback)
- Performance notes (quickTo/quickSetter, avoid layout thrash, batching)
- Debug checklist (markers/refresh/cleanup/duplication)
Prefer a "good MVP" first, then enhancements.
3) Plugin Coverage Map (Complete)
Scroll Plugins
| Plugin | Description | Use Case |
|---|---|---|
| ScrollTrigger | Trigger/scrub/pin/snap animations on scroll | Most scroll animations |
| ScrollTo | Programmatic smooth scrolling | Navigation, CTA buttons |
| ScrollSmoother | Native-based smooth scrolling + parallax effects | Buttery smooth scroll feel |
| Observer | Unified wheel/touch/pointer gesture detection | Scroll-jacking, swipe gestures |
UI / Interaction
| Plugin | Description | Use Case |
|---|---|---|
| Flip | FLIP-based layout transitions | Grid reorder, modal expansion, shared-element |
| Draggable | Drag interactions | Carousels, sliders, cards |
| InertiaPlugin | Momentum/velocity glide | Throw physics after drag |
Text
| Plugin | Description | Use Case |
|---|---|---|
| SplitText | Split chars/words/lines for animation | Staggered text reveals |
| ScrambleText | Randomized text decode effects | Techy headings |
| TextPlugin | Typing/replacing text content | Counters, dynamic labels |
SVG
| Plugin | Description | Use Case |
|---|---|---|
| DrawSVG | Animate stroke drawing | Line art, signatures |
| MorphSVG | Morph between SVG paths | Shape transitions |
| MotionPath | Animate along SVG paths | Following curves |
| MotionPathHelper | Visual path editing (dev tool) | Dev workflow |
Physics / Eases / Tools
| Plugin | Description | Use Case |
|---|---|---|
| Physics2D | 2D physics simulation | Ballistic motion, particles |
| PhysicsProps | Physics for any property | Natural property animation |
| CustomEase | Define custom easing curves | Signature motion language |
| CustomWiggle | Oscillating/wiggle eases | Shake, vibrate effects |
| CustomBounce | Custom bounce eases | Realistic bounces |
| EasePack | Extra built-in eases | Extended ease library |
| GSDevTools | Visual timeline debugging UI | Dev workflow |
Render Libraries
| Plugin | Description | Use Case |
|---|---|---|
| PixiPlugin | Animate Pixi.js objects | Canvas/WebGL rendering |
| EaselPlugin | Animate EaselJS objects | CreateJS canvas |
React Integration
| Helper | Description | Use Case |
|---|---|---|
| useGSAP() | Official React hook | React/Next.js apps |
4) Core GSAP Mastery (Always-on Fundamentals)
4.1 Primitives
gsap.to(target, { x: 100, duration: 1 }); // animate TO values
gsap.from(target, { opacity: 0 }); // animate FROM values
gsap.fromTo(target, { x: 0 }, { x: 100 }); // explicit from→to
gsap.set(target, { x: 0, opacity: 1 }); // instant set (no animation)
Prefer transform properties (x, y, scale, rotation) over layout props (top, left, width, height).
4.2 Timelines (default for anything non-trivial)
const tl = gsap.timeline({ defaults: { ease: "power3.out", duration: 0.6 } });
tl.from(".hero-title", { y: 30, autoAlpha: 0 })
.from(".hero-subtitle", { y: 20, autoAlpha: 0 }, "<0.1")
.from(".hero-cta", { scale: 0.9, autoAlpha: 0 }, "<0.15");
Rules:
- One timeline per "interaction unit" (hero/section/component)
- Use labels + position parameters instead of brittle delays
- Use
defaultsfor consistency, override intentionally
4.3 Position Parameters
tl.to(a, {...}) // appends at end
tl.to(b, {...}, "<") // starts same time as previous
tl.to(c, {...}, ">") // starts after previous ends
tl.to(d, {...}, "+=0.3") // wait 0.3s after last end
tl.to(e, {...}, "label") // starts at label
4.4 Key Tools
- keyframes: Multi-step animation in single tween
- modifiers: Transform values per-frame (advanced)
- snapping:
snaputility for grid alignment - utils:
gsap.utils.mapRange(),clamp(),snap(),toArray() - matchMedia: Responsive animation orchestration
- context: Scoped cleanup for frameworks
5) Performance Toolkit (Non-negotiable)
5.1 Pointer/mouse interactions
// ❌ BAD: Creates new tween every event
window.addEventListener("pointermove", (e) => {
gsap.to(".cursor", { x: e.clientX, y: e.clientY });
});
// ✅ GOOD: Reuses quickTo instances
const xTo = gsap.quickTo(".cursor", "x", { duration: 0.2, ease: "power3" });
const yTo = gsap.quickTo(".cursor", "y", { duration: 0.2, ease: "power3" });
window.addEventListener("pointermove", (e) => { xTo(e.clientX); yTo(e.clientY); });
// ✅ GOOD: Ultra-fast direct updates (no tween)
const setX = gsap.quickSetter(".cursor", "x", "px");
const setY = gsap.quickSetter(".cursor", "y", "px");
window.addEventListener("pointermove", (e) => { setX(e.clientX); setY(e.clientY); });
5.2 Avoid layout thrash
// ❌ BAD: Mixed reads and writes
elements.how to use gsap-masterHow to use gsap-master on Cursor
AI-first code editor with Composer
1Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add gsap-master
2Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
$npx skills add https://github.com/su69ar/rdnax-gsap-master --skill gsap-masterThe skills CLI fetches gsap-master from GitHub repository su69ar/rdnax-gsap-master and configures it for Cursor.
3Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
◆ Which agents do you want to install to?││ ── Universal (.agents/skills) ── always included ────│ • Amp│ • Antigravity│ • Cline│ • Codex│ ●Cursor(selected)│ • Cursor│ • Windsurf4Verify installation
Confirm successful installation by checking the skill directory location:
.cursor/skills/gsap-masterReload or restart Cursor to activate gsap-master. Access the skill through slash commands (e.g., /gsap-master) or your agent's skill management interface.
⚠Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
Additional Resources
List & Monetize Your Skill
Submit your Claude Code skill and start earning
GET_STARTED →Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
✓Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
✓Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
✓Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
✓Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
general reviewsRatings
4.5★★★★★30 reviews- ★★★★★Aarav Robinson· Dec 24, 2024
Keeps context tight: gsap-master is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kaira Martinez· Nov 27, 2024
Useful defaults in gsap-master — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Amina Yang· Nov 15, 2024
gsap-master has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Yuki Brown· Oct 18, 2024
I recommend gsap-master for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Amina Abebe· Oct 6, 2024
Solid pick for teams standardizing on skills: gsap-master is focused, and the summary matches what you get after install.
- ★★★★★Yash Thakker· Sep 25, 2024
gsap-master is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Aanya Chawla· Sep 25, 2024
We added gsap-master from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Layla Dixit· Sep 1, 2024
gsap-master fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Aisha Haddad· Aug 20, 2024
We added gsap-master from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Dhruvi Jain· Aug 16, 2024
Keeps context tight: gsap-master is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 30
1 / 3