animate

Implements UI animations using CSS transitions, WAAPI, and Motion with defined easing and duration rules.

Updated Aug 11, 2026
One-click install
npx skills add https://github.com/Debindenny/travelplanner-community- --skill animate-debindenny
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: animate
Source: https://github.com/Debindenny/travelplanner-community-/tree/main/travel-planner/agent/skills/animate
Command: npx skills add https://github.com/Debindenny/travelplanner-community- --skill animate-debindenny

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deciding whether and how to animate a UI element is error-prone: wrong easings, sluggish durations, missing reduced-motion support, and animations on elements that should never move. This Skill turns a motion request into a reviewed-quality implementation by enforcing a fixed decision sequence before any code is written. ## Core Features & Use Cases - Gated build sequence: Decides first whether the element should animate at all (frequency tiers), names the motion's purpose, then picks the cheapest tool — CSS transition, @starting-style, CSS animation, WAAPI, or Motion. - Opinionated values: Provides exact easing curves (cubic-bezier tokens), duration tables per component, and spring configs, plus a Never Ship checklist covering scale(0), ease-in, transition: all, and ungated hover. - Ready-made recipes: RECIPES.md contains implementations for button press, popover, tooltip, modal, drawer, toast, accordion, stagger, hold-to-confirm, tab indicator, scroll reveal, and drag-to-dismiss. - Use Case: Ask to animate a dropdown menu, and receive a transform-origin-anchored scale/opacity transition at 200ms with the strong ease-out curve, reduced-motion fallback, and hover gating included. ## Quick Start Use the animate skill to build an entrance animation for this modal component with proper easing and reduced-motion support.

Frequently Asked Questions about animate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What easing should I use for UI animations?▼

Use ease-out for entering and exiting elements, ease-in-out for on-screen movement, and linear only for constant motion like progress indicators. Never use ease-in on UI, and prefer strong custom curves like cubic-bezier(0.23, 1, 0.32, 1) over built-in easings.