Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

adb-phone-controladb 电话控制

Agent Skill

adb-phone-control 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,121

周安装

177

GitHub Stars

公开资料未说明

下载量

1,444
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:adb-phone-control(adb 电话控制)
来源仓库:https://github.com/txmonkey/adb-phone-control
安装命令:
openclaw skills install adb-phone-control
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install adb-phone-control

简介

当需要通过 ADB 操作 Android 手机界面时使用此技能。

  • 支持点击、滑动、打字及应用程序启动。
  • 自动识别当前屏幕元素与可用操作。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需预先配置 ADB 环境与设备授权。
  • 避免在锁屏状态下执行敏感操作。adb-phone-control 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
adb-phone-control
description
Use when the user asks to control, operate, or automate an Android phone via ADB — tapping, swiping, typing, launching apps, or any UI interaction on a connected device
metadata
requires
bins

ADB Phone Control

Control Android devices through ADB with a structured observe-locate-act-verify loop.

Requirements

  • adb — Android Debug Bridge, must be in PATH
  • python3 — Required for app_explorer.py
  • ADB_OUTPUT_DIR (optional env var) — Directory for saving screenshots and UI dumps; defaults to current working directory

Permissions Used

This skill executes the following on the connected Android device:

  • adb shell input — tap, swipe, text input
  • adb shell uiautomator dump — UI hierarchy extraction
  • adb shell screencap — screen capture
  • adb shell am broadcast — ADBKeyboard IME input (for CJK text)
  • adb shell service call clipboard — clipboard-based text input fallback

Prerequisites

Before any operation, verify device connection:

adb devices

If no device found, instruct the user to:

  1. Connect via USB and enable USB Debugging
  2. Or connect wirelessly: adb connect <ip>:5555

Core Principle

NEVER guess coordinates from screenshots. ALWAYS use UI hierarchy as the primary locator.

Screenshots are for human-readable context and visual verification. UI dumps give exact pixel bounds.

Operation Loop

Every interaction follows this cycle:

┌─────────────────────────────────────────┐
│  1. OBSERVE  — dump UI + screenshot     │
│  2. LOCATE   — find element by text/id  │
│  3. ACT      — tap / swipe / type       │
│  4. VERIFY   — screenshot + dump again  │
│  5. REPEAT   — next action or done      │
└─────────────────────────────────────────┘

Do NOT skip the VERIFY step. UI transitions may take time; always confirm before proceeding.

Helper Functions

Source the helper script before starting any operation session:

source "$(dirname "${BASH_SOURCE[0]:-$0}")/adb-helpers.sh" 2>/dev/null || source ./adb-helpers.sh

Available Functions

FunctionUsageDescription
adb_dumpadb_dumpDump UI hierarchy to /tmp/ui_dump.xml
adb_screenshotadb_screenshotCapture screen to /tmp/adb_screen.png
adb_observeadb_observeDump UI + screenshot in one call
adb_tap_text "Submit"Find element by text, tap center
adb_tap_id "btn_send"Find element by resource-id, tap center
adb_tap_xy 540 1200Tap exact coordinates
adb_swipe x1 y1 x2 y2 [ms]Swipe between points (default 300ms)
adb_input_text "hello"Type text (supports spaces and CJK)
adb_key <keycode>Send keyevent (BACK, HOME, ENTER, etc.)
adb_hide_keyboardPress BACK to dismiss keyboard
adb_scroll_downSwipe up to scroll content down
adb_scroll_upSwipe down to scroll content up
adb_long_press x y [ms]Long press at coordinates (default 1000ms)
adb_wait [seconds]Sleep before next action (default 1s)
adb_screen_sizeGet device screen resolution
adb_launch_app <package>Launch app by package name
adb_find_package <keyword>Search installed packages by keyword
adb_bounds_center "bounds_string"Parse "[x1,y1][x2,y2]" → center x y

Element Lookup Details

adb_tap_text and adb_tap_id work by:

  1. Running adb_dump to get fresh UI hierarchy
  2. Parsing the XML for matching text= or resource-id= attributes
  3. Extracting the bounds="[x1,y1][x2,y2]" attribute
  4. Computing center point: ((x1+x2)/2, (y1+y2)/2)
  5. Executing adb shell input tap <cx> <cy>

