用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill audio-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | audio-skill |
| description | Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes. |
| allowed-tools | audio_automation |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Control audio and volume on Android device.
This skill provides instructions for the Audio Automation tool node. Connect the Audio Automation node to Zeenie's input-tools handle to enable audio control.
Control audio settings and volume levels.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | Action to perform (see below) |
| parameters | object | No | Additional parameters for set actions |
| Action | Description |
|---|---|
status | Get current volume levels and audio state |
set_volume | Set volume for a stream |
mute | Mute audio |
unmute | Unmute audio |
| Stream | Description |
|---|---|
media | Music, videos, games |
ring | Ringtone volume |
notification | Notification sounds |
alarm | Alarm volume |
voice_call | Call volume |
system | System sounds (clicks, etc.) |
Get audio status:
{
"action": "status"
}
Set media volume:
{
"action": "set_volume",
"parameters": {
"stream": "media",
"level": 50
}
}
Mute all audio:
{
"action": "mute"
}
Unmute:
{
"action": "unmute"
}
Status response:
{
"success": true,
"service": "audio_automation",
"action": "status",
"data": {
"media_volume": 75,
"ring_volume": 100,
"notification_volume": 80,
"alarm_volume": 100,
"voice_call_volume": 50,
"system_volume": 50,
"muted": false,
"ringer_mode": "normal"
}
}
Set volume response:
{
"success": true,
"service": "audio_automation",
"action": "set_volume",
"data": {
"stream": "media",
"previous_level": 100,
"new_level": 50
}
}
| Mode | Description |
|---|---|
normal | All sounds enabled |
vibrate | Vibrate only |
silent | No sounds or vibration |
| Use Case | Action | Description |
|---|---|---|
| Check volume | status | Get current levels |
| Lower volume | set_volume | Reduce for quiet time |
| Silent mode | mute | Mute all audio |
| Restore sound | unmute | Re-enable audio |
| Night mode | set_volume | Lower ring/notification |
input-tools handle