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.
它会碰到什么
扫了多少4 个文本文件,7 KB
它会碰到什么读凭据联网读文件
命中总数8 处
命中统计严重 0 · 高 2 · 中 5 · 低 1
逐条看命中(2 条严重或高危)
- 高
scripts/vision_helper.py:10cred-envreadSENTER_URL = os.getenv("SENTER_URL", "http://localhost:8081") - 高
scripts/vision_helper.py:11cred-envreadVISION_MODEL = os.getenv("VISION_MODEL", "qwen2.5-omni:3b")
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Burner Phone Control
Use this skill for ANY request involving phone screens or mobile app automation.
Vision Feedback Loop
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
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
- ALWAYS screenshot before acting - never guess coordinates
- ALWAYS use vision_helper.py to get coordinates
- Use coordinates provided by the vision tool EXACTLY
- All paths are relative to the skill root directory
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。