What problem does it solve? React Native's built-in networking stack is slow on cold starts, lacks custom WebSocket headers on iOS, and hides native request timing from developers. This Skill guides AI assistants to use the real APIs from the react-native-nitro-fetch family — native fetch, NitroWebSocket, and a fast TextDecoder — instead of inventing nonexistent helpers. ## Core Features & Use Cases - Cold-start prefetching: Persist requests with prefetchOnAppStart and prefetchKey so native code replays them before React Native boots, with configurable cache TTL and token refresh. - Native WebSockets: Use NitroWebSocket with custom upgrade headers, binary frames, pre-warming via prewarmOnAppStart, and a guided migration path from React Native's built-in WebSocket. - Observability: Record HTTP and WebSocket traffic with the in-process NetworkInspector, then escalate to Perfetto or Instruments traces for DNS/TLS/TTFB breakdowns. - Use Case: Your app's home feed takes over a second to render on cold start. Use this Skill to schedule a cross-launch prefetch with token refresh, wire the Android Application.onCreate bootstrap, and verify the cache hit in the NetworkInspector. ## Quick Start Ask the assistant how to make cold-start GET requests feel instant in a React Native app using nitro-fetch prefetching.