Motion Seed Applier
When to Use
Use this skill when you need apply a named StyleSeed motion to a component — either one of the 5 personality seeds (Spring/Silk/Snap/Float/Pulse × entrance/exit/hover/press/layout) or a distinctive keyword move from the motion library (toggle-flip, toggle-curtain, reveal-blur, pop-in, shimmer, …). Translates vibe...
When NOT to use
- For general framer-motion docs or learning → use the framer-motion site
- For non-React motion (CSS-only transitions, GSAP) — this skill targets
motion.X JSX only
- For full scroll-linked timelines or parallax — out of scope per DESIGN-LANGUAGE.md Rule 59
- For tweaking the existing FadeIn/FadeUp/Stagger wrappers — edit
engine/components/ui/motion.tsx directly
Vibe → Seed mapping
Translate the user's prompt to one of the five seeds before applying. Use this lookup table from engine/motion/index.ts:
| Words the user might say |
Seed |
| bouncy, springy, playful, energetic, alive |
Spring |
| smooth, silky, fluid, elegant, composed, continuous |
Silk |
| snappy, quick, instant, decisive, sharp, precise |
Snap |
| floaty, gentle, weightless, dreamy, ambient, drifting |
Float |
| rhythmic, punchy, pulsing, heartbeat, beat |
Pulse |
| "Toss style", "Arc style" |
Spring (per brand default) |
| "Stripe style", "Notion style" |
Silk |
| "Linear style", "Raycast style", "Vercel style" |
Snap |
If the user says only a brand name, use that brand's default seed from BRAND_DEFAULT_SEED. If the user is explicit about a seed name (spring, silk, etc.), respect it verbatim.
Recommend mode — use-case → motion (when the user describes the moment, not the vibe)
If the user describes what the thing is ("a like button", "a modal", "the loading
state", "items in a feed") rather than a feeling, recommend from the use-case map
(MOTION_BY_USECASE in engine/motion/library.ts, exported from @engine/motion):
| Use case |
Reach for |
Why |
| Primary button / CTA press |
spring · press |
tactile, confident — the press should "give" |
| Modal / dialog / sheet enter |
silk · entrance |
smooth; never bounce serious/destructive content |
| Dropdown / popover / menu |
snap · entrance |
instant, precise — frequent UI shouldn't wait |
| Toast / inline notification |
spring · entrance |
small friendly arrival, non-blocking |
| List / feed items appearing |
stagger-cascade |
choreograph order, gently |
| Feature / marketing card hover |
tilt-3d |
depth/flair OK on content-light marketing |
| Dashboard / data card hover |
snap · hover |
a subtle lift only — keep dense UI calm |
| Like / favorite / reaction |
like-burst |
a celebratory one-shot; reward the tap |
| Live / online / recording dot |
pulse-beat |
looping heartbeat = "alive" |
| Loading / skeleton |
shimmer |
calm directional progress |
| Success / confirmation |
pop-in |
positive little "done" |
| Toggle / tab / segment switch |
toggle-flip |
distinctive, recognizable switch |
| Page / route transition |
silk · entrance |
smooth, minimal, get out of the way |
| Number / balance / KPI / price reveal |
none |
don't animate the payload — it must read instantly |
Two anti-rules override the table (state them if you deviate):
- One seed per product. If the project already uses a seed, match it — don't introduce a second personality.
- Never delay the payload. Don't animate a balance, price, or search result into view; motion is for affordance, not content.
Named motion keywords (distinctive moves)
Seeds set a personality (how a fade/scale feels). The motion library in
engine/motion/library.ts adds distinctive moves — a flip, a curtain wipe, a
morph — each behind a unique keyword. Prefer a keyword when the user wants a
specific, recognizable motion rather than a generic feel.
engine/motion/library.ts (exported as MOTION_LIBRARY / MOTION_BY_KEY from
@engine/motion) is the single source of truth — every keyword carries its
own runnable snippet. Pull the snippet from there; never hand-write the params.
| Keyword |
Move |
Say it when the user wants… |
toggle-flip |
3D Y-axis card flip |
a switch/toggle to flip between two faces |
toggle-slide |
slide-stack swap |
a value to slide out and the next to slide in |
toggle-morph |
pill ⇄ circle morph |
a control to change shape on toggle |
toggle-curtain |
top→bottom clip-path wipe |
a panel to reveal like a curtain |
reveal-blur |
blur(12px)→0 focus-in |
content to focus-pull into place |
reveal-rise |
masked clip-path text rise |
a headline/text to climb into view |
reveal-unfold |
scaleY from top edge |
an accordion/panel to unfold |
pop-in |
spring overshoot from 0 |
a badge/checkmark to pop in bouncily |
press-squish |
scale-down + skew |
a button to feel jelly/tactile on tap |
tap-ripple |
radial ripple from tap |
Material-style press feedback |
pulse-beat |
looping scale pulse |
a live/recording/heartbeat indicator |
wiggle |
quick horizontal shake |
error / invalid-input feedback |
shimmer |
skeleton loading sweep |
a loading placeholder |
stagger-cascade |
children fade-up in sequence |
a list to animate in one-by-one |
Applying a keyword:
- Read the exact recipe from
engine/motion/library.ts — find the entry whose
key matches, copy its snippet verbatim (it is calibrated and runnable).
- Adapt only the element/content to the user's JSX; keep the transition values.
- If the keyword is stateful (toggles, ripple), wire the
useState shown in the
snippet. If it's a one-shot reveal, a key bump replays it.
- Tell the user the keyword you applied so they can reuse it elsewhere for
consistency, and point them at
/motion to preview/Copy others.
If the user describes a move but no exact keyword fits, fall back to a seed +
context. If they say a keyword that doesn't exist, suggest the closest real one
from the table — never invent a keyword.
Context detection
Infer one of the five contexts from the prompt:
- "on hover" / "when hovered" →
hover
- "on press" / "on tap" / "on click" →
press
- "when it appears" / "on mount" / "entering" →
entrance
- "when it leaves" / "on close" / "exiting" →
exit (requires <AnimatePresence>)
- "when layout changes" / "FLIP" / "rearranging" →
layout
If ambiguous, default to entrance. If multiple contexts are reasonable (e.g., a button needs both hover and press), apply both.
Application steps
Apply seed: $0 · Context: $1 · Target: $ARGUMENTS
Read the target file at the path given (or, if no path was given, ask the user which file). Locate the JSX element the user is talking about — usually a <button>, <div>, <Card>, or similar.
Confirm the import paths. The component file must be able to import:
motion (and AnimatePresence for exit) from "framer-motion"
- the chosen seed from
"@engine/motion" — in a project that doesn't use the @engine/* alias, use a relative path to engine/motion
Replace the target tag with a <motion.X> and spread the seed's recipe:
// hover example
<motion.button {...spring.hover}>Save</motion.button>
// press + hover combined
<motion.button {...spring.press} {...spring.hover}>Save</motion.button>
// entrance (mount)
<motion.div {...silk.entrance}>...</motion.div>
// exit (requires AnimatePresence wrapper somewhere up the tree)
<AnimatePresence>
{open && <motion.div {...silk.entrance} {...silk.exit} />}
</AnimatePresence>
// layout (FLIP)
<motion.div {...snap.layout}>...</motion.div>
Do NOT inline the params. The whole point of the seed is that the values come from one source. Never expand { type: "spring", stiffness: 300, damping: 18 } into the JSX — always spread the recipe.
Respect prefers-reduced-motion in long-running surfaces. For one-off interactions (hover/press), framer-motion already throttles. For mount/exit/layout sequences in a long-lived page, import usePrefersReducedMotion and REDUCED_TRANSITION from @engine/motion and override the transition when reduced motion is on.
Validate by re-reading the file and confirming the JSX still parses (matching brackets, motion tag closed, AnimatePresence in place if exit was used).
Tell the user which seed and context you applied, and offer one related context they might want next ("Want press too so it feels clickable?").
Defaults if the user is vague
- No file given → ask "which file?"
- No vibe word → ask "any vibe word, brand, or seed name?"
- Vibe is "natural" or "feel like a real app" → default to Silk (the safest of the five)
- Element is a CTA button → also apply
press
Forbidden
- Do not invent new seed names. There are exactly five.
- Do not edit
engine/motion/seeds/*.ts from this skill — those are calibrated by hand. Add a new seed only via a separate, explicit ask.
- Do not introduce a third-party animation lib (gsap, anime.js). StyleSeed targets framer-motion exclusively.
- Do not add scroll-linked, parallax, or infinite animations (DESIGN-LANGUAGE.md Rule 59).
Limitations
- Use this skill only when the task clearly matches its upstream source and local project context.
- Verify commands, generated code, dependencies, credentials, and external service behavior before applying changes.
- Do not treat examples as a substitute for environment-specific tests, security review, or user approval for destructive or costly actions.
Source: sickn33/agentic-awesome-skills → skills/ui-motion/SKILL.md
Also appears in: sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/ui-motion/SKILL.md, sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/ui-motion/SKILL.md
1---2name: ui-motion3description: Apply a named StyleSeed motion to a component — either one of the 5 personality seeds (Spring/Silk/Snap/Float/Pulse × entrance/exit/hover/press/layout) or a distinctive keyword move from the motion library (toggle-flip, toggle-curtain, reveal-blur, pop-in, shimmer, …). Translates vibe...4---5
6
7# Motion Seed Applier
8## When to Use
9
10Use this skill when you need apply a named StyleSeed motion to a component — either one of the 5 personality seeds (Spring/Silk/Snap/Float/Pulse × entrance/exit/hover/press/layout) or a distinctive keyword move from the motion library (toggle-flip, toggle-curtain, reveal-blur, pop-in, shimmer, …). Translates vibe...
11
12
13## When NOT to use
14
15- For general framer-motion docs or learning → use the framer-motion site
16- For non-React motion (CSS-only transitions, GSAP) — this skill targets `motion.X` JSX only
17- For full scroll-linked timelines or parallax — out of scope per DESIGN-LANGUAGE.md Rule 59
18- For tweaking the existing FadeIn/FadeUp/Stagger wrappers — edit `engine/components/ui/motion.tsx` directly
19
20## Vibe → Seed mapping
21
22Translate the user's prompt to one of the five seeds before applying. Use this lookup table from `engine/motion/index.ts`:
23
24| Words the user might say | Seed |
25|---|---|
26| bouncy, springy, playful, energetic, alive | **Spring** |
27| smooth, silky, fluid, elegant, composed, continuous | **Silk** |
28| snappy, quick, instant, decisive, sharp, precise | **Snap** |
29| floaty, gentle, weightless, dreamy, ambient, drifting | **Float** |
30| rhythmic, punchy, pulsing, heartbeat, beat | **Pulse** |
31| "Toss style", "Arc style" | **Spring** (per brand default) |
32| "Stripe style", "Notion style" | **Silk** |
33| "Linear style", "Raycast style", "Vercel style" | **Snap** |
34
35If the user says only a *brand* name, use that brand's default seed from `BRAND_DEFAULT_SEED`. If the user is explicit about a seed name (`spring`, `silk`, etc.), respect it verbatim.
36
37## Recommend mode — use-case → motion (when the user describes the *moment*, not the vibe)
38
39If the user describes **what the thing is** ("a like button", "a modal", "the loading
40state", "items in a feed") rather than a feeling, recommend from the use-case map
41(`MOTION_BY_USECASE` in `engine/motion/library.ts`, exported from `@engine/motion`):
42
43| Use case | Reach for | Why |
44|---|---|---|
45| Primary button / CTA press | `spring · press` | tactile, confident — the press should "give" |
46| Modal / dialog / sheet enter | `silk · entrance` | smooth; never bounce serious/destructive content |
47| Dropdown / popover / menu | `snap · entrance` | instant, precise — frequent UI shouldn't wait |
48| Toast / inline notification | `spring · entrance` | small friendly arrival, non-blocking |
49| List / feed items appearing | `stagger-cascade` | choreograph order, gently |
50| Feature / marketing card hover | `tilt-3d` | depth/flair OK on content-light marketing |
51| Dashboard / data card hover | `snap · hover` | a subtle lift only — keep dense UI calm |
52| Like / favorite / reaction | `like-burst` | a celebratory one-shot; reward the tap |
53| Live / online / recording dot | `pulse-beat` | looping heartbeat = "alive" |
54| Loading / skeleton | `shimmer` | calm directional progress |
55| Success / confirmation | `pop-in` | positive little "done" |
56| Toggle / tab / segment switch | `toggle-flip` | distinctive, recognizable switch |
57| Page / route transition | `silk · entrance` | smooth, minimal, get out of the way |
58| Number / balance / KPI / price reveal | **none** | don't animate the payload — it must read instantly |
59
60**Two anti-rules override the table** (state them if you deviate):
611. **One seed per product.** If the project already uses a seed, match it — don't introduce a second personality.
622. **Never delay the payload.** Don't animate a balance, price, or search result into view; motion is for affordance, not content.
63
64## Named motion keywords (distinctive moves)
65
66Seeds set a *personality* (how a fade/scale feels). The **motion library** in
67`engine/motion/library.ts` adds *distinctive moves* — a flip, a curtain wipe, a
68morph — each behind a unique keyword. Prefer a keyword when the user wants a
69specific, recognizable motion rather than a generic feel.
70
71`engine/motion/library.ts` (exported as `MOTION_LIBRARY` / `MOTION_BY_KEY` from
72`@engine/motion`) is the **single source of truth** — every keyword carries its
73own runnable `snippet`. Pull the snippet from there; never hand-write the params.
74
75| Keyword | Move | Say it when the user wants… |
76|---|---|---|
77| `toggle-flip` | 3D Y-axis card flip | a switch/toggle to flip between two faces |
78| `toggle-slide` | slide-stack swap | a value to slide out and the next to slide in |
79| `toggle-morph` | pill ⇄ circle morph | a control to change shape on toggle |
80| `toggle-curtain` | top→bottom clip-path wipe | a panel to reveal like a curtain |
81| `reveal-blur` | blur(12px)→0 focus-in | content to focus-pull into place |
82| `reveal-rise` | masked clip-path text rise | a headline/text to climb into view |
83| `reveal-unfold` | scaleY from top edge | an accordion/panel to unfold |
84| `pop-in` | spring overshoot from 0 | a badge/checkmark to pop in bouncily |
85| `press-squish` | scale-down + skew | a button to feel jelly/tactile on tap |
86| `tap-ripple` | radial ripple from tap | Material-style press feedback |
87| `pulse-beat` | looping scale pulse | a live/recording/heartbeat indicator |
88| `wiggle` | quick horizontal shake | error / invalid-input feedback |
89| `shimmer` | skeleton loading sweep | a loading placeholder |
90| `stagger-cascade` | children fade-up in sequence | a list to animate in one-by-one |
91
92**Applying a keyword:**
93
941. Read the exact recipe from `engine/motion/library.ts` — find the entry whose
95 `key` matches, copy its `snippet` verbatim (it is calibrated and runnable).
962. Adapt only the element/content to the user's JSX; keep the transition values.
973. If the keyword is stateful (toggles, ripple), wire the `useState` shown in the
98 snippet. If it's a one-shot reveal, a `key` bump replays it.
994. Tell the user the keyword you applied so they can reuse it elsewhere for
100 consistency, and point them at `/motion` to preview/Copy others.
101
102If the user describes a move but no exact keyword fits, fall back to a seed +
103context. If they say a keyword that doesn't exist, suggest the closest real one
104from the table — never invent a keyword.
105
106## Context detection
107
108Infer one of the five contexts from the prompt:
109
110- "on hover" / "when hovered" → `hover`
111- "on press" / "on tap" / "on click" → `press`
112- "when it appears" / "on mount" / "entering" → `entrance`
113- "when it leaves" / "on close" / "exiting" → `exit` (requires `<AnimatePresence>`)
114- "when layout changes" / "FLIP" / "rearranging" → `layout`
115
116If ambiguous, default to `entrance`. If multiple contexts are reasonable (e.g., a button needs both `hover` and `press`), apply both.
117
118## Application steps
119
120Apply seed: **$0** · Context: **$1** · Target: **$ARGUMENTS**
121
1221. **Read the target file** at the path given (or, if no path was given, ask the user which file). Locate the JSX element the user is talking about — usually a `<button>`, `<div>`, `<Card>`, or similar.
123
1242. **Confirm the import paths**. The component file must be able to import:
125 - `motion` (and `AnimatePresence` for `exit`) from `"framer-motion"`
126 - the chosen seed from `"@engine/motion"` — in a project that doesn't use the `@engine/*` alias, use a relative path to `engine/motion`
127
1283. **Replace the target tag with a `<motion.X>` and spread the seed's recipe**:
129
130 ```tsx
131 // hover example
132 <motion.button {...spring.hover}>Save</motion.button>
133
134 // press + hover combined
135 <motion.button {...spring.press} {...spring.hover}>Save</motion.button>
136
137 // entrance (mount)
138 <motion.div {...silk.entrance}>...</motion.div>
139
140 // exit (requires AnimatePresence wrapper somewhere up the tree)
141 <AnimatePresence>
142 {open && <motion.div {...silk.entrance} {...silk.exit} />}
143 </AnimatePresence>
144
145 // layout (FLIP)
146 <motion.div {...snap.layout}>...</motion.div>
147 ```
148
1494. **Do NOT inline the params**. The whole point of the seed is that the values come from one source. Never expand `{ type: "spring", stiffness: 300, damping: 18 }` into the JSX — always spread the recipe.
150
1515. **Respect `prefers-reduced-motion`** in long-running surfaces. For one-off interactions (hover/press), framer-motion already throttles. For mount/exit/layout sequences in a long-lived page, import `usePrefersReducedMotion` and `REDUCED_TRANSITION` from `@engine/motion` and override the transition when reduced motion is on.
152
1536. **Validate** by re-reading the file and confirming the JSX still parses (matching brackets, motion tag closed, AnimatePresence in place if `exit` was used).
154
1557. **Tell the user which seed and context you applied**, and offer one related context they might want next ("Want `press` too so it feels clickable?").
156
157## Defaults if the user is vague
158
159- No file given → ask "which file?"
160- No vibe word → ask "any vibe word, brand, or seed name?"
161- Vibe is "natural" or "feel like a real app" → default to **Silk** (the safest of the five)
162- Element is a CTA button → also apply `press`
163
164## Forbidden
165
166- Do not invent new seed names. There are exactly five.
167- Do not edit `engine/motion/seeds/*.ts` from this skill — those are calibrated by hand. Add a new seed only via a separate, explicit ask.
168- Do not introduce a third-party animation lib (gsap, anime.js). StyleSeed targets framer-motion exclusively.
169- Do not add scroll-linked, parallax, or infinite animations (DESIGN-LANGUAGE.md Rule 59).
170
171## Limitations
172
173- Use this skill only when the task clearly matches its upstream source and local project context.
174- Verify commands, generated code, dependencies, credentials, and external service behavior before applying changes.
175- Do not treat examples as a substitute for environment-specific tests, security review, or user approval for destructive or costly actions.
176
177---
178
179**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/ui-motion/SKILL.md`
180
181**Also appears in:** `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/ui-motion/SKILL.md`, `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/ui-motion/SKILL.md`