{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/chichi-speech",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chichi-speech",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "pyproject.toml",
      "SKILL.md",
      "src/chichi_speech/server.py",
      "src/chichi_speech/client.py",
      "src/chichi_speech/__init__.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/chichi-speech",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Chichi Speech Service",
        "body": "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."
      },
      {
        "title": "Installation",
        "body": "Prerequisites: python >= 3.10.\n\npip install -e ."
      },
      {
        "title": "1. Start the Service",
        "body": "The service runs on port 9090 by default.\n\n# Start the server (runs in foreground, use & for background or a separate terminal)\n# Optional: Uudate to your own reference audio and text for voice cloning\nchichi-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.\""
      },
      {
        "title": "2. Verify Service is Running",
        "body": "Check the health/docs:\n\ncurl http://localhost:9090/docs"
      },
      {
        "title": "3. Generate Speech",
        "body": "Use cURL:\n\ncurl -X POST \"http://localhost:9090/synthesize\" \\\n     -H \"Content-Type: application/json\" \\\n     -d '{\n           \"text\": \"Nice to meet you\",\n           \"language\": \"English\"\n         }' \\\n     --output output/nice_to_meet.wav"
      },
      {
        "title": "Functionality",
        "body": "Endpoint: POST /synthesize\nDefault Port: 9090\nVoice Cloning: Uses a pre-computed voice prompt from reference files to ensure the cloned voice is consistent and generation is fast."
      },
      {
        "title": "Requirements",
        "body": "Python 3.10+\nqwen-tts (Qwen3 model library)\nAccess to a reference audio file for voice cloning.\n\nBy default, it uses public sample audio from Qwen3.\nCRITICAL: You can provide your own reference audio using the --ref-audio and --ref-text flags."
      }
    ],
    "body": "Chichi Speech Service\n\nThis 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.\n\nInstallation\n\nPrerequisites: python >= 3.10.\n\npip install -e .\n\nUsage\n1. Start the Service\n\nThe service runs on port 9090 by default.\n\n# Start the server (runs in foreground, use & for background or a separate terminal)\n# Optional: Uudate to your own reference audio and text for voice cloning\nchichi-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.\"\n\n2. Verify Service is Running\n\nCheck the health/docs:\n\ncurl http://localhost:9090/docs\n\n3. Generate Speech\n\nUse cURL:\n\ncurl -X POST \"http://localhost:9090/synthesize\" \\\n     -H \"Content-Type: application/json\" \\\n     -d '{\n           \"text\": \"Nice to meet you\",\n           \"language\": \"English\"\n         }' \\\n     --output output/nice_to_meet.wav\n\nFunctionality\nEndpoint: POST /synthesize\nDefault Port: 9090\nVoice Cloning: Uses a pre-computed voice prompt from reference files to ensure the cloned voice is consistent and generation is fast.\nRequirements\nPython 3.10+\nqwen-tts (Qwen3 model library)\nAccess to a reference audio file for voice cloning.\nBy default, it uses public sample audio from Qwen3.\nCRITICAL: You can provide your own reference audio using the --ref-audio and --ref-text flags."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hudeven/chichi-speech",
    "publisherUrl": "https://clawhub.ai/hudeven/chichi-speech",
    "owner": "hudeven",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}