[Bug] android-cli: incorrect android CLI command names
Author: MessiasLimaCreated Aug 10, 2026Updated Aug 10, 2026
Affected Skill
devtools/android-cli
Description
The skill references two commands that don't exist in the actual android CLI:
SKILL.md→ "Capturing screenshots" section says to useandroid screenshot.references/interact.md(two occurrences) says to useandroid screen --annotate.
The real command is android screen capture, and --annotate is a flag on the capture subcommand, not on screen itself.
Expected Behavior
Following the documented commands should successfully capture / annotate a screenshot.
Actual Behavior
$ android screenshot
android 'screenshot' is not a valid command. See android --help
Did you mean: android screen or android create or android describe?
$ android screen --annotate
Unknown option: '--annotate'
Usage: android screen [-h] [COMMAND]
Steps to Reproduce
CLI version 1.0.15985488.
- Install the
devtools/android-cliskill. - Run
android screenshotas instructed inSKILL.md→ fails. - Run
android screen --annotateas instructed ininteract.md→ fails. android screen capture --annotatesucceeds and writes a PNG.
Suggested Fix
SKILL.md"Capturing screenshots":android screenshot→android screen captureinteract.md(both occurrences):android screen --annotate→android screen capture --annotate
Source: android/skills