ワンクリックで
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 職業分類に基づく
Drive the user's real Chrome over raw CDP by writing Python against browser-harness helpers - screenshot, coordinate clicks, JS evaluation, form fill, tabs. For tasks needing full freedom or the user's own logins.
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
Deploy sites and apps to Vercel, inspect deployments, stream logs, and manage projects/env/domains via the Vercel CLI. Deploy a directory and get back the live deployment URL; everything else the CLI supports is available through the custom command passthrough.
Use this skill to generate well-branded interfaces and assets for MachinaOS (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Run AI-generated Python in a hard sandbox (Pydantic Monty) with enforced time + memory limits and opt-in capabilities. Use for untrusted code; supports a Python subset.
Interactive browser automation - navigate, click, type, fill forms, take screenshots, get accessibility snapshots. Supports system Chrome/Edge via auto-detection.
| name | bluetooth-skill |
| description | Control Android Bluetooth - enable, disable, get status, and list paired devices. |
| allowed-tools | bluetooth_automation |
| metadata | {"author":"machina","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