Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

React Native

  • 79 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with frontend development tasks during AI-assisted development.

About

react-native is a Claude Code skill for frontend development. It helps solo builders move faster with AI-assisted coding.

  • react-native
  • Frontend Development
  • AI-coding skill

React Native by the numbers

  • 79 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,119 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill react-native

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs79
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with frontend development tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

React Native with Expo

Overview

Expo is an open-source framework for building universal native apps with React Native from a single TypeScript codebase. It provides file-based routing (Expo Router), cloud build services (EAS Build/Submit/Update), and a rich set of native modules for device APIs.

When to use: Mobile apps targeting iOS and Android, universal apps with web support, projects needing OTA updates, apps requiring native device APIs (camera, notifications, haptics), teams preferring managed infrastructure over bare React Native.

When NOT to use: Apps requiring heavy custom native code incompatible with Expo Modules API, brownfield integration into existing native apps, apps with native-only CI/CD requirements.

Quick Reference

PatternAPIKey Points
Stack navigation<Stack> from expo-routerFile-based, _layout.tsx defines navigator
Tab navigation<Tabs> from expo-router(tabs) directory group with _layout.tsx
Drawer navigation<Drawer> from expo-router/drawerRequires @react-navigation/drawer
Typed routeshref with /(group)/routeEnable typed-routes in app.json
Dev buildexpo-dev-clientCustom native code + dev tools
EAS Buildeas build --profile productionCloud builds for app stores
EAS Submiteas submit -p ios / -p androidAutomated store submission
OTA Updateeas update --branch productionJS-only updates, no rebuild needed
Native moduleExpo Modules APISwift/Kotlin with expo-module.config.json
Platform codePlatform.select() / .ios.tsxPer-platform logic or entire files
Styled listsFlatList / FlashListVirtualized, keyExtractor required
Cameraexpo-cameraPermissions via useCameraPermissions()
Notificationsexpo-notificationsPush tokens via getExpoPushTokenAsync()
Hapticsexpo-hapticsimpactAsync, notificationAsync
Tailwind (RN)NativeWind v4className prop, Tailwind CSS in RN

Common Mistakes

MistakeCorrect Pattern
Using react-navigation directly instead of Expo RouterExpo Router wraps React Navigation with file-based routing
Forgetting _layout.tsx in route directoriesEvery directory with routes needs a layout file
Using expo start for custom native codeUse expo start --dev-client with expo-dev-client
Running eas update after native dependency changesNative changes require eas build, OTA is JS-only
Hardcoding platform checks with ifUse Platform.select() or platform-specific file extensions
Not requesting permissions before accessing device APIsAlways check/request permissions before camera, notifications
Using ScrollView for long listsUse FlatList or FlashList for virtualized rendering
Inline styles in render functionsDefine styles with StyleSheet.create() outside component
Missing keyExtractor on FlatListAlways provide keyExtractor for stable list rendering
Importing from react-native for Expo-provided APIsPrefer expo-* packages over react-native equivalents

Delegation

  • Pattern discovery: Use Explore agent
  • Build/deployment review: Use Task agent
  • Code review: Delegate to code-reviewer agent
If the react-patterns skill is available, delegate React component patterns and hooks to it.
If the tanstack-query skill is available, delegate data fetching and caching to it.
If the zustand skill is available, delegate client-side state management to it.
If the vitest-testing skill is available, delegate unit and component testing patterns to it.
If the tailwind skill is available, delegate Tailwind CSS utility patterns to it (NativeWind uses Tailwind CSS syntax).
If the accessibility skill is available, delegate mobile accessibility patterns to it.

References

  • Core patterns: StyleSheet, FlatList, Platform-specific code
  • Expo Router navigation: stack, tabs, drawer, typed routes
  • EAS Build, Submit, and Update workflows
  • Dev client and native modules with Expo Modules API
  • Device APIs: camera, notifications, haptics
  • NativeWind Tailwind CSS integration
  • App configuration and environment setup
  • Performance optimization patterns

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.