# Send MiniMax Speech 2.8 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": "minimax-speech",
    "name": "MiniMax Speech 2.8",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wingchiu/minimax-speech",
    "canonicalUrl": "https://clawhub.ai/wingchiu/minimax-speech",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/minimax-speech",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-speech",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/minimax_tts.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "minimax-speech",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T16:09:06.227Z",
      "expiresAt": "2026-05-12T16:09:06.227Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-speech",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-speech",
        "contentDisposition": "attachment; filename=\"minimax-speech-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "minimax-speech"
      },
      "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/minimax-speech"
    },
    "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/minimax-speech",
    "downloadUrl": "https://openagent3.xyz/downloads/minimax-speech",
    "agentUrl": "https://openagent3.xyz/skills/minimax-speech/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-speech/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-speech/agent.md"
  }
}
```
## Documentation

### MiniMax Speech 2.8 helper

Install dependencies. Run pip install requests in the environment that will execute the script. The CLI talks to MiniMax's REST API, so you only need the requests library on top of Python 3.11+.
Set your MiniMax credential. Export MINIMAX_API_KEY with the API key the user promised to supply. The script will refuse to run without it.
Use the bundled CLI. scripts/minimax_tts.py exposes two subcommands:

tts: calls POST https://api.minimax.io/v1/t2a_v2 (Speech 2.8 T2A HTTP) with the desired voice_id, voice settings, audio configuration, and optional voice effects. Example:
python scripts/minimax_tts.py tts \\
  --text "Tonight in Shenzhen the skies are clear." \\
  --voice-id "Sweet_Girl_2" \\
  --model speech-2.8-hd \\
  --audio-format mp3 \\
  --output minimax-weather.mp3

The script decodes the hex/base64 payload, saves the file, and prints metadata. Override the endpoint with --endpoint if you must hit https://api-uw.minimax.io/v1/t2a_v2 or another region.
voices: calls POST https://api.minimax.io/v1/get_voice to enumerate system, voice_cloning, voice_generation, or all categories. Example:
python scripts/minimax_tts.py voices --voice-type all --print-response




Customize TTS payloads via CLI switches. Use --speed, --vol, --pitch, and --language-boost to shape the voice. Control audio fidelity with --sample-rate, --bitrate, --audio-format, and --channel. Add pronunciation overrides (--pronunciation "emoji=ee-moh-jee") or mix timbres (--timbre-weight "Sweet_Girl_2=0.8"). --voice-modify-* flags let you nudge pitch/intensity/timbre or append a sound effect such as "spacious_echo". --output-format tells the script how the API returns audio (hex, base64, or a download url).
Handle the JSON. By default the script prints the extra_info field so you can read bitrate/sample rate/length. Use --print-response on either subcommand to dump the entire API payload for debugging. Save catalog JSON to disk with --output <path> when you need to reference voices later.

Keep this skill loaded any time you are asked for MiniMax-specific voices or when precise speech settings are required. The CLI gives you deterministic control over voice_id, model, and audio quality so you always get the Sweet_Girl_2 (or any other) tone you expect. If you need to script these requests from another tool, copy the relevant requests.post logic from scripts/minimax_tts.py.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wingchiu
- Version: 1.0.0
## 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-05T16:09:06.227Z
- Expires at: 2026-05-12T16:09:06.227Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/minimax-speech)
- [Send to Agent page](https://openagent3.xyz/skills/minimax-speech/agent)
- [JSON manifest](https://openagent3.xyz/skills/minimax-speech/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/minimax-speech/agent.md)
- [Download page](https://openagent3.xyz/downloads/minimax-speech)