motion-design

motion-design is a skill for Claude Code from nguyenthienthanh/aura-frog. It costs 74 tokens per session (526 once invoked), scanned A, original, MIT.

A guide to adding restrained, accessible motion to web interfaces with CSS or Framer Motion, a JavaScript animation library.

In plain words
What is it for?
It covers entrance effects, staggered lists, page transitions, and small interactive feedback in web UIs.
Why use it?
It helps keep animations purposeful, lightweight, and usable for people who prefer reduced motion.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the aura-frog plugin — 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers shipped together

Good fit It covers entrance effects, staggered lists, page transitions, and small interactive feedback in web UIs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nguyenthienthanh/aura-frog/motion-design
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 nguyenthienthanh/aura-frog --skill motion-design
Clone the repo
git clone --depth 1 https://github.com/nguyenthienthanh/aura-frog

Made for: Claude Code.

Or install aura-frog, the plugin that ships this one along with the rest of its 43 skills, 24 commands, 15 agents, 10 hooks, 6 MCP servers.

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 motion-design

README.md
[![agentmods](https://agentmods.dev/badge/skills/nguyenthienthanh/aura-frog/motion-design/github.svg)](https://agentmods.dev/skills/nguyenthienthanh/aura-frog/motion-design)
Your own site
<a href="https://agentmods.dev/skills/nguyenthienthanh/aura-frog/motion-design"><img src="https://agentmods.dev/badge/skills/nguyenthienthanh/aura-frog/motion-design/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 motion-design

Your own site · 80×15
<a href="https://agentmods.dev/skills/nguyenthienthanh/aura-frog/motion-design"><img src="https://agentmods.dev/badge/skills/nguyenthienthanh/aura-frog/motion-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 526 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00074 $0.00526
Opus 5 $0.00037 $0.00263
Sonnet 5 $0.00015 $0.00105
Haiku 4.5 $0.00007 $0.00053

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

Security

Grade A, and why

motion-design 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 5d 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.

aura-frog/skills/motion-design/SKILL.md · 33 lines

What it actually says

AI-consumed reference. Taste + technique for motion; the perf ceiling is owned by rules/agent/frontend-excellence.md — cross-reference its budget, don't restate it.

Motion Design

Motion should clarify, not decorate. Small, fast, purposeful. House style: subtle — no bouncy/springy overshoot as decoration, no infinite loops competing for attention.

prefers-reduced-motion is MANDATORY

Every motion example MUST honor it — non-negotiable. Wrap transitions so reduced-motion collapses them to an instant (opacity-only or none):

@media (prefers-reduced-motion: reduce) { *, ::before, ::after { animation: none !important; transition: none !important; } }

In Framer Motion, gate variants on useReducedMotion() and drop transforms.

Two tools, matched to impact

  • CSS-only for reveals/stagger (cheapest, no JS): stagger via animation-delay: calc(var(--i) * 60ms) on a keyframed fade-up. Use for hero/list entrance where you don't need interaction.
  • Framer Motion for stateful/interactive motion: declarative variants + initial/animate, shared layout, gesture. Prefer it only where CSS can't express the state.

Bundle discipline

Framer Motion is heavy — use LazyMotion + m. components (load domAnimation features on demand) instead of the full motion. import. This keeps it within the frontend-excellence perf budget.

Audit before shipping

  • AnimatePresence gaps: exit animations silently do nothing unless the leaving element is wrapped in <AnimatePresence>. Check every conditional/route unmount.
  • Reduced-motion path actually tested (not just declared).

See also: rules/agent/frontend-excellence.md, and the frontend-aesthetics skill.

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. 5d ago First seen · 33 lines · 74 tokens per session scan A 89ac569f4107

Subscribe to this mod's changes

motion-design is a skill published in the GitHub repository nguyenthienthanh/aura-frog (24 stars, last pushed 4d ago), licensed MIT. It adds 74 tokens to every session and 526 once invoked, about $0.0004 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.