Framer Motion

Framer Motion is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 29 tokens per session (1,304 once invoked), scanned A, original, MIT.

A guide to adding movement and interaction feedback to React interfaces with the Framer Motion animation library. It covers list reveals, exit effects, shared layouts, gestures, accessibility, and performance-aware animation choices.

In plain words
What is it for?
Use it to set up Framer Motion, animate state changes and lists, build tactile interactions, and coordinate reusable transitions.
Why use it?
It helps make interface changes easier to understand while respecting reduced-motion preferences and avoiding unnecessarily expensive animations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to set up Framer Motion, animate state changes and lists, build tactile interactions, and coordinate reusable transitions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/framer-motion
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.

Any agent
npx skills add LuuOW/meridian-mcp --skill framer-motion
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

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 Framer Motion

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/framer-motion/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/framer-motion)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/framer-motion"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/framer-motion/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Framer Motion

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/framer-motion"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/framer-motion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,304 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.00029 $0.01304
Opus 5 $0.00015 $0.00652
Sonnet 5 $0.00006 $0.00261
Haiku 4.5 $0.00003 $0.00130

Measured 10d ago against content hash 25780b30cc4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

Framer Motion 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 10d 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.

skills/framer-motion/SKILL.md · 185 lines

How it starts

The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Framer Motion Skill Guide

Objective

Deliver meaningful UI motion that improves clarity and feedback without degrading accessibility or performance.

1) Setup and Baseline

npm i framer-motion
  • Import from framer-motion and use motion.* wrappers selectively.
  • Respect user preference with useReducedMotion and reduced-motion variants.
  • Define shared transitions in a small motion config module for consistency.

2) Motion Principles

  • Animate for meaning: state change, hierarchy, feedback, orientation.
  • Keep durations tight (typically 120ms to 320ms) for UI interactions.
  • Favour opacity/transform animations; avoid expensive layout thrashing.
  • Use spring transitions for tactile micro-interactions and tween for deterministic sequencing.

3) Core Animation Patterns

Staggered Reveal

import { motion } from 'framer-motion'

const list = {
  hidden: {},
  show: {
    transition: { staggerChildren: 0.06, delayChildren: 0.04 },
  },
}
const item = {
  hidden: { opacity: 0, y: 8 },
  show:   { opacity: 1, y: 0, transition: { duration: 0.2 } },
}

export function StaggeredList({ items }: { items: string[] }) {
  return (
    <motion.ul initial="hidden" animate="show" variants={list} className="space-y-2">
      {items.map((label) => (
        <motion.li key={label} variants={item} className="rounded border p-3">
          {label}
        </motion.li>
      ))}
    </motion.ul>
  )
}

Exit Transitions with AnimatePresence

import { AnimatePresence, motion } from 'framer-motion'

export function Toast({ open, message }: { open: boolean; message: string }) {
  return (
    <AnimatePresence mode="wait">
      {open ? (
        <motion.div
          key="toast"
          initial={{ opacity: 0, y: 12 }}
          animate={{ opacity: 1, y: 0 }}
          exit={{ opacity: 0, y: 8 }}
          transition={{ duration: 0.18 }}
          className="rounded-md bg-slate-900 px-4 py-2 text-white"
        >
          {message}
        </motion.div>
      ) : null}
    </AnimatePresence>
  )
}

Read the full file on GitHub · 185 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. 10d ago First seen · 185 lines · 29 tokens per session scan A 25780b30cc4e

Subscribe to this mod's changes

Framer Motion is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 1,304 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

motion-dev

Use when React animation library — spring physics, gesture animations, layout animations, scroll effects, SVG path drawing. Successor to Framer Motion. Use when building UI animations, micro-interactions, page transitions, shared element transitions, parallax effects.

oyi77/1ai-skills · 53 tokens

motion-foundations

Motion tokens, spring presets, performance rules, device adaptation, accessibility enforcement, and SSR safety for React / Next.js using motion/react. Foundation layer — all other motion skills depend on this. Use when setting up motion tokens, spring presets, reduced-motion handling, or SSR-safe animation in React or…

gongyijie85/dsh-ecc · 66 tokens

motion-advanced

Advanced motion patterns for React / Next.js — drag & drop, gestures, text animations, SVG path drawing, custom hooks, imperative sequences (useAnimate), loaders, and the full API decision tree. Requires motion-foundations. Use when building drag and drop, gestures, text or SVG animation, or imperative animation…

gongyijie85/dsh-ecc · 73 tokens

motion-patterns

Production-ready animation patterns for React / Next.js — button, modal, toast, stagger, page transitions, exit animations, scroll, and layout — built on motion-foundations tokens and springs. Use when animating a specific UI element in React or Next.js — button, modal, toast, stagger, page transition, or scroll.

gongyijie85/dsh-ecc · 70 tokens

motion-patterns

Production-ready animation patterns for React / Next.js — button, modal, toast, stagger, page transitions, exit animations, scroll, and layout — built on motion-foundations tokens and springs. Use when animating a specific UI element in React or Next.js — button, modal, toast, stagger, page transition, or scroll.

userInner/SKILLS · 70 tokens

motion-patterns

Production-ready animation patterns for React / Next.js — button, modal, toast, stagger, page transitions, exit animations, scroll, and layout — built on motion-foundations tokens and springs.

ronmkr/PromptBook · 42 tokens