{
  "schemaVersion": "1.0",
  "item": {
    "slug": "scanwow-sync",
    "name": "Scanwow Sync",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/BrandonS7/scanwow-sync",
    "canonicalUrl": "https://clawhub.ai/BrandonS7/scanwow-sync",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/scanwow-sync",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=scanwow-sync",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/scanwow-sync"
    },
    "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/scanwow-sync",
    "agentPageUrl": "https://openagent3.xyz/skills/scanwow-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/scanwow-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/scanwow-sync/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": "ScanWow Sync",
        "body": "Connect your OpenClaw agent to your iPhone's camera using the ScanWow iOS app.\nScan documents on your phone, let AI extract the text, and beam it instantly to your agent's workspace using Secure API Export."
      },
      {
        "title": "Setup Instructions",
        "body": "Start a Webhook Server on your OpenClaw host (or through a reverse proxy).\nYou can use Python, Node, or netcat. Here is a simple Python webhook to save incoming scans:\n\n# save_scans.py\nfrom http.server import HTTPServer, BaseHTTPRequestHandler\nimport json\nimport os\n\nTOKEN = \"YOUR_SECRET_TOKEN\"\n\nclass ScanHandler(BaseHTTPRequestHandler):\n    def do_POST(self):\n        auth = self.headers.get(\"Authorization\")\n        if auth != f\"Bearer {TOKEN}\":\n            self.send_response(401)\n            self.end_headers()\n            return\n            \n        content_len = int(self.headers.get('Content-Length', 0))\n        post_body = self.rfile.read(content_len)\n        data = json.loads(post_body)\n        \n        # Save the OCR text\n        filename = f\"scan_{data.get('id', 'doc')}.md\"\n        with open(filename, 'w') as f:\n            f.write(data.get('text', ''))\n            \n        print(f\"✅ Saved scan: {filename}\")\n        self.send_response(200)\n        self.send_header('Content-Type', 'application/json')\n        self.end_headers()\n        self.wfile.write(b'{\"success\":true}')\n\nprint(\"Listening for ScanWow scans on port 8000...\")\nHTTPServer(('', 8000), ScanHandler).serve_forever()\n\nRun the server:\npython3 save_scans.py\n(Ensure port 8000 is accessible from the internet, e.g., using ngrok, Cloudflare Tunnels, or your public IP)\n\n\nConfigure the ScanWow App\n\nOpen ScanWow on your iOS device\nTap the Settings gear ⚙️\nGo to Secure API Export\nEnter your public Endpoint URL (e.g., https://your-server.com/api/scan)\nEnter your Token (YOUR_SECRET_TOKEN)\nTurn it ON"
      },
      {
        "title": "Payload Format",
        "body": "When you capture a document and save it in ScanWow, it will automatically send a POST request with the following JSON:\n\n{\n  \"id\": \"uuid-string\",\n  \"text\": \"Extracted document text...\",\n  \"confidence\": 0.98,\n  \"pages\": 1,\n  \"timestamp\": 1708531200000,\n  \"isEnhanced\": true\n}\n\nNow any scan you take on your phone will appear magically in your OpenClaw agent's workspace!"
      }
    ],
    "body": "ScanWow Sync\n\nConnect your OpenClaw agent to your iPhone's camera using the ScanWow iOS app. Scan documents on your phone, let AI extract the text, and beam it instantly to your agent's workspace using Secure API Export.\n\nSetup Instructions\nStart a Webhook Server on your OpenClaw host (or through a reverse proxy). You can use Python, Node, or netcat. Here is a simple Python webhook to save incoming scans:\n# save_scans.py\nfrom http.server import HTTPServer, BaseHTTPRequestHandler\nimport json\nimport os\n\nTOKEN = \"YOUR_SECRET_TOKEN\"\n\nclass ScanHandler(BaseHTTPRequestHandler):\n    def do_POST(self):\n        auth = self.headers.get(\"Authorization\")\n        if auth != f\"Bearer {TOKEN}\":\n            self.send_response(401)\n            self.end_headers()\n            return\n            \n        content_len = int(self.headers.get('Content-Length', 0))\n        post_body = self.rfile.read(content_len)\n        data = json.loads(post_body)\n        \n        # Save the OCR text\n        filename = f\"scan_{data.get('id', 'doc')}.md\"\n        with open(filename, 'w') as f:\n            f.write(data.get('text', ''))\n            \n        print(f\"✅ Saved scan: {filename}\")\n        self.send_response(200)\n        self.send_header('Content-Type', 'application/json')\n        self.end_headers()\n        self.wfile.write(b'{\"success\":true}')\n\nprint(\"Listening for ScanWow scans on port 8000...\")\nHTTPServer(('', 8000), ScanHandler).serve_forever()\n\n\nRun the server: python3 save_scans.py (Ensure port 8000 is accessible from the internet, e.g., using ngrok, Cloudflare Tunnels, or your public IP)\n\nConfigure the ScanWow App\n\nOpen ScanWow on your iOS device\nTap the Settings gear ⚙️\nGo to Secure API Export\nEnter your public Endpoint URL (e.g., https://your-server.com/api/scan)\nEnter your Token (YOUR_SECRET_TOKEN)\nTurn it ON\nPayload Format\n\nWhen you capture a document and save it in ScanWow, it will automatically send a POST request with the following JSON:\n\n{\n  \"id\": \"uuid-string\",\n  \"text\": \"Extracted document text...\",\n  \"confidence\": 0.98,\n  \"pages\": 1,\n  \"timestamp\": 1708531200000,\n  \"isEnhanced\": true\n}\n\n\nNow any scan you take on your phone will appear magically in your OpenClaw agent's workspace!"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/BrandonS7/scanwow-sync",
    "publisherUrl": "https://clawhub.ai/BrandonS7/scanwow-sync",
    "owner": "BrandonS7",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/scanwow-sync",
    "downloadUrl": "https://openagent3.xyz/downloads/scanwow-sync",
    "agentUrl": "https://openagent3.xyz/skills/scanwow-sync/agent",
    "manifestUrl": "https://openagent3.xyz/skills/scanwow-sync/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/scanwow-sync/agent.md"
  }
}