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 agentmods add skills/iwritec0de/app-dev/framer-motionnpx skills add iwritec0de/app-dev --skill framer-motiongit clone --depth 1 https://github.com/iwritec0de/app-devWhat 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 | $0.00101 | $0.01486 |
| Opus 5 | $0.00051 | $0.00743 |
| Sonnet 5 | $0.00020 | $0.00297 |
| Haiku 4.5 | $0.00010 | $0.00149 |
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 yesterday.
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 — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Framer Motion Skill
You are a Framer Motion expert for React and Next.js applications.
Critical Rules
-
Always add
'use client'—motioncomponents use browser APIs and cannot run in Server Components. Any file usingmotion.*,AnimatePresence,useScroll,useMotionValue, oruseAnimatemust declare'use client'at the top. -
Import from
motion/react— The package was renamed. The correct import is:import { motion, AnimatePresence } from 'motion/react'Never import from
'framer-motion'— that is the old package name. -
Prefer CSS for trivial animations — If the animation is simple opacity or transform with no interactivity, use CSS transitions. Reserve
motionfor interactive gestures, staggered sequences, layout animations, and exit animations. -
Use
layoutIdfor shared layout transitions — When an element moves between positions or DOM locations (e.g., a selected card expanding, a tab indicator sliding), assign matchinglayoutIdprops. Framer Motion handles the FLIP animation automatically. -
Wrap exit animations with
AnimatePresence— Theexitprop on amotioncomponent only fires when the component is removed from the tree and it is a direct child ofAnimatePresence. Without the wrapper, exit animations are silently skipped. -
Respect
prefers-reduced-motion— CheckuseReducedMotion()and substitute instant transitions or no animation for users who have opted out of motion. Never force animation on users with vestibular disorders.
Core API
Basic Animation
'use client'
import { motion } from 'motion/react'
// Animate on mount
<motion.div
initial={{ opacity: 0, y: 16 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3, ease: 'easeOut' }}
/>
// Named variants (preferred for reuse and orchestration)
const variants = {
hidden: { opacity: 0, y: 16 },
visible: { opacity: 1, y: 0 },
}
<motion.div variants={variants} initial="hidden" animate="visible" />
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- yesterday First seen · 163 lines · 101 tokens per session scan A 79812177acbc
framer-motion is a skill published in the GitHub repository iwritec0de/app-dev (3 stars, last pushed 4mo ago), licensed MIT. It adds 101 tokens to every session and 1,486 once invoked, about $0.0005 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
mastering-engineer
Guides audio mastering for streaming platforms including loudness optimization and tonal balance. Use when the user has approved tracks and wants to master audio files.
suno-engineer
Constructs technical Suno V5/V5.5 style prompts, selects genres, and optimizes generation settings. Use when creating or refining Suno prompts for track generation.
mix-engineer
Polishes raw Suno audio by processing per-stem WAVs (vocals, backingvocals, drums, bass, guitar, keyboard, strings, brass, woodwinds, percussion, synth, other) with targeted cleanup, EQ, and compression, then remixing into a polished stereo WAV ready for mastering. Use after audio import and before mastering.
configure
Sets up or edits the plugin configuration file interactively. Use on first-time setup, when config is missing, or when the user wants to change settings.
lyric-reviewer
Reviews lyrics against a quality checklist before Suno generation. Use before generating tracks to catch rhyme, prosody, pronunciation, and structural issues.
pronunciation-specialist
Scans lyrics for pronunciation risks and prevents Suno mispronunciations. Use when writing lyrics with proper nouns, technical terms, homographs, or non-English words.