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/taotao135791-bit/gsap-transform/gsap-pluginsgit clone --depth 1 https://github.com/taotao135791-bit/gsap-transformWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/taotao135791-bit/gsap-transform/gsap-plugins)<a href="https://agentmods.dev/instructions/taotao135791-bit/gsap-transform/gsap-plugins"><img src="https://agentmods.dev/badge/instructions/taotao135791-bit/gsap-transform/gsap-plugins.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00500 | $0.00500 |
| Opus 5 | $0.00250 | $0.00250 |
| Sonnet 5 | $0.00100 | $0.00100 |
| Haiku 4.5 | $0.00050 | $0.00050 |
Grade A, and why
gsap-transform gsap-plugins.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 5d ago.
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
GSAP plugins — path-specific instructions
When using GSAP plugins (SplitText, MorphSVG, DrawSVG, MotionPath, Flip, Draggable, Inertia, Observer, CustomEase, CustomWiggle, ScrambleText, ScrollSmoother, Physics2D):
- Register every plugin once:
gsap.registerPlugin(SplitText, MorphSVGPlugin, ...). Without registration, the plugin is silently dropped in production builds. - All plugins are free since Webflow acquisition. Install from
gsapnpm package; no.npmrc/ auth token / Club membership.
Browser-native ESM CDN (no bundler):
- Use
https://esm.sh/[email protected]for the core,https://esm.sh/[email protected]/<PluginName>for plugins. - Always use default imports for plugins from
esm.sh(import ScrollTrigger from "...";). Named imports may resolve toundefined. - Do NOT use
cdn.jsdelivr.net/npm/gsap/<Plugin>.js— module graph breaks in browsers.
Plugin-specific:
- MotionPath and DrawSVG: accept
<path>elements only. Convert<circle>,<rect>,<ellipse>to a<path>first. - MorphSVG: writes to the SVG
<path>dattribute, not inline CSS.clearPropsdoes not restored. Capture the originaldat load time and restore it manually in any reset function. - SplitText: revert before re-running on the same element (
splitInstance.revert()); otherwise nested splits accumulate. - Flip:
Flip.getState(els)→ DOM change →Flip.from(state, {...})for layout transitions. - Draggable + InertiaPlugin: use
type: "x"(or"x,y", or"rotation") andinertia: truefor momentum.
Exporting motion as transparent video is documented in skills/gsap-plugins/SKILL.md "Exporting GSAP SVG motion as video" section (Puppeteer + FFmpeg, ProRes 4444 alpha or VP9 alpha WebM).
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.
- 5d ago First seen · 25 lines · 500 tokens per session scan A a5add9413e22
gsap-transform gsap-plugins.instructions.md is an instructions file published in the GitHub repository taotao135791-bit/gsap-transform (2 stars, last pushed 2mo ago), licensed MIT. It adds 500 tokens to every session, about $0.0025 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-31.
Other instructions, from other repositories
weapp-tailwindcss CLAUDE.md
Claude Code instructions for sonofmagic/weapp-tailwindcss, covering claude.md, project overview, monorepo structure, common development commands and build.
tidyfactor-design AGENTS.md
Instructions for alwkala/tidyfactor-design, covering ⚡ skill & 24 modular slash commands (7 lifecycle stages) and critical architecture (non-negotiable).
fern-marketing-site-template AGENTS.md
AGENTS.md instructions for fern-api/fern-marketing-site-template, covering agents.md, authoring rules, 1. design tokens, not raw values, 2. use cn() for conditional classes and 3. every page exports metadata; url structure is sacred.
sin-frontend-design
OpenSIN-Code Skill — SOTA frontend design system + philosophy (Anthropic-compatible). Use when the user asks for design tokens, component specs (button, input, card, modal), page scaffolding, UI review, design-token extraction, WCAG a11y checks, responsive breakpoints, or Figma export. Falls back to templates if…
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.