# Send ADB Connection to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/android-adb",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=android-adb",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "android-adb",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T01:43:59.944Z",
      "expiresAt": "2026-05-06T01:43:59.944Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=android-adb",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=android-adb",
        "contentDisposition": "attachment; filename=\"android-adb-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "android-adb"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Android Automation

Control and automate Android devices using ADB, uiautomator, and screencap.

### USB Connection

Enable Developer Options and USB Debugging on the device.
Connect via USB and verify with adb devices.

### Wireless Connection (Android 11+)

Enable Wireless Debugging in Developer Options.
Pairing: Find the IP, port, and pairing code in the "Pair device with pairing code" popup.
adb pair <ip>:<pairing_port> <pairing_code>
Connecting: Use the IP and port shown on the main Wireless Debugging screen.
adb connect <ip>:<connection_port>
Verify with adb devices.

### Launching an App

Use the monkey tool to launch apps by package name:
adb shell monkey -p <package_name> -c android.intent.category.LAUNCHER 1

### Analyzing the UI

Dump and pull the UI hierarchy to find coordinates:
adb shell uiautomator dump /sdcard/view.xml && adb pull /sdcard/view.xml ./view.xml

Then grep for text or resource IDs to find bounds="[x1,y1][x2,y2]".

### Interacting with Elements

Tap: adb shell input tap <x> <y>
Text: adb shell input text "<text>" (Note: Use %\\s for spaces in some environments or handle quoting carefully)
Keyevent: adb shell input keyevent <keycode> (Home: 3, Back: 4, Power: 26, Search: 84, Enter: 66)
Swipe: adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>

### Visual Verification

Take a screenshot to verify the state:
adb shell screencap -p /sdcard/screen.png && adb pull /sdcard/screen.png ./screen.png

### Tips

Search: Use input keyevent 84 to trigger search in many apps.
Wait: Use sleep <seconds> between commands to allow the UI to update.
Coordinates: Calculate the center of [x1,y1][x2,y2] for reliable taps.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: StaticAI
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T01:43:59.944Z
- Expires at: 2026-05-06T01:43:59.944Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/android-adb)
- [Send to Agent page](https://openagent3.xyz/skills/android-adb/agent)
- [JSON manifest](https://openagent3.xyz/skills/android-adb/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/android-adb/agent.md)
- [Download page](https://openagent3.xyz/downloads/android-adb)