<< All versions
Skill v1.0.1
currentAutomated scan100/100modalitydance/palmclaw/android-bluetooth
1 files
──Details
PublishedMay 14, 2026 at 08:13 PM
Content Hashsha256:7c43792372eeca5c...
Git SHA56d9a546100b
Bump Typepatch
──Files
Files (1 file, 1.5 KB)
SKILL.md1.5 KBactive
SKILL.md · 44 lines · 1.5 KB
version: "1.0.1" name: android-bluetooth description: Operate Android Bluetooth workflows with the bluetooth tool, including power, pairing handoff, BLE scan/connect/disconnect, and permission/settings recovery. Use for Bluetooth and BLE device tasks.
Android Bluetooth
Use bluetooth for all Bluetooth and BLE actions.
Tool Map
action=statusaction=set_poweraction=open_settingsaction=paired_listaction=ble_scanaction=ble_connectaction=ble_disconnect
Default Automation Policy
- Auto-attempt permission request first.
- Keep
open_settings_if_failed=truefor permission fallback. - Keep
wait_user_confirmation=trueonly for manual system steps. - Use
allow_manual_success=trueonly when manual setup is acceptable for upstream task flow.
Connect Playbook
bluetooth(action="status").- If needed:
bluetooth(action="set_power", enabled=true). - Discover:
bluetooth(action="ble_scan", seconds=5, max_results=20). - Connect:
bluetooth(action="ble_connect", address="...", timeout_sec=20, discover_services=true, open_settings_if_failed=true, wait_user_confirmation=true).
Disconnect Playbook
- Single:
bluetooth(action="ble_disconnect", address="...") - All:
bluetooth(action="ble_disconnect", all=true)
Failure Recovery
- Permission failures: grant in settings and continue same run.
- Power-off failure: hand off to system Bluetooth settings, then continue.
- Connect timeout: retry once, then return recoverable error with next step.