# Send Voice Message 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": "voice-message",
    "name": "Voice Message",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/xmanrui/voice-message",
    "canonicalUrl": "https://clawhub.ai/xmanrui/voice-message",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/voice-message",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice-message",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/voices.md",
      "scripts/gen_voice.sh",
      "scripts/gen_waveform.py",
      "scripts/send_feishu_voice.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "voice-message",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T17:27:00.473Z",
      "expiresAt": "2026-05-08T17:27:00.473Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice-message",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice-message",
        "contentDisposition": "attachment; filename=\"voice-message-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "voice-message"
      },
      "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/voice-message"
    },
    "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/voice-message",
    "downloadUrl": "https://openagent3.xyz/downloads/voice-message",
    "agentUrl": "https://openagent3.xyz/skills/voice-message/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice-message/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice-message/agent.md"
  }
}
```
## Documentation

### Voice Message

Send text as voice messages to any chat channel.

### Prerequisites

edge-tts — Microsoft Edge TTS (pip install edge-tts)
ffmpeg / ffprobe — audio conversion and duration detection

### Default Voices

Chinese: zh-CN-XiaoxiaoNeural
English: en-US-JennyNeural
Other languages: see references/voices.md

### Step 1: Generate Voice File

Use scripts/gen_voice.sh to convert text to an ogg/opus file:

scripts/gen_voice.sh "你好" /tmp/voice.ogg
scripts/gen_voice.sh "Hello" /tmp/voice.ogg en-US-JennyNeural

Arguments: <text> <output.ogg> [voice]

If voice is omitted, defaults to zh-CN-XiaoxiaoNeural.

### Generic (Telegram, Signal, WhatsApp, etc.)

Use the message tool directly:

action=send, asVoice=true, filePath=/tmp/voice.ogg

This works for most channels. Telegram confirmed working.

### Feishu/Lark

⚠️ Feishu does NOT support asVoice=true via the message tool. You must use the dedicated script.

Use scripts/send_feishu_voice.sh:

scripts/send_feishu_voice.sh /tmp/voice.ogg <receive_id> <tenant_access_token> [receive_id_type]

receive_id_type: open_id (default), chat_id, user_id, union_id, email
The script handles upload (as opus with duration) and sends as audio message type to produce a voice bubble.
To get tenant_access_token, use the Feishu tenant token API with your app credentials.

### Discord

Discord voice messages require a waveform and special flags.

Generate ogg with scripts/gen_voice.sh
Generate waveform: python3 scripts/gen_waveform.py /tmp/voice.ogg

Outputs JSON: {"duration_secs": 4.2, "waveform": "base64..."}


Send via Discord API with flags: 8192 (IS_VOICE_MESSAGE) and the waveform/duration in attachments metadata.

Missing waveform/duration causes error 50161.

### Fallback

If asVoice=true does not produce a voice bubble on a channel:

Try sending via the platform's native API
If native API unavailable, send as audio file attachment
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: xmanrui
- Version: 1.0.4
## 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-05-01T17:27:00.473Z
- Expires at: 2026-05-08T17:27:00.473Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/voice-message)
- [Send to Agent page](https://openagent3.xyz/skills/voice-message/agent)
- [JSON manifest](https://openagent3.xyz/skills/voice-message/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/voice-message/agent.md)
- [Download page](https://openagent3.xyz/downloads/voice-message)