{
  "schemaVersion": "1.0",
  "item": {
    "slug": "android-adb",
    "name": "ADB Connection",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/StaticAI/android-adb",
    "canonicalUrl": "https://clawhub.ai/StaticAI/android-adb",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/android-adb",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=android-adb",
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/android-adb"
    },
    "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/android-adb",
    "agentPageUrl": "https://openagent3.xyz/skills/android-adb/agent",
    "manifestUrl": "https://openagent3.xyz/skills/android-adb/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/android-adb/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": "Android Automation",
        "body": "Control and automate Android devices using ADB, uiautomator, and screencap."
      },
      {
        "title": "USB Connection",
        "body": "Enable Developer Options and USB Debugging on the device.\nConnect via USB and verify with adb devices."
      },
      {
        "title": "Wireless Connection (Android 11+)",
        "body": "Enable Wireless Debugging in Developer Options.\nPairing: Find the IP, port, and pairing code in the \"Pair device with pairing code\" popup.\nadb pair <ip>:<pairing_port> <pairing_code>\nConnecting: Use the IP and port shown on the main Wireless Debugging screen.\nadb connect <ip>:<connection_port>\nVerify with adb devices."
      },
      {
        "title": "Launching an App",
        "body": "Use the monkey tool to launch apps by package name:\nadb shell monkey -p <package_name> -c android.intent.category.LAUNCHER 1"
      },
      {
        "title": "Analyzing the UI",
        "body": "Dump and pull the UI hierarchy to find coordinates:\nadb shell uiautomator dump /sdcard/view.xml && adb pull /sdcard/view.xml ./view.xml\n\nThen grep for text or resource IDs to find bounds=\"[x1,y1][x2,y2]\"."
      },
      {
        "title": "Interacting with Elements",
        "body": "Tap: adb shell input tap <x> <y>\nText: adb shell input text \"<text>\" (Note: Use %\\s for spaces in some environments or handle quoting carefully)\nKeyevent: adb shell input keyevent <keycode> (Home: 3, Back: 4, Power: 26, Search: 84, Enter: 66)\nSwipe: adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>"
      },
      {
        "title": "Visual Verification",
        "body": "Take a screenshot to verify the state:\nadb shell screencap -p /sdcard/screen.png && adb pull /sdcard/screen.png ./screen.png"
      },
      {
        "title": "Tips",
        "body": "Search: Use input keyevent 84 to trigger search in many apps.\nWait: Use sleep <seconds> between commands to allow the UI to update.\nCoordinates: Calculate the center of [x1,y1][x2,y2] for reliable taps."
      }
    ],
    "body": "Android Automation\n\nControl and automate Android devices using ADB, uiautomator, and screencap.\n\nConnecting Devices\nUSB Connection\nEnable Developer Options and USB Debugging on the device.\nConnect via USB and verify with adb devices.\nWireless Connection (Android 11+)\nEnable Wireless Debugging in Developer Options.\nPairing: Find the IP, port, and pairing code in the \"Pair device with pairing code\" popup. adb pair <ip>:<pairing_port> <pairing_code>\nConnecting: Use the IP and port shown on the main Wireless Debugging screen. adb connect <ip>:<connection_port>\nVerify with adb devices.\nCommon Workflows\nLaunching an App\n\nUse the monkey tool to launch apps by package name: adb shell monkey -p <package_name> -c android.intent.category.LAUNCHER 1\n\nAnalyzing the UI\n\nDump and pull the UI hierarchy to find coordinates: adb shell uiautomator dump /sdcard/view.xml && adb pull /sdcard/view.xml ./view.xml\n\nThen grep for text or resource IDs to find bounds=\"[x1,y1][x2,y2]\".\n\nInteracting with Elements\nTap: adb shell input tap <x> <y>\nText: adb shell input text \"<text>\" (Note: Use %\\s for spaces in some environments or handle quoting carefully)\nKeyevent: adb shell input keyevent <keycode> (Home: 3, Back: 4, Power: 26, Search: 84, Enter: 66)\nSwipe: adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>\nVisual Verification\n\nTake a screenshot to verify the state: adb shell screencap -p /sdcard/screen.png && adb pull /sdcard/screen.png ./screen.png\n\nTips\nSearch: Use input keyevent 84 to trigger search in many apps.\nWait: Use sleep <seconds> between commands to allow the UI to update.\nCoordinates: Calculate the center of [x1,y1][x2,y2] for reliable taps."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/StaticAI/android-adb",
    "publisherUrl": "https://clawhub.ai/StaticAI/android-adb",
    "owner": "StaticAI",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/android-adb",
    "downloadUrl": "https://openagent3.xyz/downloads/android-adb",
    "agentUrl": "https://openagent3.xyz/skills/android-adb/agent",
    "manifestUrl": "https://openagent3.xyz/skills/android-adb/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/android-adb/agent.md"
  }
}