一键导入
bluetooth-skill
Control Android Bluetooth - enable, disable, get status, and list paired devices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Control Android Bluetooth - enable, disable, get status, and list paired devices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android camera - get camera info, take photos, and access camera capabilities.
| name | bluetooth-skill |
| description | Control Android Bluetooth - enable, disable, get status, and list paired devices. |
| allowed-tools | bluetooth_automation |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Control Bluetooth on Android devices.
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.
Control Bluetooth settings and get device information.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | Action to perform (see below) |
| Action | Description |
|---|---|
status | Get Bluetooth status and paired devices |
enable | Turn Bluetooth on |
disable | Turn Bluetooth off |
Get Bluetooth status:
{
"action": "status"
}
Enable Bluetooth:
{
"action": "enable"
}
Disable Bluetooth:
{
"action": "disable"
}
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"
}
}
| Field | Description |
|---|---|
| enabled | Bluetooth radio is on |
| discovering | Scanning for new devices |
| name | Device Bluetooth name |
| address | Device Bluetooth MAC address |
| paired_devices | List of bonded devices |
| Field | Description |
|---|---|
| name | Device name |
| address | Device MAC address |
| type | Device type (audio, computer, phone, etc.) |
| bonded | Currently paired |
| Use Case | Action | Description |
|---|---|---|
| Check Bluetooth | status | See if BT is on and paired devices |
| Toggle Bluetooth | enable/disable | Control BT radio |
| List devices | status | Get paired device list |
| Battery saving | disable | Turn off when not needed |
input-tools handle