# Send Deepdub TTS 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": "deepdub-tts",
    "name": "Deepdub TTS",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/yuval-deepdub/deepdub-tts",
    "canonicalUrl": "https://clawhub.ai/yuval-deepdub/deepdub-tts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/deepdub-tts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepdub-tts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "requirements.txt",
      "deepdub_tts.py",
      "package.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "deepdub-tts",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:19:14.933Z",
      "expiresAt": "2026-05-06T12:19:14.933Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepdub-tts",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepdub-tts",
        "contentDisposition": "attachment; filename=\"deepdub-tts-0.1.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "deepdub-tts"
      },
      "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/deepdub-tts"
    },
    "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/deepdub-tts",
    "downloadUrl": "https://openagent3.xyz/downloads/deepdub-tts",
    "agentUrl": "https://openagent3.xyz/skills/deepdub-tts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deepdub-tts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deepdub-tts/agent.md"
  }
}
```
## Documentation

### What this skill does

This skill converts text into speech using Deepdub and returns an audio file
as a MEDIA: attachment that OpenClaw can send to channels like Telegram.

### Requirements

Python 3.9+
Deepdub API access

### Permissions

This skill requires permission to:

Execute deepdub_tts.py (the bundled script)
Write audio files to OPENCLAW_MEDIA_DIR only (output path cannot be overridden via CLI arguments)

### Setup

Set the following environment variables where OpenClaw runs:

Required:

DEEPDUB_API_KEY – your Deepdub API key
DEEPDUB_VOICE_PROMPT_ID – default voice prompt to use

Optional:

DEEPDUB_LOCALE (default: en-US)
DEEPDUB_MODEL
OPENCLAW_MEDIA_DIR (default: /tmp/openclaw_media)

### Free Trial Credentials

For testing only, you can use these free trial credentials:

DEEPDUB_API_KEY=dd-00000000000000000000000065c9cbfe
DEEPDUB_VOICE_PROMPT_ID=11f3403d-35b9-4817-8d55-f41694ea6227

Note: These are rate-limited trial credentials for evaluation purposes only. Do not use for production. Obtain your own API key and voice prompts from Deepdub for production use.

### Install dependency

Install the official Deepdub Python SDK:

pip install deepdub

Or using uv (faster alternative):

uv pip install deepdub
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yuval-deepdub
- Version: 0.1.5
## 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-29T12:19:14.933Z
- Expires at: 2026-05-06T12:19:14.933Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/deepdub-tts)
- [Send to Agent page](https://openagent3.xyz/skills/deepdub-tts/agent)
- [JSON manifest](https://openagent3.xyz/skills/deepdub-tts/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/deepdub-tts/agent.md)
- [Download page](https://openagent3.xyz/downloads/deepdub-tts)