What problem does it solve? React Native apps frequently suffer from scroll jank, unnecessary re-renders, runtime crashes from falsy JSX rendering, and slow animations caused by layout-property animation. This Skill provides a prioritized rule set that guides AI agents to generate and refactor React Native code that avoids these pitfalls. ## Core Features & Use Cases - Prioritized Rule Library: 35+ rules across 13 categories ranked by impact, from CRITICAL rendering rules (wrap strings in Text, avoid falsy &&) to LOW-priority font and import optimizations. - List & Animation Optimization: Concrete patterns for virtualized lists (LegendList, FlashList), memoization with primitive props, GPU-accelerated Reanimated animations, and GestureDetector press states. - Use Case: When building a product feed screen, the agent applies rules to use a virtualized list with stable object references, compressed images, lightweight item components, and native navigators instead of JS-based ones. ## Quick Start Review my React Native feed screen component and refactor it following the list performance and animation best practices.