#139·skills

[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 use android screenshot.
  • references/interact.md (two occurrences) says to use android 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.

  1. Install the devtools/android-cli skill.
  2. Run android screenshot as instructed in SKILL.md → fails.
  3. Run android screen --annotate as instructed in interact.md → fails.
  4. android screen capture --annotate succeeds and writes a PNG.

Suggested Fix

  • SKILL.md "Capturing screenshots": android screenshotandroid screen capture
  • interact.md (both occurrences): android screen --annotateandroid screen capture --annotate