What problem does it solve? React Native apps frequently suffer from scroll jank, render thrashing, and production crashes caused by common mistakes like falsy && rendering, unvirtualized lists, and layout-property animations. This Skill provides a prioritized rulebook of 35+ best practices so AI agents and developers generate performant, crash-free mobile code by default. ## Core Features & Use Cases - Prioritized Rule Catalog: 35+ rules across 14 categories ranked by impact (CRITICAL rendering rules down to LOW font-loading optimizations), each with incorrect vs. correct code examples. - List & Animation Optimization: Concrete patterns for LegendList/FlashList virtualization, stable object references, memoization with primitive props, and GPU-accelerated Reanimated animations. - Platform Guidance: Rules for native navigators, native modals, expo-image, safe areas, monorepo dependency management, and React Compiler compatibility. - Use Case: When building a feed screen in an Expo app, the agent automatically uses a virtualized list with stable item references, compressed images, and GestureDetector-based press animations instead of a ScrollView with inline objects. ## Quick Start Review my React Native feed screen component and refactor it to follow these performance best practices.