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

React Native Executorch

  • 8 installs
  • 1.7k repo stars
  • Updated August 4, 2026
  • software-mansion/react-native-executorch

Helps with frontend development tasks during AI-assisted development.

About

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

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

React Native Executorch by the numbers

  • 8 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #1,733 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/software-mansion/react-native-executorch --skill react-native-executorch

Add your badge

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

Listed on Skillselion
Installs8
repo stars1.7k
Last updatedAugust 4, 2026
Repositorysoftware-mansion/react-native-executorch

What it does

Helps with frontend development tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

React Native ExecuTorch

Software Mansion's production patterns for on-device AI in React Native and Expo using React Native ExecuTorch.

Targets the current published API (v0.10.x). Load at most one reference file per question. For hook signatures, model constants, or config options not covered here, webfetch the matching page from docs.swmansion.com/react-native-executorch.

Decision Tree

What does the feature need?
│
├── Generate / chat with text?
│   └── useLLM                                          → see llm.md
│       ├── Plain chat → standard useLLM
│       ├── Image + text input → useLLM with a VLM model (LFM2_VL_*)
│       ├── Tool / function calling → configure with toolsConfig
│       └── Structured JSON output → getStructuredOutputPrompt
│
├── Understand or transform images?
│   ├── What is in this image? → useClassification      → see vision.md
│   ├── Where are the objects? → useObjectDetection     → see vision.md
│   ├── Per-pixel class → useSemanticSegmentation       → see vision.md
│   ├── Per-instance segmentation → useInstanceSegmentation → see vision.md
│   ├── Human pose keypoints → usePoseEstimation        → see vision.md
│   ├── Read text from image → useOCR / useVerticalOCR  → see vision.md
│   ├── Apply artistic style → useStyleTransfer         → see vision.md
│   ├── Generate image from prompt → useTextToImage     → see vision.md
│   └── Embed image as vector → useImageEmbeddings      → see vision.md
│
├── Speech / audio?
│   ├── Transcribe speech → useSpeechToText             → see speech.md
│   ├── Synthesize speech → useTextToSpeech             → see speech.md
│   └── Detect speech segments → useVAD                 → see speech.md
│
├── Text utilities?
│   ├── Embed text as vector → useTextEmbeddings        → see vision.md
│   ├── Count or inspect tokens → useTokenizer          → see setup.md
│   └── Redact PII from text → usePrivacyFilter         → see setup.md
│
├── Full RAG pipeline (retrieval + generation + vector store)?
│   └── react-native-rag (sibling library)              → see setup.md
│
└── Custom `.pte` model not covered by a dedicated hook?
    └── useExecutorchModule                             → see setup.md

Critical Rules

  • Call `initExecutorch()` at app entry, before any other API. The library does not bundle a network/file layer — you must register a resource-fetcher adapter (ExpoResourceFetcher for Expo, BareResourceFetcher for bare RN). Any hook called before initialization throws ResourceFetcherAdapterNotInitialized.
  • Check `isReady` before calling `forward` / `generate` / `transcribe`. All hooks load asynchronously. Inference before the model is ready throws ModuleNotLoaded.
  • Interrupt LLM generation before unmounting. Unmounting while isGenerating is true crashes. Call llm.interrupt() and wait for isGenerating === false before navigating away.
  • Use quantized model variants on mobile. Full-precision variants exceed device memory on most phones. Every supported model ships a _QUANTIZED variant — prefer it unless you've measured otherwise.
  • Audio for speech-to-text and VAD must be 16 kHz mono. Mismatched sample rates produce silently garbled transcriptions. Decode with new AudioContext({ sampleRate: 16000 }).
  • Audio from text-to-speech is 24 kHz. Create the playback context with new AudioContext({ sampleRate: 24000 }).
  • The New Architecture (Fabric) is required. Old architecture is unsupported. Expo Go is unsupported — use a custom dev build (npx expo prebuild). iOS release builds need a real device (the simulator lacks the Metal APIs ExecuTorch relies on).

