What problem does it solve? React Native apps frequently suffer from scroll jank, unnecessary re-renders, production crashes from falsy JSX rendering, and slow animations caused by layout-property animation. This Skill provides a prioritized rule set that guides AI agents and developers to write performant, crash-free React Native and Expo code from the start. ## Core Features & Use Cases - Prioritized Rule Catalog: 35+ rules across 13 categories ranked by impact, from CRITICAL rendering rules (wrap strings in Text, avoid falsy && conditionals) to LOW-priority font and import optimizations. - List & Animation Optimization: Concrete incorrect-vs-correct code patterns for virtualized lists (LegendList, FlashList), Reanimated shared values, GestureDetector press states, and scroll tracking without useState. - Use Case: When building an Expo mobile screen with a searchable, filterable list of items, apply the stable-reference, primitive-props, and item-type rules so typing in the search box re-renders only visible rows instead of the entire list. ## Quick Start Review my React Native list screen component and refactor it using the list performance and rendering rules from this skill.