GS
This repository contains **GSAP (GreenSock Animation Platform) skills** for AI coding agents. When editing or adding skills, follow these rules.
Install
mkdir -p .claude/skills/gsap-facundo-cachan && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15789" && unzip -o skill.zip -d .claude/skills/gsap-facundo-cachan && rm skill.zipInstalls to .claude/skills/gsap-facundo-cachan
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
This repository contains **GSAP (GreenSock Animation Platform) skills** for AI coding agents. When editing or adding skills, follow these rules.144 chars · catalog description✓ has a “when” trigger
About this skill
Guidance for AI Agents Working in This Repo
This repository contains GSAP (GreenSock Animation Platform) skills for AI coding agents. When editing or adding skills, follow these rules.
Repo structure
- skills/ — Each subdirectory is one skill. The CLI and agents discover skills by scanning
skills/for directories that containSKILL.md. - Skill directory name must exactly match the
namein that skill’s frontmatter (e.g.skills/gsap-core/↔name: gsap-core).
SKILL.md requirements
- Frontmatter (YAML):
name(required): lowercase, hyphens only, max 64 chars, must match parent directory name.description(required): what the skill does and when to use it; include trigger terms so agents know when to apply it. Max 1024 chars.license(optional): e.g.MITif the skill is under the repo license.
- Body: Markdown instructions. Keep under ~500 lines; put long reference material in
references/orscripts/and link from SKILL.md.
Conventions
- Write descriptions in third person (e.g. "Use when…" not "You can use when…").
- Be concise; avoid restating general GSAP docs. Focus on correct API usage, pitfalls, and cleanup.
- When adding a new skill: create
skills/<skill-name>/SKILL.md, then update README.md "Skills" table and "Structure" section.