# Send Announcer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "announcer",
    "name": "Announcer",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/odrobnik/announcer",
    "canonicalUrl": "https://clawhub.ai/odrobnik/announcer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/announcer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=announcer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ARTICLE.md",
      "SETUP.md",
      "SKILL.md",
      "scripts/announce.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "announcer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T20:14:51.068Z",
      "expiresAt": "2026-05-06T20:14:51.068Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=announcer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=announcer",
        "contentDisposition": "attachment; filename=\"announcer-1.2.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "announcer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/announcer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/announcer",
    "downloadUrl": "https://openagent3.xyz/downloads/announcer",
    "agentUrl": "https://openagent3.xyz/skills/announcer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/announcer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/announcer/agent.md"
  }
}
```
## Documentation

### Announcer

Play TTS announcements through AirPlay speakers via Airfoil and ElevenLabs.

### How It Works

Generate speech via ElevenLabs (high-quality opus → stereo MP3)
Connect to AirPlay speakers via Airfoil
Play an optional chime (gong) followed by the announcement
Disconnect speakers after playback

### Setup

See SETUP.md for prerequisites and setup instructions.

### Usage

# 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

### File Structure

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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: odrobnik
- Version: 1.2.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T20:14:51.068Z
- Expires at: 2026-05-06T20:14:51.068Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/announcer)
- [Send to Agent page](https://openagent3.xyz/skills/announcer/agent)
- [JSON manifest](https://openagent3.xyz/skills/announcer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/announcer/agent.md)
- [Download page](https://openagent3.xyz/downloads/announcer)