askill
bluetooth-skill

bluetooth-skillSafety 95Repository

Control Android Bluetooth - enable, disable, get status, and list paired devices.

0 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Bluetooth Automation Tool

Control Bluetooth on Android devices.

How It Works

This skill provides instructions for the Bluetooth Automation tool node. Connect the Bluetooth Automation node to Zeenie's input-tools handle to enable Bluetooth control.

bluetooth_automation Tool

Control Bluetooth settings and get device information.

Schema Fields

FieldTypeRequiredDescription
actionstringYesAction to perform (see below)

Actions

ActionDescription
statusGet Bluetooth status and paired devices
enableTurn Bluetooth on
disableTurn Bluetooth off

Examples

Get Bluetooth status:

{
  "action": "status"
}

Enable Bluetooth:

{
  "action": "enable"
}

Disable Bluetooth:

{
  "action": "disable"
}

Response Formats

Status response:

{
  "success": true,
  "service": "bluetooth_automation",
  "action": "status",
  "data": {
    "enabled": true,
    "discovering": false,
    "name": "My Phone",
    "address": "AA:BB:CC:DD:EE:FF",
    "paired_devices": [
      {
        "name": "AirPods Pro",
        "address": "11:22:33:44:55:66",
        "type": "audio",
        "bonded": true
      },
      {
        "name": "Car Stereo",
        "address": "77:88:99:AA:BB:CC",
        "type": "audio",
        "bonded": true
      }
    ]
  }
}

Enable/Disable response:

{
  "success": true,
  "service": "bluetooth_automation",
  "action": "enable",
  "data": {
    "message": "Bluetooth enabled successfully"
  }
}

Response Fields

FieldDescription
enabledBluetooth radio is on
discoveringScanning for new devices
nameDevice Bluetooth name
addressDevice Bluetooth MAC address
paired_devicesList of bonded devices

Paired Device Fields

FieldDescription
nameDevice name
addressDevice MAC address
typeDevice type (audio, computer, phone, etc.)
bondedCurrently paired

Use Cases

Use CaseActionDescription
Check BluetoothstatusSee if BT is on and paired devices
Toggle Bluetoothenable/disableControl BT radio
List devicesstatusGet paired device list
Battery savingdisableTurn off when not needed

Common Workflows

Connect to car

  1. Check Bluetooth status
  2. If not enabled, enable it
  3. Car should auto-connect if paired

Battery saving mode

  1. Check Bluetooth status
  2. If no audio playing and no connected devices
  3. Disable Bluetooth to save battery

Setup Requirements

  1. Connect the Bluetooth Automation node to Zeenie's input-tools handle
  2. Android device must be paired
  3. Bluetooth permission required on device

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/20/2026

A well-structured Bluetooth automation skill for Android with comprehensive documentation including tool schema, all action types (status/enable/disable), detailed JSON examples, response formats, use cases, and workflow examples. While reference-style rather than step-by-step, it provides clear guidance on when and how to use the skill. High completeness and clarity scores. Minor deduction for being slightly project-specific (Android category) but overall good reusability for Android Bluetooth control tasks.

95
90
88
92
75

Metadata

Licenseunknown
Version-
Updated2/13/2026
Publishertrohitg

Tags

No tags yet.