What problem does it solve? React Native apps frequently suffer from scroll jank, render thrashing, crashes from falsy JSX rendering, and slow animations caused by common coding mistakes. This Skill provides 35+ prioritized rules so an AI agent generates and refactors React Native code that follows proven performance patterns from the start. ## Core Features & Use Cases - Prioritized Rule Set: 35+ rules across 13 categories ranked by impact, from CRITICAL (avoid falsy && rendering, wrap strings in Text) to LOW (hoist Intl formatters, build-time font loading). - List and Animation Optimization: Covers virtualized lists (LegendList, FlashList), memoization with primitive props, stable object references, GPU-accelerated transform/opacity animations, and Reanimated patterns. - Platform Guidance: Rules for native navigators, native modals, expo-image, safe areas, monorepo dependency management, and React Compiler compatibility. - Use Case: When asking an agent to build a feed screen, it will use a virtualized list with stable references, compressed images, and lightweight memoized items instead of a ScrollView with inline objects. ## Quick Start Review my React Native feed screen component and refactor it to follow the list performance and animation best practices.