/install adb-controller
ADB Controller
This skill allows you to execute ADB (Android Debug Bridge) commands on a connected Android device and automatically retrieve a screenshot of the result.
Configuration
The user can configure the target ADB device/server in their openclaw.json (this is automatically read by the script):
{
"skills": {
"entries": {
"adb-controller": {
"adbServer": "192.168.1.100:5555" // or device serial
}
}
}
}
Usage
To run an ADB command, execute the provided Python script:
python3 ~/.openclaw/workspace/skills/adb-controller/scripts/run_adb.py shell input tap x y
You can pass any standard ADB arguments to the script. For example:
python3 .../run_adb.py shell input text "hello"python3 .../run_adb.py shell input keyevent 26(Power button)python3 .../run_adb.py shell swipe 500 1000 500 500
Workflow (Mandatory)
- Understand the user's intent and determine the correct ADB command.
- Execute the user's requested action using the
run_adb.pyscript via theexectool. - The script will output the path to a newly captured screenshot.
- Send the Image: You MUST use the
messagetool (withaction="send"andmedia="\x3Cpath-to-screenshot>") to send the resulting screenshot to the user, allowing them to see the outcome of the action. Do not just output the file path.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install adb-controller - 安装完成后,直接呼叫该 Skill 的名称或使用
/adb-controller触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
adb controller 是什么?
Control an Android device via ADB. Use when the user asks to control an Android device, tap, swipe, input text, or perform actions via adb. Automatically use... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 485 次。
如何安装 adb controller?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install adb-controller」即可一键安装,无需额外配置。
adb controller 是免费的吗?
是的,adb controller 完全免费(开源免费),可自由下载、安装和使用。
adb controller 支持哪些平台?
adb controller 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 adb controller?
由 Yang Feng(@fengyang0317)开发并维护,当前版本 v1.0.0。