# Send chichi-speech (local text-to-speech service with Qwen3-TTS model) 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": "chichi-speech",
    "name": "chichi-speech (local text-to-speech service with Qwen3-TTS model)",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/hudeven/chichi-speech",
    "canonicalUrl": "https://clawhub.ai/hudeven/chichi-speech",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/chichi-speech",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chichi-speech",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "pyproject.toml",
      "SKILL.md",
      "src/chichi_speech/server.py",
      "src/chichi_speech/client.py",
      "src/chichi_speech/__init__.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "chichi-speech",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T19:13:49.082Z",
      "expiresAt": "2026-05-11T19:13:49.082Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chichi-speech",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chichi-speech",
        "contentDisposition": "attachment; filename=\"chichi-speech-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "chichi-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/chichi-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/chichi-speech",
    "downloadUrl": "https://openagent3.xyz/downloads/chichi-speech",
    "agentUrl": "https://openagent3.xyz/skills/chichi-speech/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chichi-speech/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chichi-speech/agent.md"
  }
}
```
## Documentation

### Chichi Speech Service

This skill provides a FastAPI-based REST service for Qwen3 TTS, specifically configured for reusing a high-quality reference audio prompt for efficient and consistent voice cloning. This service is packaged as an installable CLI.

### Installation

Prerequisites: python >= 3.10.

pip install -e .

### 1. Start the Service

The service runs on port 9090 by default.

# Start the server (runs in foreground, use & for background or a separate terminal)
# Optional: Uudate to your own reference audio and text for voice cloning
chichi-speech --port 9090 --host 127.0.0.1 --ref-audio "https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen3-TTS-Repo/clone_2.wav" --ref-text "Okay. Yeah. I resent you. I love you. I respect you. But you know what? You blew it! And thanks to you."

### 2. Verify Service is Running

Check the health/docs:

curl http://localhost:9090/docs

### 3. Generate Speech

Use cURL:

curl -X POST "http://localhost:9090/synthesize" \\
     -H "Content-Type: application/json" \\
     -d '{
           "text": "Nice to meet you",
           "language": "English"
         }' \\
     --output output/nice_to_meet.wav

### Functionality

Endpoint: POST /synthesize
Default Port: 9090
Voice Cloning: Uses a pre-computed voice prompt from reference files to ensure the cloned voice is consistent and generation is fast.

### Requirements

Python 3.10+
qwen-tts (Qwen3 model library)
Access to a reference audio file for voice cloning.

By default, it uses public sample audio from Qwen3.
CRITICAL: You can provide your own reference audio using the --ref-audio and --ref-text flags.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hudeven
- Version: 1.0.2
## 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-04T19:13:49.082Z
- Expires at: 2026-05-11T19:13:49.082Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/chichi-speech)
- [Send to Agent page](https://openagent3.xyz/skills/chichi-speech/agent)
- [JSON manifest](https://openagent3.xyz/skills/chichi-speech/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/chichi-speech/agent.md)
- [Download page](https://openagent3.xyz/downloads/chichi-speech)