원클릭으로
burner-phone
// Control Android devices via ADB with vision feedback. Use this to see the screen, take screenshots, analyze UI elements, and automate phone tasks.
// Control Android devices via ADB with vision feedback. Use this to see the screen, take screenshots, analyze UI elements, and automate phone tasks.
Upload images to Feishu/Lark. Returns image_key for use in messages.
Run Codex CLI, Claude Code, Kiro CLI, OpenCode, or Pi Coding Agent via background process for programmatic control.
Helps users discover, install, and manage goclaw skills. Use when users ask "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. Provides guidance for finding skills in the goclaw ecosystem and the broader open agent skills community.
This skill should be used when users ask for weather information, current conditions, or forecasts for any location worldwide. Use for queries like "weather in Beijing", "what's the weather today", "temperature in Tokyo", "forecast for London".
This skill should be used when the user needs to automate multi-step website tasks. Activates for browser automation, web scraping, UI testing, or building AI agents. Provides complete action manuals with step-by-step instructions and verified selectors.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
| name | burner-phone |
| description | Control Android devices via ADB with vision feedback. Use this to see the screen, take screenshots, analyze UI elements, and automate phone tasks. |
| model | qwen2.5-omni:3b |
| keywords | android, phone, adb, screenshot, vision, screen, tap, swipe, automation |
Use this skill for ANY request involving phone screens or mobile app automation.
ALWAYS follow this pattern:
Screenshot: Capture the current screen
bash(cmd="adb exec-out screencap -p > ./assets/screen.png")
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.\"")
Act: Perform the action using exact coordinates from step 2
bash(cmd="adb shell input tap <x> <y>")
Verify: Screenshot again to confirm the action worked
bash(cmd="adb shell input tap <x> <y>")
bash(cmd="adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>")
bash(cmd="adb shell input text 'your text here'")
bash(cmd="adb shell input keyevent KEYCODE_HOME")
bash(cmd="adb shell input keyevent KEYCODE_BACK")
bash(cmd="adb shell input keyevent KEYCODE_ENTER")
bash(cmd="adb shell am start -n com.package.name/.MainActivity")