react-native-reanimated or the built-in Animated API, you can migrate compatible animations to react-native-ease for simpler code and lower overhead.
Automatic migration skill
The fastest way to migrate is with the official Agent Skill. It scans your codebase, classifies which animations can be migrated, and applies changes automatically.The migration skill is built on Agent Skills. It runs inside your AI coding agent (Claude Code, Cursor, etc.) and modifies your source files directly.
Invoke the skill in your agent
Run the following slash command in Claude Code (or your configured agent):
Review the migration report
The skill scans your project and classifies every animation it finds:
- Scans your project for Reanimated and
AnimatedAPI usage - Classifies which animations can be migrated (and which can’t, with reasons)
- Shows a migration report with before/after details for each component
- Lets you select which components to migrate
- Applies the changes, preserving all non-animation logic
Manual migration examples
For targeted changes or when migrating without the skill, use these patterns.From React Native Animated
- Before
- After
From Reanimated useSharedValue / useAnimatedStyle
- Before
- After
From Reanimated enter animation
- Before
- After