This is a systematic migration assistant that converts react-native-reanimated and Animated API code to EaseView components. It works in six phases: scans your project for animation patterns, classifies each component as migratable or not using a decision tree (checking for gestures, scroll handlers, complex interpolations), then refactors the compatible ones. It handles entering/exiting animations, spring and timing configs, loops, and even detects whether you're using NativeWind to adjust output. The classification logic is smart about edge cases like withDelay wrapping single animations (migratable) versus withSequence chains (not migratable). Honestly most useful if you're already committed to switching animation libraries and want to avoid manually rewriting dozens of components. It won't migrate gesture-driven or scroll-based animations, which is probably half your animated code in a real app.
npx skills add https://github.com/appandflow/react-native-ease --skill react-native-ease-refactor