一键导入
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 职业分类
| 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":"machina","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 handleDrive 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.