Minimal Setup

// App.tsx (Expo)
import { initExecutorch } from 'react-native-executorch';
import { ExpoResourceFetcher } from 'react-native-executorch-expo-resource-fetcher';

initExecutorch({ resourceFetcher: ExpoResourceFetcher });
// App.tsx (bare React Native)
import { initExecutorch } from 'react-native-executorch';
import { BareResourceFetcher } from 'react-native-executorch-bare-resource-fetcher';

initExecutorch({ resourceFetcher: BareResourceFetcher });

Full setup, Metro config for bundled .pte files, custom adapters, model-loading strategies, and error handling: see setup.md.

Hook Quick Reference

HookPurposeReference
useLLMText generation, chat, tool calling, VLMllm.md
useClassificationImage categorisationvision.md
useObjectDetectionBounding-box detection (YOLO26, RF-DETR, SSDLite)vision.md
useSemanticSegmentationPer-pixel class segmentationvision.md
useInstanceSegmentationPer-instance segmentationvision.md
usePoseEstimationCOCO 17-keypoint human posevision.md
useStyleTransferArtistic image filtersvision.md
useTextToImageStable Diffusion image generationvision.md
useImageEmbeddingsCLIP image embeddingsvision.md
useOCRHorizontal text OCRvision.md
useVerticalOCRVertical text OCR (experimental, CJK)vision.md
useTextEmbeddingsSentence embeddings for similarity / RAGvision.md
useSpeechToTextWhisper transcription (batch + streaming)speech.md
useTextToSpeechKokoro TTS (batch + streaming, phoneme input)speech.md
useVADFSMN voice activity detectionspeech.md
useTokenizerHuggingFace-compatible tokenizationsetup.md
usePrivacyFilterOn-device PII / privacy redactionsetup.md
useExecutorchModuleCustom .pte model inferencesetup.md

Every hook also has a non-React Module counterpart (e.g. LLMModule.fromModelName(...), ClassificationModule.fromModelName(...)) for use outside React components.

Common Pitfalls

SymptomLikely causeFix
ResourceFetcherAdapterNotInitializedinitExecutorch not calledCall it at app entry with an adapter
ModuleNotLoadedInference before model finished loadingGate calls on isReady
MemoryAllocationFailed on launchModel too large for deviceSwitch to _QUANTIZED variant or smaller parameter count
App crashes on screen navigationUnmount during active generationllm.interrupt() and await isGenerating === false
Whisper produces garbled textWrong sample rateDecode audio at 16 kHz mono
TTS output sounds chipmunkedPlayback context at wrong rateCreate AudioContext({ sampleRate: 24000 })
Build fails on iOS simulator (release)Simulator lacks Metal APIsBuild release on real device

Full error code list and recovery patterns: setup.md.

References

FileWhen to read
llm.mduseLLM functional + managed modes, tool calling, structured output (JSON Schema / Zod), interrupting, vision-language models, generation config
vision.mdImage classification, object detection, semantic + instance segmentation, pose estimation, OCR (horizontal + vertical), style transfer, text-to-image, image + text embeddings
speech.mdSpeech-to-text (Whisper batch + streaming with timestamps), text-to-speech (Kokoro batch + streaming, phoneme input, voice catalogue), voice activity detection, audio sample-rate requirements
setup.mdinitExecutorch, Expo / bare resource-fetcher adapters, model loading strategies, Metro config, error codes and recovery, useExecutorchModule for custom .pte models, useTokenizer, usePrivacyFilter, full model catalogue

External Resources

  • Official docs: https://docs.swmansion.com/react-native-executorch
  • API reference: https://docs.swmansion.com/react-native-executorch/docs/api-reference
  • Source: https://github.com/software-mansion/react-native-executorch
  • Pre-exported models: https://huggingface.co/software-mansion

Related skills

This week in AI coding

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

unsubscribe anytime.