What problem does it solve? Finding the exact pixel coordinates of a button, text field, or menu on an Android screen normally requires taking a screenshot and running vision analysis, which takes 7-8 seconds. This Skill dumps the UI hierarchy with uiautomator and parses the XML to return precise element coordinates in about 1 second. ## Core Features & Use Cases - Element Search: Find UI elements by text, resource ID, or class name and get their center coordinates, size, and clickability as JSON. - One-Command Tap: Combine search and tap in a single invocation, e.g. find the "确认" button and tap it automatically. - Dual-Channel Resilience: Tries Shizuku rish first, falls back to ADB over 127.0.0.1:5555, and handles OEM quirks like MIUI's non-zero exit codes. - Use Case: An AI agent automating an Android app needs to press a submit button. Instead of screenshot analysis, it runs the script with the button text, receives the coordinates, and taps within one second. ## Quick Start Ask the AI to find the button labeled "确认" on the current Android screen and tap it using the phone-elements script.