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 LuuOW/meridian-mcp --skill framer-motiongit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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/luuow/meridian-mcp/framer-motion)<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.
<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>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.00029 | $0.01304 |
| Opus 5 | $0.00015 | $0.00652 |
| Sonnet 5 | $0.00006 | $0.00261 |
| Haiku 4.5 | $0.00003 | $0.00130 |
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.
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-motionand usemotion.*wrappers selectively. - Respect user preference with
useReducedMotionand 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>
)
}
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.
- 10d ago First seen · 185 lines · 29 tokens per session scan A 25780b30cc4e
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.
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.
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…
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…
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.
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.
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.