askill
burner-phone

burner-phoneSafety 90Repository

Control Android devices via ADB with vision feedback. Use this to see the screen, take screenshots, analyze UI elements, and automate phone tasks.

218 stars
4.4k downloads
Updated 2/24/2026

Package Files

Loading files...
SKILL.md

Burner Phone Control

Use this skill for ANY request involving phone screens or mobile app automation.

Vision Feedback Loop

ALWAYS follow this pattern:

  1. Screenshot: Capture the current screen

    bash(cmd="adb exec-out screencap -p > ./assets/screen.png")
    
  2. Analyze: Use vision model to understand the screen

    bash(cmd="python3 ./scripts/vision_helper.py ./assets/screen.png \"Describe the screen and list coordinates (x,y) for interactable elements.\"")
    
  3. Act: Perform the action using exact coordinates from step 2

    bash(cmd="adb shell input tap <x> <y>")
    
  4. Verify: Screenshot again to confirm the action worked

Available Commands

Tapping

bash(cmd="adb shell input tap <x> <y>")

Swiping

bash(cmd="adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>")

Typing Text

bash(cmd="adb shell input text 'your text here'")

Key Events

bash(cmd="adb shell input keyevent KEYCODE_HOME")
bash(cmd="adb shell input keyevent KEYCODE_BACK")
bash(cmd="adb shell input keyevent KEYCODE_ENTER")

Launch App

bash(cmd="adb shell am start -n com.package.name/.MainActivity")

Rules

  1. ALWAYS screenshot before acting - never guess coordinates
  2. ALWAYS use vision_helper.py to get coordinates
  3. Use coordinates provided by the vision tool EXACTLY
  4. All paths are relative to the skill root directory

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

72/100Analyzed 2/25/2026

A practical Android ADB control skill with a clear vision feedback loop pattern. Provides executable commands for common mobile automation tasks. The skill is well-structured with clear steps but relies on a repo-specific helper script, making it internal to this project. Missing error handling and troubleshooting content reduces completeness."

90
75
60
65
80

Metadata

Licenseunknown
Version-
Updated2/24/2026
Publishersmallnest

Tags

No tags yet.