.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/agent-skills/react-native-skills
home/skills/vercel-labs/agent-skills/react-native-skills
vercel-labs avatar

react-native-skills

byvercel-labs· 154 skills

Installs

176k

Stars

29k

Forks

2.6k

Category

Mobile Development

View on GitHub

TL;DR

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

How to install react-native-skills?

vercel-labs/agent-skills/react-native-skills
$npx -y skills add vercel-labs/agent-skills --skill react-native-skills

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/vercel-labs/agent-skills" --skill "vercel-labs/agent-skills/react-native-skills"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/vercel-labs/agent-skills" that are relevant to the current task. Run `npx skills add "https://github.com/vercel-labs/agent-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# React Native Skills
2 
3Comprehensive best practices for React Native and Expo applications. Contains
4rules across multiple categories covering performance, animations, UI patterns,
5and platform-specific optimizations.
6 
7## When to Apply
8 
9Reference these guidelines when:
10 
11- Building React Native or Expo apps
12- Optimizing list and scroll performance
13- Implementing animations with Reanimated
14- Working with images and media
15- Configuring native modules or fonts
16- Structuring monorepo projects with native dependencies
17 
18## Rule Categories by Priority
19 
20| Priority | Category | Impact | Prefix |
21| -------- | ---------------- | -------- | -------------------- |
22| 1 | List Performance | CRITICAL | `list-performance-` |
23| 2 | Animation | HIGH | `animation-` |
24| 3 | Navigation | HIGH | `navigation-` |
25| 4 | UI Patterns | HIGH | `ui-` |
26| 5 | State Management | MEDIUM | `react-state-` |
27| 6 | Rendering | MEDIUM | `rendering-` |
28| 7 | Monorepo | MEDIUM | `monorepo-` |
29| 8 | Configuration | LOW | `fonts-`, `imports-` |
30 
31## Quick Reference
32 
33### 1. List Performance (CRITICAL)
34 
35- `list-performance-virtualize` - Use FlashList for large lists
36- `list-performance-item-memo` - Memoize list item components
37- `list-performance-callbacks` - Stabilize callback references
38- `list-performance-inline-objects` - Avoid inline style objects
39- `list-performance-function-references` - Extract functions outside render
40- `list-performance-images` - Optimize images in lists
41- `list-performance-item-expensive` - Move expensive work outside items
42- `list-performance-item-types` - Use item types for heterogeneous lists
43 
44### 2. Animation (HIGH)
45 
46- `animation-gpu-properties` - Animate only transform and opacity
47- `animation-derived-value` - Use useDerivedValue for computed animations
48- `animation-gesture-detector-press` - Use Gesture.Tap instead of Pressable
49 
50### 3. Navigation (HIGH)
51 
52- `navigation-native-navigators` - Use native stack and native tabs over JS navigators
53 
54### 4. UI Patterns (HIGH)
55 
56- `ui-expo-image` - Use expo-image for all images
57- `ui-image-gallery` - Use Galeria for image lightboxes
58- `ui-pressable` - Use Pressable over TouchableOpacity
59- `ui-safe-area-scroll` - Handle safe areas in ScrollViews
60- `ui-scrollview-content-inset` - Use contentInset for headers
61- `ui-menus` - Use native context menus
62- `ui-native-modals` - Use native modals when possible
63- `ui-measure-views` - Use onLayout, not measure()
64- `ui-styling` - Use StyleSheet.create or Nativewind
65 
66### 5. State Management (MEDIUM)
67 
68- `react-state-minimize` - Minimize state subscriptions
69- `react-state-dispatcher` - Use dispatcher pattern for callbacks
70- `react-state-fallback` - Show fallback on first render
71- `react-compiler-destructure-functions` - Destructure for React Compiler
72- `react-compiler-reanimated-shared-values` - Handle shared values with compiler
73 
74### 6. Rendering (MEDIUM)
75 
76- `rendering-text-in-text-component` - Wrap text in Text components
77- `rendering-no-falsy-and` - Avoid falsy && for conditional rendering
78 
79### 7. Monorepo (MEDIUM)
80 
81- `monorepo-native-deps-in-app` - Keep native dependencies in app package
82- `monorepo-single-dependency-versions` - Use single versions across packages
83 
84### 8. Configuration (LOW)
85 
86- `fonts-config-plugin` - Use config plugins for custom fonts
87- `imports-design-system-folder` - Organize design system imports
88- `js-hoist-intl` - Hoist Intl object creation
89 
90## How to Use
91 
92Read individual rule files for detailed explanations and code examples:
93 
94```
95rules/list-performance-virtualize.md
96rules/animation-gpu-properties.md
97```
98 
99Each rule file contains:
100 
101- Brief explanation of why it matters
102- Incorrect code example with explanation
103- Correct code example with explanation
104- Additional context and references
105 
106## Full Compiled Document
107 
108For the complete guide with all rules expanded: `AGENTS.md`

Preview

vercel-labs/agent-skillsvercel-labs/agent-skills

$ npx -y skills add vercel-labs/agent-skills --skill react-native-skills

▸ installing to .claude/skills…

✓ react-native-skills ready

Repovercel-labs/agent-skills
TypeSkills
CategoryMobile Development
ForDeveloperArchitect
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. leonxlnx avatarimagegen-frontend-mobileElite mobile app image-generation skill for creating premium, app-native screen concepts and flows.SkillsJul 2026173k68k
  2. firebase avatarfirebase-crashlyticsComprehensive guide for Firebase Crashlytics, including provisioning and SDK usage.SkillsJul 202675k389
  3. firebase avatarxcode-project-setupSafely modifies Xcode projects (.pbxproj) to add Swift Packages and link files. Use this skill whenever an iOS project needs dependencies installed (e.g.SkillsJul 202675k389
  4. expo avatarexpo-tailwind-setupFramework (OSS). Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal stylingSkillsJul 202647k2.3k
  5. expo avatarexpo-dev-clientFramework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing.SkillsJul 202646k2.3k
  6. expo avatarexpo-moduleFramework (OSS). Guide for creating and writing Expo native modules and views using the Expo Modules API (Swift, Kotlin, TypeScript).SkillsJul 202625k2.3k