# Send Voice 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "voice",
    "name": "Voice",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/zhaov1976/voice",
    "canonicalUrl": "https://clawhub.ai/zhaov1976/voice",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/voice",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "example.js",
      "index.js",
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "voice",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T10:24:30.361Z",
      "expiresAt": "2026-05-11T10:24:30.361Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice",
        "contentDisposition": "attachment; filename=\"voice-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "voice"
      },
      "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"
    },
    "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",
    "downloadUrl": "https://openagent3.xyz/downloads/voice",
    "agentUrl": "https://openagent3.xyz/skills/voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice/agent.md"
  }
}
```
## Documentation

### Voice Skill

The Voice skill provides enhanced text-to-speech functionality using edge-tts, allowing you to convert text to spoken audio with multiple playback options.

### Features

Text-to-speech conversion using Microsoft Edge's TTS engine
Support for various voice options and audio settings
Direct playback of generated audio
Automatic cleanup of temporary audio files
Integration with the MEDIA system for audio playback

### Installation

Before using this skill, you need to install the required dependency:

pip3 install edge-tts

Or use the skill's install action:

await skill.execute({ action: 'install' });

### Direct Speaking (Recommended)

Speak text directly without storing to file:

const result = await skill.execute({
  action: 'speak',  // New improved action
  text: 'Hello, how are you today?'
});
// Audio is played directly and temporary file is cleaned up automatically

### Text-to-Speech with File Generation

Convert text to speech with default settings:

const result = await skill.execute({
  action: 'tts',
  text: 'Hello, how are you today?'
});
// Returns a MEDIA link to the audio file

With direct playback:

const result = await skill.execute({
  action: 'tts',
  text: 'Hello, how are you today?',
  playImmediately: true  // Plays the audio immediately after generation
});

With custom options:

const result = await skill.execute({
  action: 'tts',
  text: 'This is a sample of voice customization.',
  options: {
    voice: 'zh-CN-XiaoxiaoNeural',
    rate: '+10%',
    volume: '-5%',
    pitch: '+10Hz'
  }
});

### Play Existing Audio File

Play an existing audio file:

const result = await skill.execute({
  action: 'play',
  filePath: '/path/to/audio/file.mp3'
});

### List Available Voices

Get a list of available voices:

const result = await skill.execute({
  action: 'voices'
});

### Cleanup Temporary Files

Clean up temporary audio files older than 1 hour (default):

const result = await skill.execute({
  action: 'cleanup'
});

Or specify a custom age threshold:

const result = await skill.execute({
  action: 'cleanup',
  options: {
    hoursOld: 2  // Clean files older than 2 hours
  }
});

### Options

The following options are available for text-to-speech:

voice: The voice to use (default: 'zh-CN-XiaoxiaoNeural')
rate: Speech rate adjustment (default: '+0%')
volume: Volume adjustment (default: '+0%')
pitch: Pitch adjustment (default: '+0Hz')

### Supported Voices

Edge-TTS supports many voices in different languages:

Chinese: zh-CN-XiaoxiaoNeural, zh-CN-YunxiNeural, zh-CN-YunyangNeural
English (US): en-US-Standard-C, en-US-Standard-D, en-US-Wavenet-F
English (UK): en-GB-Standard-A, en-GB-Wavenet-A
Japanese: ja-JP-NanamiNeural
Korean: ko-KR-SunHiNeural
And many more...

### File Management

Audio files are temporarily stored in the temp directory
Files are automatically cleaned up after 1 hour (default)
Direct speaking option cleans up files after 5 seconds

### Requirements

Python 3.x
pip package manager
edge-tts library (install via pip3 install edge-tts)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zhaov1976
- Version: 1.0.1
## 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-04T10:24:30.361Z
- Expires at: 2026-05-11T10:24:30.361Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/voice)
- [Send to Agent page](https://openagent3.xyz/skills/voice/agent)
- [JSON manifest](https://openagent3.xyz/skills/voice/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/voice/agent.md)
- [Download page](https://openagent3.xyz/downloads/voice)