用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill announcer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | announcer |
| description | Announce text throughout the house via AirPlay speakers using Airfoil + ElevenLabs TTS. |
| summary | House-wide TTS announcements via AirPlay speakers, Airfoil, and ElevenLabs. |
| version | 1.1.0 |
| homepage | https://github.com/odrobnik/announcer-skill |
| metadata | {"openclaw":{"emoji":"📢","requires":{"bins":["python3","ffmpeg"],"apps":["Airfoil"],"env":["ELEVENLABS_API_KEY"],"skills":["elevenlabs"]}}} |
Play TTS announcements through AirPlay speakers via Airfoil and ElevenLabs.
ELEVENLABS_API_KEY env varUser config lives at ~/clawd/announcer/config.json:
{
"speakers": ["Living (2)", "Kitchen", "Office"],
"excluded": ["Computer"],
"elevenlabs": {
"voice_id": "your-voice-id",
"format": "opus_48000_192"
},
"audio": {
"output_format": "mp3",
"stereo": true,
"sample_rate": 48000,
"bitrate": "256k",
"chime_file": "gong_stereo.mp3"
},
"airfoil": {
"source"
| Field | Description |
|---|---|
speakers | AirPlay speaker names to connect |
excluded | Speaker names to never connect |
elevenlabs.voice_id | ElevenLabs voice to use |
audio.chime_file | Chime sound file in assets/ (set null to disable) |
airfoil.connection_timeout_seconds | Time to wait for speakers to connect |
airfoil.volume | Speaker volume (0.0–1.0) |
# Announce to all configured speakers
python3 skills/announcer/scripts/announce.py "Dinner is ready!"
# Announce to specific speakers only
python3 skills/announcer/scripts/announce.py "Wake up!" --speakers "Kids Room"
# Skip the chime
python3 skills/announcer/scripts/announce.py "Quick note" --no-gong
announcer/
├── SKILL.md
├── assets/
│ └── gong_stereo.mp3 # Announcement chime
└── scripts/
└── announce.py # Main announcement script
User config (not part of skill):
~/clawd/announcer/
└── config.json # Speaker list, voice, audio settings