npx skills add ...
npx skills add callstackincubator/ai --skill react-native-ai-skills
npx skills add callstackincubator/ai --skill react-native-ai-skills
Provides integration recipes for the React Native AI @react-native-ai packages that wrap the Llama.rn (Llama.cpp), MLC-LLM, Apple Foundation backends. Use when integrating local on-device AI in React Native, setting up providers, model management.
The same skill content is published under more than one repo. The install counts are split across them; any of these commands works.
Example workflow for integrating on-device AI in React Native apps using the @react-native-ai ecosystem. Available provider tracks (can be combined):
Before selecting any reference file, classify the user request:
apple, Apple Intelligence, Apple Foundation Modelstranscription, speech synthesis, embeddings on Apple devicesllama, GGUF, llama.rn, HuggingFace, SmolLMembedding model, rerank, speech modelEach reference file follows a strict execution format:
Use the checklists exactly as written before moving to the next phase.
Reference this package when:
| Priority | Category | Impact | Start File |
|---|---|---|---|
| 1 | Path selection and baseline | N/A | [quick-start][quick-start] |
| 2 | Apple provider | N/A | [apple-provider][apple-provider] |
| 3 | Llama provider | N/A | [llama-provider][llama-provider] |
| 4 | MLC-LLM provider | N/A | [mlc-provider][mlc-provider] |
| 5 | NCNN provider | N/A | [ncnn-provider][ncnn-provider] |
Route by path:
| File | Impact | Description |
|---|---|---|
| [quick-start][quick-start] | N/A | Shared preflight |
| [apple-provider][apple-provider] | N/A | Apple Intelligence setup and integration |
| [llama-provider][llama-provider] | N/A | GGUF models, llama.rn, model management |
| [mlc-provider][mlc-provider] | N/A | MLC models, download, prepare, Expo plugin |
| [ncnn-provider][ncnn-provider] | N/A | NCNN wrapper, loadModel, runInference |
| Problem | Start With |
|---|---|
| Need path decision first | [quick-start][quick-start] |
| Integrate Apple Intelligence | [apple-provider][apple-provider] |
| Run GGUF models from HuggingFace | [llama-provider][llama-provider] |
| Run MLC-LLM models (Llama, Phi, Qwen) | [mlc-provider][mlc-provider] |
| Use NCNN for custom inference | [ncnn-provider][ncnn-provider] |
| Multi-provider app with SetupAdapter | [quick-start][quick-start] → provider-specific |
| Expo + native module setup | Provider-specific (each has Expo notes) |