Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计异常

adb亚行

Agent Skill

adb 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,576

周安装

65

GitHub Stars

公开资料未说明

下载量

515
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:adb(亚行)
来源仓库:https://github.com/morphet81/cheat-sheets
仓库路径:skills/adb
安装命令:
npx skills add https://github.com/morphet81/cheat-sheets --skill adb
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/morphet81/cheat-sheets --skill adb

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态和协作事项进行整理。
  • 建议结合原始 README 进一步验证具体用法和功能边界。
  • 使用前需确认权限范围和是否涉及文件读写或命令执行。
  • adb 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Use ADB commands to interact with an Android device or emulator to complete a user-defined mission. Operates in a screenshot-act-verify loop until the mission is accomplished.

Usage:

  • /adb <mission> — Describe what you want done on the device (e.g., "open Settings and enable Dark Mode")

Prerequisites:

  • adb must be in PATH
  • A device or emulator must be connected

Instructions:

  1. Verify ADB connectivity:

- Run adb devices and confirm at least one device is listed (not "unauthorized") - If no device is found, inform the user and STOP - If multiple devices are found, use AskUserQuestion to ask which device to target, then pass -s <serial> to all subsequent adb commands

  1. Understand the mission:

- Parse $ARGUMENTS as the mission description - If $ARGUMENTS is empty, use AskUserQuestion to ask what the user wants to accomplish on the device - Break the mission into a mental checklist of expected steps (do not output this — it's for your own planning)

  1. Enter the screenshot-act-verify loop: Repeat the following cycle until the mission is complete or you determine it cannot be completed: a) Take a screenshot: mkdir -p.tmp && adb exec-out screencap -p >.tmp/screen.png b) Analyze the screen: c) Decide and execute the next action: Use one or more of these ADB commands: Action Command Tap at coordinates adb shell input tap <x> <y> Swipe adb shell input swipe <x1> <y1> <x2> <y2> [duration_ms] Type text adb shell input text "<text>" Press Back adb shell input keyevent 4 Press Home adb shell input keyevent 3 Press Enter adb shell input keyevent 66 Press Recent Apps adb shell input keyevent 187 Launch an app adb shell am start -n <package>/<activity> Open a URL adb shell am start -a android.intent.action.VIEW -d "<url>" Long press adb shell input swipe <x> <y> <x> <y> 1000 Coordinate tips: d) Wait and verify:

- Read the screenshot with the Read tool to understand the current screen state - Identify what app/screen is currently displayed - Determine what UI elements are visible (buttons, text fields, toggles, lists, etc.) - Assess progress toward the mission goal - If the screen is unclear or you need more detail about the UI element tree, run a UI dump: adb shell uiautomator dump /sdcard/ui.xml && adb pull /sdcard/ui.xml.tmp/ui.xml Then read .tmp/ui.xml to get element bounds, text, and resource IDs for precise tap coordinates. - When tapping a UI element, aim for its center based on the screenshot or the bounds attribute from the UI dump (e.g., bounds [0,200][1080,350] → tap at 540,275) - For scrolling down, swipe from the lower third to the upper third of the screen (e.g., adb shell input swipe 540 1500 540 500 300) - For text input, tap the field first, wait briefly, then type - After each action, wait briefly for the UI to settle (sleep 1) - Take another screenshot to verify the action had the expected effect - If the action did not work as expected (e.g., wrong element tapped, dialog appeared, screen didn't change), adjust and retry - Do not retry the same failing action more than 2 times — if it keeps failing, try an alternative approach (different coordinates, different navigation path, use the UI dump for precise bounds)

  1. Handle common situations:

- Keyboard covering the screen: After typing, press Back (keyevent 4) to dismiss the keyboard before taking a verification screenshot - Dialogs/popups: If an unexpected dialog appears, read it and dismiss it appropriately (tap "OK", "Allow", "Deny", etc. based on what makes sense for the mission) - Loading screens: If the screen shows a loading state, wait 2-3 seconds and take another screenshot - App not installed: If the target app isn't found, inform the user and STOP - Permission prompts: Grant permissions that are necessary for the mission (tap "Allow"), deny those that aren't relevant - Screen locked: If the device shows a lock screen, try swiping up (adb shell input swipe 540 1800 540 800) to unlock. If a PIN/password is needed, ask the user

  1. Check logcat when things go wrong:

- If an app crashes or behaves unexpectedly, check recent logs: adb logcat -d -t 50 - Use the logs to understand what happened and inform the user if the issue is not recoverable

  1. Mission complete:

- Once the mission objective is achieved, take a final screenshot as confirmation - Present the final screenshot to the user with a brief summary: ## Mission Complete <description of what was accomplished> Final state: <what's currently on screen> Actions taken: <count> steps

  1. Cleanup:

- Remove temporary files: rm -f.tmp/screen.png.tmp/ui.xml


Edge Cases

  • If adb is not found in PATH, display setup instructions and STOP
  • If the device becomes disconnected mid-mission, attempt adb devices to check — if disconnected, inform the user and STOP
  • If the mission requires installing an app, ask the user for the APK path or package name before proceeding
  • If you get stuck in a loop (same screen after 3 attempts), take a UI dump, reassess, and try a completely different approach. If still stuck, inform the user and ask for guidance
  • If the screen resolution is unknown, read it from the first screenshot dimensions or run adb shell wm size

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.01%
按下载量换算191

Claude

31.15%
按下载量换算160

Cursor

18.9%
按下载量换算97

Gemini CLI

10.02%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/morphet81/cheat-sheets --skill adb 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills