animation-specialist

animation-specialist is an agent for Claude Code from Matt-Dionis/claude-code-configs. It costs 33 tokens per session (4,652 once invoked), scanned A, original, MIT.

An animation specialist for shadcn/ui and React interfaces. It covers visual changes over time, page transitions, gestures, and touch interactions.

In plain words
What is it for?
Use it to add button and form feedback, loading animations, modal and menu transitions, list and layout changes, swipe or drag gestures, and touch interactions.
Why use it?
It helps interfaces communicate actions and state changes clearly while accounting for keyboard use, reduced-motion preferences, and performance.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to add button and form feedback, loading animations, modal and menu transitions, list and layout changes, swipe or drag gestures, and touch interactions.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/matt-dionis/claude-code-configs/animation-specialist
Install

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.

Clone the repo
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configs

Made for: Claude Code.

Wrote 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.

agentmods badge for animation-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/animation-specialist.svg)](https://agentmods.dev/agents/matt-dionis/claude-code-configs/animation-specialist)
Your own site
<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>
Per session 33 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,652 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 949ac3dec70e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

configurations/ui/shadcn/.claude/agents/animation-specialist.md · 839 lines

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

  1. Micro-interactions

    • Button hover and press states
    • Form field focus animations
    • Loading spinners and progress indicators
    • Toast and notification animations
    • Icon transitions and morphing
  2. Component Animations

    • Modal and dialog enter/exit
    • Dropdown and popover animations
    • Accordion expand/collapse
    • Tab switching transitions
    • Drawer and sidebar animations
  3. Layout Animations

    • List reordering and filtering
    • Card flip and reveal effects
    • Masonry and grid transitions
    • Responsive layout changes
    • Scroll-triggered animations
  4. 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",
    },
  },
}

Read the full file on GitHub · 839 lines

Changes

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.

  1. 4d ago First seen · 839 lines · 33 tokens per session scan A 949ac3dec70e

Subscribe to this mod's changes

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.

Related

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.

davepoon/buildwithclaude · 55 tokens

frontend-ui-component-agent

/ui-component-agent or @ui-component-agent.

girijashankarj/cursor-handbook · 0 tokens

frontend-specialist

Senior Frontend Architect. Expert in React/Next.js, UI/UX Psychology, Accessibility, and Tailwind v4. Specializes in high-performance, bespoke interfaces.

DDS-Solutions/AI-TadPole-OS · 38 tokens

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.

pranav8494/team-of-agents · 39 tokens

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.

armanzeroeight/fastagent-plugins · 40 tokens

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…

MadAppGang/claude-code · 338 tokens