mobile-expo-expert

mobile-expo-expert is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 67 tokens per session (2,063 once invoked), scanned A, original, MIT.

A guide to building iOS and Android apps with React Native and Expo, including navigation, native device features, and platform-specific code. It covers current Expo and React Native architecture patterns.

In plain words
What is it for?
Use it to create cross-platform mobile apps, set up file-based navigation, add native modules, manage over-the-air updates, and integrate device capabilities.
Why use it?
It helps developers share much of one codebase across both mobile platforms while still using features such as cameras, biometrics, notifications, and location.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create cross-platform mobile apps, set up file-based navigation, add native modules, manage over-the-air updates, and integrate device capabilities.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/mobile-expo-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill mobile-expo-expert
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mobile-expo-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-expo-expert/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-expo-expert)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-expo-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-expo-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mobile-expo-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/mobile-expo-expert"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/mobile-expo-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,063 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Memory Poisoning · line 92
    Skill manipulates agent memory, state, or stored context. Memory corruption can alter personality, override safety rules, or cause unpredictable behavior.
    Fix: Protect agent memory and state from modification by untrusted content. Use read-only memory for critical instructions and validate all state changes.
  • medium MCP Rug Pull · line 50
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.02063
Opus 5 $0.00034 $0.01032
Sonnet 5 $0.00013 $0.00413
Haiku 4.5 $0.00007 $0.00206

Measured today against content hash b9485bec19b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

mobile-expo-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/mobile-expo-expert/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mobile Expert — React Native & Expo (SDK 53 / RN 0.79 Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.

Description

Expert guide for building production-grade cross-platform mobile applications using React Native 0.79+ and Expo SDK 53+. Covers the New Architecture (stable), Expo Router v4, OTA updates, native modules, and modern state management patterns for iOS and Android.

Trigger Conditions

  • Building a new iOS/Android cross-platform mobile app.
  • Using Expo SDK 53+ or React Native 0.79+ with the New Architecture.
  • Implementing file-based routing with Expo Router v4.
  • Setting up OTA (Over-the-Air) updates with EAS Update.
  • Writing native modules using JSI (JavaScript Interface) or Expo Modules API.
  • Integrating device features: camera, biometrics, notifications, location.

What's New in 2026

React Native 0.79 — New Architecture Stable

The New Architecture (Fabric + JSI + TurboModules) is now fully stable and the default for all new Expo SDK 53 projects:

  • Fabric: New rendering engine — synchronous rendering, better animations.
  • JSI (JavaScript Interface): Direct C++ bridge — no more async serialization for native calls.
  • TurboModules: Lazy-loaded native modules — significantly faster startup time.
  • Concurrent React: Full support for useTransition, useDeferredValue, and Suspense on mobile.
Expo SDK 53 — Key Updates
  • Expo Router v4: File-based routing with typed routes, API routes (Expo functions), and universal links.
  • Expo Camera v15: Unified camera API for iOS and Android.
  • Expo SQLite v15: Full SQLite with WAL mode and useSQLiteContext hook.
  • Expo Modules API v2: Easier native module authoring with Swift/Kotlin.
  • EAS Build: Faster builds with M-series Mac runners.

Read the full file on GitHub · 193 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed b9485bec19b5
  2. 8d ago First seen · 193 lines · 67 tokens per session scan A 8062d8938424

Subscribe to this mod's changes

mobile-expo-expert is a skill published in the GitHub repository roedyrustam/vibes-plug (53 stars, last pushed today), licensed MIT. It adds 67 tokens to every session and 2,063 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

react-native-expert

Senior React Native and Expo engineer for building production-ready cross-platform mobile apps. Use when building React Native components, implementing navigation with Expo Router, optimizing list and scroll performance, working with animations via Reanimated, handling platform-specific code (iOS/Android), integrating…

tech-leads-club/agent-skills · 127 tokens

limrun-xcode

Build an iOS / Apple app on remote Xcode with lim xcode build instead of local xcodebuild, or run its XCTest suites with lim xcode test, from any environment (Linux, Windows, macOS, VM, container). Use for non-Bazel projects (an .xcodeproj / .xcworkspace, an XcodeGen project.yml with a gitignored project, React Native…

sutchan/Agent-Skills-Hub · 159 tokens

limrun-android-emulator

Drive an app running on a Limrun cloud Android emulator: install an APK, launch and terminate apps with crash reports, tap, type, read the UI element tree, screenshot, record video, inject microphone audio, shape network bandwidth, read app logs, run shell commands, transfer files, tunnel the app's network…

sutchan/Agent-Skills-Hub · 187 tokens

limrun-ios-simulator

Drive an app running on a Limrun cloud iOS simulator: launch, tap, type, read the accessibility element tree, screenshot, record video, connect the app to local services, play a video file as the camera, and run timed action chains. Use after a build (from any builder) when the user wants to see, test, or interact…

sutchan/Agent-Skills-Hub · 160 tokens

limrun-detox-testing

Configure, run, or debug Detox on Limrun iOS simulators. Use when attaching the Limrun Detox runtime to an app, wiring Detox mediator connectivity, or validating app/tester connections over destination tunnels.

sutchan/Agent-Skills-Hub · 48 tokens

expo

Expert in Expo for React Native development. Covers Expo Router, EAS Build and Submit, development builds, native module integration, and production deployment. Knows how to build cross-platform mobile apps efficiently while maintaining access to native capabilities. Use when "expo, react native, mobile app, eas…

omer-metin/skills-for-antigravity · 86 tokens