# Send MLX 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": "mlx-tts",
    "name": "MLX TTS",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/guoqiao/mlx-tts",
    "canonicalUrl": "https://clawhub.ai/guoqiao/mlx-tts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mlx-tts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mlx-tts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "install.sh",
      "mlx-tts.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mlx-tts",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T07:05:11.434Z",
      "expiresAt": "2026-05-09T07:05:11.434Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mlx-tts",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mlx-tts",
        "contentDisposition": "attachment; filename=\"mlx-tts-0.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mlx-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/mlx-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/mlx-tts",
    "downloadUrl": "https://openagent3.xyz/downloads/mlx-tts",
    "agentUrl": "https://openagent3.xyz/skills/mlx-tts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mlx-tts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mlx-tts/agent.md"
  }
}
```
## Documentation

### MLX TTS

Text-To-Speech with MLX (Apple Silicon) and open-source models (default QWen3-TTS) locally.

Free and Fast. No API key required. No server required.

### Requirements

mlx: macOS with Apple Silicon
brew: used to install deps if not available

### Installation

bash ${baseDir}/install.sh

This script will use brew to install these CLI tools if not available:

uv: install python package and run python script
mlx_audio: do the real job

### Usage

To generate audio from text, run this script:

bash ${baseDir}/mlx-tts.sh "<text>"

### Agent Instructions

Run the script: Pass the text to be spoken as an argument.
Handle Output: The script will output a path to a audio file.
Use the message tool to send the audio file to the user as an voice message:

{
   "action": "send",
   "filePath": "<filepath>"
}

Example:
User: "Say hello world"
Agent:

Runs bash path/to/mlx-tts.sh "hello world"
Receives output: /tmp/folder/audio.ogg
Calls message(action="send", filePath="/tmp/folder/audio.ogg", ...)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: guoqiao
- Version: 0.0.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-05-02T07:05:11.434Z
- Expires at: 2026-05-09T07:05:11.434Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mlx-tts)
- [Send to Agent page](https://openagent3.xyz/skills/mlx-tts/agent)
- [JSON manifest](https://openagent3.xyz/skills/mlx-tts/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mlx-tts/agent.md)
- [Download page](https://openagent3.xyz/downloads/mlx-tts)