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/s3yed/appie-kit/motion-migration-guidenpx skills add S3YED/appie-kit --skill motion-migration-guidegit clone --depth 1 https://github.com/S3YED/appie-kitWrote 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/s3yed/appie-kit/motion-migration-guide)<a href="https://agentmods.dev/skills/s3yed/appie-kit/motion-migration-guide"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/motion-migration-guide.svg" alt="Measured on agentmods" 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.00041 | $0.00701 |
| Opus 5 | $0.00020 | $0.00351 |
| Sonnet 5 | $0.00008 | $0.00140 |
| Haiku 4.5 | $0.00004 | $0.00070 |
Grade A, and why
motion-migration-guide 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 2d 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.
What it actually says
Motion v12.42+ Migration Guide
Framer Motion has been spun out from Framer into an independent open-source project called Motion. The library is now at motion/react (was framer-motion).
Key Changes
New Import Paths
// OLD (framer-motion)
import { motion, AnimatePresence, useScroll } from "framer-motion";
// NEW (Motion)
import { motion, AnimatePresence, useScroll } from "motion/react";
animateView API (View Transitions)
Introduced in v12.41, moved to main library in v12.42:
import { animateView } from "motion/react";
// Basic page transition
animateView(() => {
// DOM updates happen here
updatePageContent();
}, {
// Transition options
duration: 0.5,
easing: [0.16, 1, 0.3, 1],
});
Key features:
.add(),.new(),.old(),.layout(),.class()— fine-grained control- Auto-grouping — layers auto-group to match DOM hierarchy
.group(false)to opt out of auto-grouping- Auto-crop with border-radius animation (aspect-ratio aware)
Framework Support
- React:
motion/react - Vue 3:
motion-v(new!) - Vanilla JS: Works without any framework
- Solid:
motion/solid(community)
Installation
npm install motion
# or
pnpm add motion
# or
yarn add motion
After installing, remove framer-motion from package.json.
Migration Steps
npm uninstall framer-motion && npm install motion- Replace all imports:
from "framer-motion"→from "motion/react" - Update
package.jsonreferences - Test AnimatePresence exit animations (bug fixed in v12.42.2)
Version History (Recent)
| Version | Date | Key Change |
|---|---|---|
| v12.41.0 | 2026-06-23 | animateView moves from Early Access to main library |
| v12.42.0 | 2026-06-24 | animateView layers auto-group, aspect-ratio aware auto-crop |
| v12.42.2 | 2026-06-30 | Bug fixes: AnimatePresence exit, drag constraints, scroll hydration |
Pitfalls
motion/reactis the new canonical path, NOTmotion(bare import)- If you still see
framer-motionin lockfile after migration, runnpm dedupe - AnimatePresence exit animation bugs were fixed in v12.42.2 — upgrade if you're on an older v12 release===ME:motion-migration-guide
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.
- 2d ago First seen · 84 lines · 41 tokens per session scan A 07af50256110
motion-migration-guide is a skill published in the GitHub repository S3YED/appie-kit (7 stars, last pushed 10d ago), licensed MIT. It adds 41 tokens to every session and 701 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.
Other skills, from other repositories
formkit
Use when working with FormKit forms, validation, schema, or custom inputs in React, Vue, or Nuxt projects.
animation-motion-design
Animation and motion design patterns using Motion library (formerly Framer Motion) and View Transitions API. Use when implementing component animations, page transitions, micro-interactions, gesture-driven UIs, or ensuring motion accessibility with prefers-reduced-motion.
goey-toast
Install and use goey-toast — a gooey, morphing React toast component built on Sonner with Framer Motion. Use when adding toast/notification UI to a React app (success/error/warning/info/promise toasts), or when the user mentions goey-toast / gooey toast.
animation-reverse-engineering
Reverse-engineer any motion reference (a video from X/Twitter, Dribbble, a screen recording, a GIF) into production animation code through frame-level dissection. Use when the user shares a video/URL and says "implement this animation", "recreate this motion", "port this interaction", "how does this animate", "clone…
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.
front-component-generator
Generate a React or Vue component from a natural language description, including TypeScript types, styles, and basic tests.