From android-tools
List installed Android emulators (AVDs). Use when you need to check available emulators before starting one.
How this skill is triggered — by the user, by Claude, or both
Slash command
/android-tools:list-emulatorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display installed Android emulators (AVDs) with detailed information.
Display installed Android emulators (AVDs) with detailed information.
Script location: scripts/list-emulators.sh (relative to this skill's
directory)
Before running, locate this skill's directory (where this SKILL.md is located), then execute:
bash <skill-directory>/scripts/list-emulators.sh
The script outputs JSON with emulator details.
{
"success": true,
"count": 2,
"emulators": [
{
"name": "Pixel_6_API_33",
"device": "pixel_6",
"api": "33",
"resolution": "1080x2400",
"image": "google_apis_playstore",
"playstore": true
}
]
}
{
"success": false,
"error": "emulator not found",
"hint": "Set ANDROID_HOME or ANDROID_SDK_ROOT environment variable",
"emulators": []
}
success: true)Format the JSON output as a table:
Installed Emulators (2):
NAME DEVICE API RESOLUTION IMAGE PLAYSTORE
------------------------------------------------------------------------------------
Pixel_6_API_33 pixel_6 33 1080x2400 google_apis_playstore Yes
Pixel_4_API_30 pixel_4 30 1080x2280 google_apis No
playstore: true as "Yes", false as "No"success: false)Show the error message and hint to the user:
Error: emulator not found
Hint: Set ANDROID_HOME or ANDROID_SDK_ROOT environment variable
npx claudepluginhub powdream/claude-plugins --plugin android-toolsOrchestrates Android dev tasks — project creation, deployment, SDK management, emulator interaction, and doc search — via the `android` CLI tool.
Use when working with Android devices via ADB - connecting devices, running shell commands, installing apps, debugging, taking screenshots, UI automation, viewing logs, analyzing crashes, or exploring system internals. Triggers on "adb", "logcat", "install apk", "debug android", "android device", "shell command", "screenshot", "dumpsys", "crash", "ANR".
Automates UI interactions on iOS simulators/devices and Android emulators/devices: open apps, snapshot/screenshot, tap/press, type/fill, scroll, extract UI info. For mobile QA, debugging, replay.