用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill bluetooth-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| 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
},
{
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