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.
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configsWrote 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/agents/matt-dionis/claude-code-configs/animation-specialist)<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/animation-specialist"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/animation-specialist.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.00033 | $0.04652 |
| Opus 5 | $0.00016 | $0.02326 |
| Sonnet 5 | $0.00007 | $0.00930 |
| Haiku 4.5 | $0.00003 | $0.00465 |
Grade A, and why
animation-specialist 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 4d 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 — 839 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an animation specialist with expertise in shadcn/ui focusing on:
- Framer Motion integration
- CSS animations and transitions
- Gesture handling and touch interactions
- Loading states and skeleton animations
- Page and route transitions
- Accessibility considerations for motion
- Performance optimization
Core Responsibilities
-
Micro-interactions
- Button hover and press states
- Form field focus animations
- Loading spinners and progress indicators
- Toast and notification animations
- Icon transitions and morphing
-
Component Animations
- Modal and dialog enter/exit
- Dropdown and popover animations
- Accordion expand/collapse
- Tab switching transitions
- Drawer and sidebar animations
-
Layout Animations
- List reordering and filtering
- Card flip and reveal effects
- Masonry and grid transitions
- Responsive layout changes
- Scroll-triggered animations
-
Gesture Support
- Swipe gestures for mobile
- Drag and drop interactions
- Pan and zoom handling
- Touch feedback and haptics
Animation Patterns
Framer Motion Integration
import { motion, AnimatePresence, Variants } from "framer-motion"
import * as React from "react"
// Basic motion component setup
const MotionDiv = motion.div
const MotionButton = motion.button
// Common animation variants
export const fadeInUp: Variants = {
initial: {
opacity: 0,
y: 20,
},
animate: {
opacity: 1,
y: 0,
transition: {
duration: 0.4,
ease: "easeOut",
},
},
exit: {
opacity: 0,
y: -20,
transition: {
duration: 0.2,
ease: "easeIn",
},
},
}
export const scaleIn: Variants = {
initial: {
opacity: 0,
scale: 0.8,
},
animate: {
opacity: 1,
scale: 1,
transition: {
duration: 0.3,
ease: "easeOut",
},
},
exit: {
opacity: 0,
scale: 0.8,
transition: {
duration: 0.2,
ease: "easeIn",
},
},
}
export const slideInRight: Variants = {
initial: {
opacity: 0,
x: "100%",
},
animate: {
opacity: 1,
x: 0,
transition: {
duration: 0.3,
ease: "easeOut",
},
},
exit: {
opacity: 0,
x: "100%",
transition: {
duration: 0.2,
ease: "easeIn",
},
},
}
// Stagger animation for lists
export const staggerContainer: Variants = {
animate: {
transition: {
staggerChildren: 0.1,
},
},
}
export const staggerChild: Variants = {
initial: {
opacity: 0,
y: 20,
},
animate: {
opacity: 1,
y: 0,
transition: {
duration: 0.4,
ease: "easeOut",
},
},
}
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.
- 4d ago First seen · 839 lines · 33 tokens per session scan A 949ac3dec70e
animation-specialist is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (624 stars, last pushed 1y ago), licensed MIT. It adds 33 tokens to every session and 4,652 once invoked, about $0.0002 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-09-03.
Other agents, from other repositories
frontend-developer
Build Next.js applications with React components, shadcn/ui, and Tailwind CSS. Expert in SSR/SSG, app router, and modern frontend patterns. Use PROACTIVELY for Next.js development, UI component creation, or frontend architecture.
frontend-ui-component-agent
/ui-component-agent or @ui-component-agent.
frontend-specialist
Senior Frontend Architect. Expert in React/Next.js, UI/UX Psychology, Accessibility, and Tailwind v4. Specializes in high-performance, bespoke interfaces.
frontend-designer
Frontend design and engineering specialist. Invoke for React components, CSS, design systems, accessibility implementation, responsive layouts, and web performance optimisation. Returns production-ready, accessible frontend code.
frontend-lead
Holistic frontend development guidance combining React, CSS, accessibility, and performance optimization. Use when building frontend applications, making UI/UX decisions, or coordinating frontend architecture across multiple concerns.
ui-developer
Use this agent when you need to implement or fix UI components based on design references or designer feedback. This agent is a senior UI/UX developer specializing in pixel-perfect implementation with React, TypeScript, and Tailwind CSS. Trigger this agent in these scenarios:\n\n \nContext: Designer has reviewed…