{
  "schemaVersion": "1.0",
  "item": {
    "slug": "react-native-update",
    "name": "React Native Update (Pushy) Integration",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sunnylqm/react-native-update",
    "canonicalUrl": "https://clawhub.ai/sunnylqm/react-native-update",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/react-native-update",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=react-native-update",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/integration-playbook.md",
      "scripts/integration_doctor.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "react-native-update",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T23:12:59.554Z",
      "expiresAt": "2026-05-14T23:12:59.554Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=react-native-update",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=react-native-update",
        "contentDisposition": "attachment; filename=\"react-native-update-0.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "react-native-update"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/react-native-update"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/react-native-update",
    "agentPageUrl": "https://openagent3.xyz/skills/react-native-update/agent",
    "manifestUrl": "https://openagent3.xyz/skills/react-native-update/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/react-native-update/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Use this skill to get a project from “not integrated” to “hot update works in release builds”.\nPrioritize copy-paste-safe steps, smallest viable changes, and explicit verification checkpoints."
      },
      {
        "title": "Workflow",
        "body": "Detect app type (React Native CLI vs Expo) and target platforms.\nApply dependency/install steps from references/integration-playbook.md.\nApply required native config (Bundle URL / MainApplication integration points).\nAdd Pushy client + UpdateProvider minimal bootstrapping.\nRun scripts/integration_doctor.sh <app-root> to detect common misses.\nReturn a short action list: done / missing / next verification."
      },
      {
        "title": "Platform routing",
        "body": "If user context is OpenClaw: provide OpenClaw-first instructions and file/workspace conventions.\nIf user context is Claude Code: provide Claude Code-first command style and workflow wording.\nIf context is unknown: provide neutral steps first, then append OpenClaw/Claude Code notes.\nKeep technical steps identical; only adapt command conventions and delivery style."
      },
      {
        "title": "Guardrails",
        "body": "Keep user code changes minimal and localized.\nDo not promise hot update works in debug mode; emphasize release verification.\nWarn about expo-updates conflict in Expo projects.\nPreserve existing app architecture; adapt snippets to current project style.\nIf native files differ heavily (monorepo/mixed native), provide targeted patch guidance instead of broad rewrites."
      },
      {
        "title": "Outputs to provide",
        "body": "Minimal integration diff (exact files and snippets).\nVerification checklist (build, check update, download, switch version).\nTroubleshooting hints for common failures.\nScenario examples when requested (including class component integration and custom whitelist rollout)."
      },
      {
        "title": "Resources",
        "body": "Read references/integration-playbook.md before giving steps.\nUse scripts/integration_doctor.sh for quick project diagnosis."
      }
    ],
    "body": "React Native Update Integration\nOverview\n\nUse 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.\n\nWorkflow\nDetect app type (React Native CLI vs Expo) and target platforms.\nApply dependency/install steps from references/integration-playbook.md.\nApply required native config (Bundle URL / MainApplication integration points).\nAdd Pushy client + UpdateProvider minimal bootstrapping.\nRun scripts/integration_doctor.sh <app-root> to detect common misses.\nReturn a short action list: done / missing / next verification.\nPlatform routing\nIf user context is OpenClaw: provide OpenClaw-first instructions and file/workspace conventions.\nIf user context is Claude Code: provide Claude Code-first command style and workflow wording.\nIf context is unknown: provide neutral steps first, then append OpenClaw/Claude Code notes.\nKeep technical steps identical; only adapt command conventions and delivery style.\nGuardrails\nKeep user code changes minimal and localized.\nDo not promise hot update works in debug mode; emphasize release verification.\nWarn about expo-updates conflict in Expo projects.\nPreserve existing app architecture; adapt snippets to current project style.\nIf native files differ heavily (monorepo/mixed native), provide targeted patch guidance instead of broad rewrites.\nOutputs to provide\nMinimal integration diff (exact files and snippets).\nVerification checklist (build, check update, download, switch version).\nTroubleshooting hints for common failures.\nScenario examples when requested (including class component integration and custom whitelist rollout).\nResources\nRead references/integration-playbook.md before giving steps.\nUse scripts/integration_doctor.sh for quick project diagnosis."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sunnylqm/react-native-update",
    "publisherUrl": "https://clawhub.ai/sunnylqm/react-native-update",
    "owner": "sunnylqm",
    "version": "0.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/react-native-update",
    "downloadUrl": "https://openagent3.xyz/downloads/react-native-update",
    "agentUrl": "https://openagent3.xyz/skills/react-native-update/agent",
    "manifestUrl": "https://openagent3.xyz/skills/react-native-update/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/react-native-update/agent.md"
  }
}