원클릭으로
audio-skill
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
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.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
Control Android camera - get camera info, take photos, and access camera capabilities.
| 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