# Send Kokoro 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": "kokoro-tts",
    "name": "Kokoro TTS",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/edkief/kokoro-tts",
    "canonicalUrl": "https://clawhub.ai/edkief/kokoro-tts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kokoro-tts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kokoro-tts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/tts.js",
      "references/voices.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kokoro-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/kokoro-tts",
    "downloadUrl": "https://openagent3.xyz/downloads/kokoro-tts",
    "agentUrl": "https://openagent3.xyz/skills/kokoro-tts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kokoro-tts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kokoro-tts/agent.md"
  }
}
```
## Documentation

### Kokoro TTS

This skill allows you to generate high-quality AI speech using a local or remote Kokoro-TTS instance.

### Configuration

The skill uses the KOKORO_API_URL environment variable to locate the API.

Default: http://localhost:8880/v1/audio/speech
To Configure: Add KOKORO_API_URL=http://your-server:port/v1/audio/speech to your .env file or environment.

### Usage

To generate speech, run the included Node.js script.

### Command

node skills/kokoro-tts/scripts/tts.js "<text>" [voice] [speed]

text: The text to speak. Wrap in quotes.
voice: (Optional) The voice ID. Defaults to af_heart.
speed: (Optional) Speech speed (0.25 to 4.0). Defaults to 1.0.

### Example

node skills/kokoro-tts/scripts/tts.js "Hello Ed, this is Theosaurus speaking." af_nova

### Output

The script will output a single line starting with MEDIA: followed by the path to the generated MP3 file. OpenClaw will automatically pick this up and send it as an audio attachment.

Example Output:
MEDIA: media/tts_1706745000000.mp3

### Available Voices

Common choices:

af_heart (Default, Female, Warm)
af_nova (Female, Professional)
am_adam (Male, Deep)
bf_alice (British Female)

For a full list, see references/voices.md or query the API.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: edkief
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kokoro-tts)
- [Send to Agent page](https://openagent3.xyz/skills/kokoro-tts/agent)
- [JSON manifest](https://openagent3.xyz/skills/kokoro-tts/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kokoro-tts/agent.md)
- [Download page](https://openagent3.xyz/downloads/kokoro-tts)