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.
npx agentmods add instructions/greensock/gsap-skills/scrolltriggergit clone --depth 1 https://github.com/greensock/gsap-skillsWhat 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.
| Model | Per session | Once 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 |
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.
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"). UseendTriggerif 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.
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.
- yesterday First seen · 19 lines · 412 tokens per session scan A 40763240d0ce
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.
Other instructions, from other repositories
Paperlab AGENTS.md
Instructions for NourMtir0722/Paperlab, covering paperlab — for coding agents, integrating paperlab into a project, stage mode — paper as architecture, content types and lighting is data, not an enum.
markdy-com copilot-instructions.md
Instructions for HoangYell/markdy-com, a project described as: 🎬 Open-source animated architecture diagrams as code. Diagram-native DSL, 17 layout engines, Web Animations API, and MCP server for AI agents.
diffusers AGENTS.md
Instructions for huggingface/diffusers, a project described as: 🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
comfy-prompt-studio AGENTS.md
Instructions for yxhpy/comfy-prompt-studio, covering agents.md - ai 代理配置文档, ai 提供商, 1. ollama (默认), 2. gemini and 提示词生成服务.
davinci-resolve-mcp AGENTS.md
Instructions for apvlv/davinci-resolve-mcp, covering project knowledge base, structure, where to look, code map and conventions.
lianhuanhua-skills AGENTS.md
Instructions for littlewindy123/lianhuanhua-skills, covering agents.md, project goal, architecture rules, commands and before committing.