What problem does it solve? React Native apps frequently suffer from scroll jank, render thrashing, and runtime crashes caused by common mistakes like inline objects in lists, animating layout properties, or tracking scroll position in state. This Skill gives AI agents a prioritized rulebook of 35+ best practices so generated or refactored mobile code follows proven performance patterns from the start. ## Core Features & Use Cases - Prioritized Rule Library: 35+ rules across 13 categories ranked by impact, from CRITICAL rendering rules (avoid falsy && in JSX, wrap strings in Text) to LOW-priority font and import optimizations. - Incorrect vs. Correct Examples: Every rule includes side-by-side TypeScript/TSX code comparisons with explanations, covering LegendList/FlashList virtualization, Reanimated animations, GestureDetector press states, and native navigators. - React Compiler Guidance: Dedicated rules for React Compiler compatibility, including destructuring functions early and using .get()/.set() on Reanimated shared values. - Use Case: When an agent generates a product feed screen, it applies the list-performance rules to use a virtualized list with stable object references, primitive props for memoized items, and compressed thumbnail images instead of a ScrollView with mapped children. ## Quick Start Review my React Native feed screen component and refactor it to follow the list performance and animation best practices.