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 | absolute-marketing | animation-motion-design |
|---|---|---|
| Description | Unified marketing skill for every channel and stage. Use when writing copy, optimizing conversions, planning content strategy, running SEO audits, building email sequences, launching products, setting up paid ads,… | 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… |
| Category | Growth & Marketing | Growth & Marketing |
| Sub-category | seo | conversion |
| Tags | type:audit | — |
| Author | — | OrchestKit |
| License | MIT | MIT |
| Install | /add-skill absolute-marketing | /add-skill animation-motion-design |
# Product Marketing Context
## 1. Product Overview
What the product does in 1-2 sentences. Core value proposition.
## 2. Target Audience
Who buys this. Be specific: role, company size, industry, geography.
## 3. Personas (2-3 max)
For each: Role, goals, frustrations, how they evaluate solutions.
## 4. Problems & Pain Points
Top 3-5 problems the product solves. Use customer language.
…
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>
…
absolute-marketing — Unified marketing skill for every channel and stage. Use when writing copy, optimizing conversions, planning content strategy, running SEO audits, building email sequences, launching products, setting up paid ads,…
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…
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.