# Forge Motion

> Check that all animations have prefers-reduced-motion fallbacks. Adds them if missing.

- Skill: `dragoon0x/forge-motion` (Agent Skill)
- Install (CLI): `npx skillmds@latest add dragoon0x/forge-motion`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dragoon0x/forge-motion/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: dragoon0x (https://skillmd.com/u/dragoon0x)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/dragoon0x/forge-motion

---


# /forge-motion — Motion Safety

For every animation and transition:

1. Check for prefers-reduced-motion media query
2. If missing, add:
   @media (prefers-reduced-motion: reduce) {
     animation-duration: 0.01ms;
     transition-duration: 0.01ms;
   }
3. Verify final states are preserved (content doesn't disappear)