If multiple matches are found, the function taps the first match and prints a warning. If no match is found, the function prints an error — fall back to adb_screenshot + Read tool for visual inspection.

Standard Operating Procedure

Phase 1: Setup

# Source helpers
source "$(dirname "${BASH_SOURCE[0]:-$0}")/adb-helpers.sh" 2>/dev/null || source ./adb-helpers.sh

# Verify connection
adb devices

# Get screen resolution (important for swipe calculations)
adb_screen_size

Phase 2: Navigate & Operate

For each interaction step:

# 1. Observe current state
adb_observe
# Then read /tmp/adb_screen.png with the Read tool to see the screen

# 2. Locate and act (prefer text/id over raw coordinates)
adb_tap_text "Create"
# or: adb_tap_id "iv_send"
# or as last resort: adb_tap_xy 540 2009

# 3. Wait for transition
adb_wait 2

# 4. Verify result
adb_screenshot
# Then read /tmp/adb_screen.png to confirm the action worked

Phase 3: Text Input

# Tap the input field first
adb_tap_text "Search..."
adb_wait 1

# Type text
adb_input_text "Hello World"

# Hide keyboard before tapping other elements
adb_hide_keyboard
adb_wait 1

# Now safe to tap other buttons
adb_tap_text "Send"

Critical Rules

1. UI Dump First, Screenshot Second

  • uiautomator dump gives exact bounds, element states (enabled/focused/clickable), text content, and resource IDs
  • Screenshots only for: visual verification, understanding layout context, or when UI dump fails (e.g., animations, WebView content)
  • When UI dump returns elements with NAF="true", the element has No Accessible Framework info — use screenshot + coordinates as fallback

2. Keyboard Awareness

  • Always hide keyboard before tapping non-input elements. The keyboard shifts the layout, making UI dump bounds stale.
  • After typing, call adb_hide_keyboard then adb_dump before tapping anything else.
  • If uiautomator dump returns ERROR: could not get idle state, the keyboard animation may still be running — wait 1s and retry.

3. Wait Strategy

  • After tap: wait 1s before next dump/screenshot
  • After launching app: wait 2-3s
  • After page navigation: wait 2s
  • After typing: wait 0.5s
  • If UI hasn't changed after action: wait longer, up to 5s, then re-check
  • Never blindly chain actions without verification

4. Chinese / CJK Text Input

adb shell input text does not support CJK characters natively. The helper adb_input_text handles this by:

  • Using adb shell am broadcast with ADBKeyboard if available
  • Falling back to clipboard-based input: copy to clipboard via adb shell service call clipboard, then paste

If ADB Keyboard IME is installed (com.android.adbkeyboard), enable it:

adb shell ime set com.android.adbkeyboard/.AdbIME

5. Coordinate System

  • All coordinates are in physical pixels matching the device resolution
  • adb shell wm size returns the canonical resolution (e.g., 1080x2340)
  • Screenshot pixel dimensions may differ from device resolution — never estimate coordinates from screenshot pixel positions
  • Always derive coordinates from uiautomator dump bounds

6. Handling Failures

If an action doesn't produce the expected result:

  1. Re-dump UI hierarchy — the element may have moved or state changed
  2. Take a screenshot — visual context may reveal popups, loading states, or errors
  3. Check if the element is enabled="true" and clickable="true" before tapping
  4. If element is not found by text, try partial match or search by resource-id
  5. If the app is in a WebView, UI dump may not capture web elements — use screenshot + coordinate estimation as fallback

7. App Launch

Prefer adb_find_package + adb_launch_app over monkey command:

# Find the app
adb_find_package "wechat"
# Launch it
adb_launch_app "com.tencent.mm"

Limitations

  • uiautomator dump doesn't work during animations — wait for idle state
  • WebView/Flutter/game content may not appear in UI hierarchy — use screenshot-based approach
  • Some custom views may have empty text and no resource-id — use bounds + screenshot cross-reference
  • Maximum ~100 actions per task is a reasonable limit to avoid infinite loops

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.27%
按下载量换算1,376

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install adb-phone-control 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills