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 skills add AXIOTN/frontend-page-generator --skill animationsgit clone --depth 1 https://github.com/AXIOTN/frontend-page-generatorWrote 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/skills/axiotn/frontend-page-generator/animations)<a href="https://agentmods.dev/skills/axiotn/frontend-page-generator/animations"><img src="https://agentmods.dev/badge/skills/axiotn/frontend-page-generator/animations.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.00000 | $0.01347 |
| Opus 5 | $0.00000 | $0.00674 |
| Sonnet 5 | $0.00000 | $0.00269 |
| Haiku 4.5 | $0.00000 | $0.00135 |
Grade A, and why
animations 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.
动画效果子技能
概述
提供标准化的动画效果实现,包括 CSS 过渡、滚动动画、GSAP 高级动画等。
CSS 过渡动画
/* 基础过渡 */
.transition-all {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-fast {
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-slow {
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 弹性过渡 */
.transition-bounce {
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
滚动触发动画
export function initScrollAnimations() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-in');
if (entry.target.dataset.once === 'true') {
observer.unobserve(entry.target);
}
} else {
if (entry.target.dataset.once !== 'true') {
entry.target.classList.remove('animate-in');
}
}
});
}, {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
});
document.querySelectorAll('[data-animate]').forEach(el => {
observer.observe(el);
});
return observer;
}
CSS 动画类
/* 滚动动画基础样式 */
[data-animate] {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].animate-in {
opacity: 1;
transform: translateY(0);
}
[data-animate="fade-left"] {
transform: translateX(-30px);
}
[data-animate="fade-left"].animate-in {
transform: translateX(0);
}
[data-animate="fade-right"] {
transform: translateX(30px);
}
[data-animate="fade-right"].animate-in {
transform: translateX(0);
}
[data-animate="scale"] {
transform: scale(0.95);
}
[data-animate="scale"].animate-in {
transform: scale(1);
}
GSAP 高级动画
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);
// 数字递增动画
export function animateCounter(element, endValue, duration = 2) {
const obj = { value: 0 };
gsap.to(obj, {
value: endValue,
duration,
ease: 'power2.out',
onUpdate: () => {
element.textContent = Math.round(obj.value).toLocaleString();
}
});
}
// 卡片悬浮效果
export function initCardHover() {
document.querySelectorAll('.hover-card').forEach(card => {
card.addEventListener('mouseenter', () => {
gsap.to(card, {
y: -10,
boxShadow: '0 20px 40px rgba(0,0,0,0.15)',
duration: 0.3,
ease: 'power2.out'
});
});
card.addEventListener('mouseleave', () => {
gsap.to(card, {
y: 0,
boxShadow: '0 4px 6px rgba(0,0,0,0.1)',
duration: 0.3,
ease: 'power2.out'
});
});
});
}
// 视差滚动
export function initParallax() {
document.querySelectorAll('[data-parallax]').forEach(el => {
const speed = parseFloat(el.dataset.parallax) || 0.5;
gsap.to(el, {
yPercent: -20 * speed,
ease: 'none',
scrollTrigger: {
trigger: el,
start: 'top bottom',
end: 'bottom top',
scrub: true
}
});
});
}
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.
- 8d ago First seen · 221 lines · 0 tokens per session scan A be7de948ee5c
animations is a skill published in the GitHub repository AXIOTN/frontend-page-generator (12 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,347 tokens. 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 skills, from other repositories
chakra-ui-builder
Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…
visual-ralph
Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.
frontend-visual-qa
Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find…
prototype-web
A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.
waitlist-page
A simple waitlist page for collecting email addresses from people interested in a new product or early-access release.
animation-principles
Apply animation principles — easing, staging, follow-through — to one specific UI motion. Use when tuning how an animation feels. For product-wide duration and easing tokens use motion-system (design-systems); for a full interaction spec use micro-interaction-spec.