원클릭으로
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