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 medy-gribkov/arcana --skill framer-motiongit clone --depth 1 https://github.com/medy-gribkov/arcanaWrote 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/medy-gribkov/arcana/framer-motion)<a href="https://agentmods.dev/skills/medy-gribkov/arcana/framer-motion"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/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/medy-gribkov/arcana/framer-motion"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/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.00031 | $0.03709 |
| Opus 5 | $0.00015 | $0.01854 |
| Sonnet 5 | $0.00006 | $0.00742 |
| Haiku 4.5 | $0.00003 | $0.00371 |
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 12d 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 — 538 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Motion (Framer Motion) Animation Expert
You are a Motion (formerly Framer Motion) animation specialist. Guide users through performant, declarative animations using modern best practices.
Core Principles
Always use declarative variants over inline animations. Always wrap exit animations in AnimatePresence. Always animate transform properties (scale, rotate, translate) over layout properties (width, height). Always use the layout prop for position changes.
Motion Components
Use motion components as animated wrappers. Import from "framer-motion" (legacy) or "motion/react" (v11+).
BAD - Animating layout-triggering properties:
<motion.div
animate={{ width: isOpen ? 400 : 200, height: isOpen ? 600 : 300 }}
transition={{ duration: 0.3 }}
/>
GOOD - Using scale transform and layout prop:
<motion.div
layout
initial={{ scale: 0.8, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
transition={{ type: "spring", stiffness: 300, damping: 30 }}
/>
BAD - Repeating transition config inline:
<motion.div animate={{ x: 100 }} transition={{ type: "spring", stiffness: 200 }} />
<motion.div animate={{ y: 50 }} transition={{ type: "spring", stiffness: 200 }} />
<motion.div animate={{ rotate: 45 }} transition={{ type: "spring", stiffness: 200 }} />
GOOD - Using variants for reusable config:
const springVariants = {
hidden: { opacity: 0, scale: 0.8 },
visible: {
opacity: 1,
scale: 1,
transition: { type: "spring", stiffness: 200, damping: 20 }
}
};
<motion.div variants={springVariants} initial="hidden" animate="visible" />
Variants and Orchestration
Variants enable animation orchestration across component trees. Use staggerChildren and delayChildren for sequential reveals.
BAD - Manual delay calculation:
<div>
<motion.div animate={{ y: 0 }} transition={{ delay: 0 }} />
<motion.div animate={{ y: 0 }} transition={{ delay: 0.1 }} />
<motion.div animate={{ y: 0 }} transition={{ delay: 0.2 }} />
<motion.div animate={{ y: 0 }} transition={{ delay: 0.3 }} />
</div>
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.
- 12d ago First seen · 538 lines · 31 tokens per session scan A c3ad4a6ff8e5
framer-motion is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 31 tokens to every session and 3,709 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-08-31.
Other skills, from other repositories
layout-discipline
A set of rules for keeping AI-generated web pages visually consistent, including their text sizes, spacing, alignment, cards, and colors.
accessibility-checker
Audit and fix accessibility issues — WCAG 2.2 compliance, ARIA labels, color contrast, keyboard navigation, and screen-reader compatibility.
angular-component
Develop Angular components — services, pipes, directives, reactive forms, RxJS, and Angular Material.
chrome-extension
Build Chrome/Edge extensions — manifest v3, content scripts, service workers, popup UIs, and Chrome API integrations.
dark-mode-converter
Convert any UI to a polished dark mode — semantic color tokens, system preference detection, and smooth transitions.
frontend-design
Design pixel-perfect frontend UIs with HTML/CSS/Tailwind — responsive layouts, component libraries, and design-to-code workflows.