Two Growth & Marketing Claude Code skills, side by side. Pick the right skill for your workflow with a side-by-side look at metadata, sample code, and install commands.
| Name | animation-motion-design | rescue |
|---|---|---|
| Description | 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… | Orchestrator and entry point for the seo-rescue plugin. Routes to the nine sub-skills covering SEO rescue work after Google Core Updates: free-tier audit, recovery framework, decision-maker PDF reports, channel… |
| Category | Growth & Marketing | Growth & Marketing |
| Sub-category | conversion | seo |
| Tags | — | type:audit |
| Author | OrchestKit | maxschottke-spec |
| License | MIT | MIT |
| Install | /add-skill animation-motion-design | /add-skill rescue |
import { motion, AnimatePresence } from "motion/react"
const fadeInUp = {
initial: { opacity: 0, y: 20 },
animate: { opacity: 1, y: 0 },
exit: { opacity: 0, y: -10 },
transition: { type: "spring", stiffness: 300, damping: 24 },
}
function Card({ item }: { item: Item }) {
return (
<motion.div {...fadeInUp} layout layoutId={item.id}>
{item.content}
</motion.div>
…
digraph routing {
"User reports a problem" [shape=diamond];
"Has no SEO tools budget?" [shape=diamond];
"Visibility dropped after Core Update?" [shape=diamond];
"Needs report for client/owner?" [shape=diamond];
"Multi-channel e-commerce?" [shape=diamond];
"Wants competitor analysis?" [shape=diamond];
"Wants ongoing monitoring?" [shape=diamond];
"AI Overview/ChatGPT citation issue?" [shape=diamond];
"free-tier audit" [shape=box,style=filled,fillcolor=lightgreen];
"core-update…
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…
rescue — Orchestrator and entry point for the seo-rescue plugin. Routes to the nine sub-skills covering SEO rescue work after Google Core Updates: free-tier audit, recovery framework, decision-maker PDF reports, channel…
Both are free to install. If you're unsure, install both — Claude Code skills are isolated by filename and only collide if their trigger phrases overlap (rare). The richest signal is the SKILL.md body itself — open both skill pages and read the first paragraph of each.
See all Claude Code skill comparisons · Browse all Growth & Marketing skills · Top 100
SKILL.md files, not affiliated with, endorsed by, or sponsored by Anthropic.