gsap-skills scrolltrigger.instructions.md

Instructions for building GSAP animations that respond to page scrolling, including triggers, scrubbing, and pinned sections.

In plain words
What is it for?
Use them when writing or reviewing ScrollTrigger code for parallax effects, scroll-driven motion, animation triggers, or pinned sections.
Why use it?
They help keep scroll-linked animation timing, layout, and pinned content working correctly.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/greensock/gsap-skills/scrolltrigger
Clone the repo
git clone --depth 1 https://github.com/greensock/gsap-skills

Made for: GitHub Copilot.

Per session 412 This file is loaded in full into every session.
When invoked 412 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00412 $0.00412
Opus 5 $0.00206 $0.00206
Sonnet 5 $0.00082 $0.00082
Haiku 4.5 $0.00041 $0.00041

Measured yesterday against content hash 40763240d0ce, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

gsap-skills scrolltrigger.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/scrolltrigger.instructions.md · 19 lines

What it actually says

ScrollTrigger — path-specific instructions

When writing or suggesting scroll-linked GSAP code (ScrollTrigger):

  • Register the plugin once: gsap.registerPlugin(ScrollTrigger).
  • Use scrub: true (or a number) for scroll-driven progress; use toggleActions for discrete play/reverse. Do not use both on the same trigger.
  • Put ScrollTrigger on the timeline or a top-level tween, not on a tween that is a child of a timeline (wrong: tl.to(..., { scrollTrigger: {... } }); right: gsap.timeline({ scrollTrigger: {... } }).to(...)).
  • When pinning, do not animate the pinned element itself; animate its children. Use pinSpacing: true (default) so layout does not collapse.
  • Prefer transform properties (x, y, scale, rotation) for the animated element; avoid animating layout properties when possible.
  • For “fake” horizontal scroll (pin a section, content moves horizontally while scrolling vertically), use containerAnimation and set ease: "none" on the horizontal tween so scroll and position stay in sync.
  • start / end format: "triggerPosition viewportPosition" (e.g. "top center", "bottom top"). Use endTrigger if the end is based on a different element.
  • Call ScrollTrigger.refresh() after DOM or layout changes that affect trigger positions (e.g. new content, fonts loaded). Viewport resize is handled automatically.
  • Create ScrollTriggers in top-to-bottom page order, or set refreshPriority so they refresh in that order when creation order differs.
  • When removing elements or changing routes (SPAs), kill ScrollTrigger instances: ScrollTrigger.getAll().forEach(t => t.kill()) or kill by id.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 19 lines · 412 tokens per session scan A 40763240d0ce

Subscribe to this mod's changes

gsap-skills scrolltrigger.instructions.md is an instructions file published in the GitHub repository greensock/gsap-skills (14,577 stars, last pushed 1mo ago), licensed MIT. It adds 412 tokens to every session, about $0.0021 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.