com um clique
adb-keyboard
// Check, install, and activate ADBKeyboard for full Unicode/Chinese/emoji text input
// Check, install, and activate ADBKeyboard for full Unicode/Chinese/emoji text input
Execute user instructions on the phone via ClawPaw MCP tools. Use when a user wants to do something on the phone — send a message, open an app, tap something, take a screenshot, etc.
Guide users through ClawPaw Android setup — installing the APK, granting permissions, connecting SSH tunnel, and verifying the full LLM-to-phone control chain. Use when a user wants to set up ClawPaw, install the app, connect a new phone, or troubleshoot connection issues.
Location check-in with auto photo, geocoding, weather, and a generated caption
End-of-day report with trajectory timeline, dwell-time stats, and notification summary
打开飞书并完成考勤打卡(上班/下班),支持迟到补卡。用户说"帮我打卡"、"飞书签到"时使用。
Make the phone ring, vibrate, and flash to help locate it
| name | adb-keyboard |
| description | Check, install, and activate ADBKeyboard for full Unicode/Chinese/emoji text input |
| metadata | {"openclaw":{"emoji":"⌨️"}} |
ADBKeyboard is required for typing Chinese, emoji, and special characters on the phone. Without it, only basic ASCII text works and non-ASCII input fails silently. This skill diagnoses, installs, and activates ADBKeyboard.
Package: com.android.adbkeyboard
IME ID: com.android.adbkeyboard/.AdbIME
APK source: https://github.com/nicso/ADBKeyboard/releases
Run these shell commands on the device to diagnose:
Check if installed:
pm list packages | grep adbkeyboard
package:com.android.adbkeyboard → installedCheck if active:
settings get secure default_input_method
com.android.adbkeyboard/.AdbIME → already active, doneDownload and install the APK:
# Download APK to device temp directory
curl -L -o /data/local/tmp/ADBKeyboard.apk "https://github.com/nicso/ADBKeyboard/releases/download/v2.1/ADBKeyboard-v2.1.apk"
# Install
pm install /data/local/tmp/ADBKeyboard.apk
# Clean up
rm /data/local/tmp/ADBKeyboard.apk
If curl is not available on the device, try wget:
wget -O /data/local/tmp/ADBKeyboard.apk "https://github.com/nicso/ADBKeyboard/releases/download/v2.1/ADBKeyboard-v2.1.apk"
If download fails on-device (no curl/wget), tell the user to manually download the APK from https://github.com/nicso/ADBKeyboard/releases and install it.
After installation, verify:
pm list packages | grep adbkeyboard
Enable and set ADBKeyboard as the active input method:
ime enable com.android.adbkeyboard/.AdbIME
ime set com.android.adbkeyboard/.AdbIME
Verify activation:
settings get secure default_input_method
Expected output: com.android.adbkeyboard/.AdbIME
After activation, test by typing a Chinese string or emoji using the type_text tool. If the text appears correctly on screen, setup is complete.
Test text: 你好世界 🎉
Already set up:
⌨️ ADB Keyboard Status: ✅ Ready
ADBKeyboard is installed and active. Chinese, emoji, and Unicode input are fully supported.
Installed and activated:
⌨️ ADB Keyboard Setup: Complete
✅ Installed ADBKeyboard
✅ Set as active input method
✅ Test passed — Unicode input working
You can now type Chinese, emoji, and special characters.
Install failed:
⌨️ ADB Keyboard Setup: Manual Step Needed
Could not auto-install APK on the device.
Please download ADBKeyboard from: https://github.com/nicso/ADBKeyboard/releases
Install the APK on your phone, then tell me to retry activation.