adb
Installation
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:
adbmust be in PATH- A device or emulator must be connected
Instructions:
- Verify ADB connectivity:
- Run
adb devicesand 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
AskUserQuestionto ask which device to target, then pass-s <serial>to all subsequentadbcommands
- Run