Install
openclaw skills install react-native-updateIntegrate and troubleshoot React Native Update OTA for Pushy and Cresc. Use when wiring react-native-update into React Native CLI, Expo prebuild, HarmonyOS, brownfield, monorepo, or mixed native apps; configuring update.json/appKey, Pushy/Cresc clients, UpdateProvider/useUpdate, iOS/Android/Harmony bundle loading, release baseline upload, checkStrategy/updateStrategy, canary/metaInfo flows, expo-updates conflicts, or OTA diagnostics.
openclaw skills install react-native-updateUse this skill to get a project from "not integrated" to "hot update works in release builds". Prioritize copy-paste-safe steps, smallest viable changes, and explicit verification checkpoints.
pushy CLI, new Pushy(...), Pushy dashboard.cresc CLI, new Cresc(...), Cresc dashboard.update.json, and JS client class on the same service. Do not mix pushy createApp with new Cresc(...), or the reverse.Pushy vs Cresc.ios, android, harmony).references/integration-playbook.md before giving or applying steps.react-native-update and ensure react-native-update-cli is available.RCTPushy.bundleURL() or Expo auto integration.UpdateContext.getBundleUrl(...) through ReactHost, ReactNativeHost, or custom instance manager.Pushy or Cresc client outside the root component and wrap the real app tree with UpdateProvider.scripts/integration_doctor.sh <app-root> and fix actionable misses.debug: true can help check/download in development, but applying patches requires a release build.expo-updates conflict in Expo projects.useUpdate() methods and state over direct client calls. Only call the client directly for a clearly necessary low-level integration escape hatch, and explain why.checkUpdate() as a trigger, not as the source of truth. Do not branch on its return value; read updateInfo/lastError from useUpdate() in useEffect or render state.metaInfo rollout gates, QR/deep-link testing, brownfield integration, canary rollout.references/integration-playbook.md before giving steps.scripts/integration_doctor.sh for quick project diagnosis.