{
  "schemaVersion": "1.0",
  "item": {
    "slug": "voice",
    "name": "Voice",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/zhaov1976/voice",
    "canonicalUrl": "https://clawhub.ai/zhaov1976/voice",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/voice",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "example.js",
      "index.js",
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "package.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/voice"
    },
    "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/voice",
    "agentPageUrl": "https://openagent3.xyz/skills/voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Voice Skill",
        "body": "The Voice skill provides enhanced text-to-speech functionality using edge-tts, allowing you to convert text to spoken audio with multiple playback options."
      },
      {
        "title": "Features",
        "body": "Text-to-speech conversion using Microsoft Edge's TTS engine\nSupport for various voice options and audio settings\nDirect playback of generated audio\nAutomatic cleanup of temporary audio files\nIntegration with the MEDIA system for audio playback"
      },
      {
        "title": "Installation",
        "body": "Before using this skill, you need to install the required dependency:\n\npip3 install edge-tts\n\nOr use the skill's install action:\n\nawait skill.execute({ action: 'install' });"
      },
      {
        "title": "Direct Speaking (Recommended)",
        "body": "Speak text directly without storing to file:\n\nconst result = await skill.execute({\n  action: 'speak',  // New improved action\n  text: 'Hello, how are you today?'\n});\n// Audio is played directly and temporary file is cleaned up automatically"
      },
      {
        "title": "Text-to-Speech with File Generation",
        "body": "Convert text to speech with default settings:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'Hello, how are you today?'\n});\n// Returns a MEDIA link to the audio file\n\nWith direct playback:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'Hello, how are you today?',\n  playImmediately: true  // Plays the audio immediately after generation\n});\n\nWith custom options:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'This is a sample of voice customization.',\n  options: {\n    voice: 'zh-CN-XiaoxiaoNeural',\n    rate: '+10%',\n    volume: '-5%',\n    pitch: '+10Hz'\n  }\n});"
      },
      {
        "title": "Play Existing Audio File",
        "body": "Play an existing audio file:\n\nconst result = await skill.execute({\n  action: 'play',\n  filePath: '/path/to/audio/file.mp3'\n});"
      },
      {
        "title": "List Available Voices",
        "body": "Get a list of available voices:\n\nconst result = await skill.execute({\n  action: 'voices'\n});"
      },
      {
        "title": "Cleanup Temporary Files",
        "body": "Clean up temporary audio files older than 1 hour (default):\n\nconst result = await skill.execute({\n  action: 'cleanup'\n});\n\nOr specify a custom age threshold:\n\nconst result = await skill.execute({\n  action: 'cleanup',\n  options: {\n    hoursOld: 2  // Clean files older than 2 hours\n  }\n});"
      },
      {
        "title": "Options",
        "body": "The following options are available for text-to-speech:\n\nvoice: The voice to use (default: 'zh-CN-XiaoxiaoNeural')\nrate: Speech rate adjustment (default: '+0%')\nvolume: Volume adjustment (default: '+0%')\npitch: Pitch adjustment (default: '+0Hz')"
      },
      {
        "title": "Supported Voices",
        "body": "Edge-TTS supports many voices in different languages:\n\nChinese: zh-CN-XiaoxiaoNeural, zh-CN-YunxiNeural, zh-CN-YunyangNeural\nEnglish (US): en-US-Standard-C, en-US-Standard-D, en-US-Wavenet-F\nEnglish (UK): en-GB-Standard-A, en-GB-Wavenet-A\nJapanese: ja-JP-NanamiNeural\nKorean: ko-KR-SunHiNeural\nAnd many more..."
      },
      {
        "title": "File Management",
        "body": "Audio files are temporarily stored in the temp directory\nFiles are automatically cleaned up after 1 hour (default)\nDirect speaking option cleans up files after 5 seconds"
      },
      {
        "title": "Requirements",
        "body": "Python 3.x\npip package manager\nedge-tts library (install via pip3 install edge-tts)"
      }
    ],
    "body": "Voice Skill\n\nThe Voice skill provides enhanced text-to-speech functionality using edge-tts, allowing you to convert text to spoken audio with multiple playback options.\n\nFeatures\nText-to-speech conversion using Microsoft Edge's TTS engine\nSupport for various voice options and audio settings\nDirect playback of generated audio\nAutomatic cleanup of temporary audio files\nIntegration with the MEDIA system for audio playback\nInstallation\n\nBefore using this skill, you need to install the required dependency:\n\npip3 install edge-tts\n\n\nOr use the skill's install action:\n\nawait skill.execute({ action: 'install' });\n\nUsage\nDirect Speaking (Recommended)\n\nSpeak text directly without storing to file:\n\nconst result = await skill.execute({\n  action: 'speak',  // New improved action\n  text: 'Hello, how are you today?'\n});\n// Audio is played directly and temporary file is cleaned up automatically\n\nText-to-Speech with File Generation\n\nConvert text to speech with default settings:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'Hello, how are you today?'\n});\n// Returns a MEDIA link to the audio file\n\n\nWith direct playback:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'Hello, how are you today?',\n  playImmediately: true  // Plays the audio immediately after generation\n});\n\n\nWith custom options:\n\nconst result = await skill.execute({\n  action: 'tts',\n  text: 'This is a sample of voice customization.',\n  options: {\n    voice: 'zh-CN-XiaoxiaoNeural',\n    rate: '+10%',\n    volume: '-5%',\n    pitch: '+10Hz'\n  }\n});\n\nPlay Existing Audio File\n\nPlay an existing audio file:\n\nconst result = await skill.execute({\n  action: 'play',\n  filePath: '/path/to/audio/file.mp3'\n});\n\nList Available Voices\n\nGet a list of available voices:\n\nconst result = await skill.execute({\n  action: 'voices'\n});\n\nCleanup Temporary Files\n\nClean up temporary audio files older than 1 hour (default):\n\nconst result = await skill.execute({\n  action: 'cleanup'\n});\n\n\nOr specify a custom age threshold:\n\nconst result = await skill.execute({\n  action: 'cleanup',\n  options: {\n    hoursOld: 2  // Clean files older than 2 hours\n  }\n});\n\nOptions\n\nThe following options are available for text-to-speech:\n\nvoice: The voice to use (default: 'zh-CN-XiaoxiaoNeural')\nrate: Speech rate adjustment (default: '+0%')\nvolume: Volume adjustment (default: '+0%')\npitch: Pitch adjustment (default: '+0Hz')\nSupported Voices\n\nEdge-TTS supports many voices in different languages:\n\nChinese: zh-CN-XiaoxiaoNeural, zh-CN-YunxiNeural, zh-CN-YunyangNeural\nEnglish (US): en-US-Standard-C, en-US-Standard-D, en-US-Wavenet-F\nEnglish (UK): en-GB-Standard-A, en-GB-Wavenet-A\nJapanese: ja-JP-NanamiNeural\nKorean: ko-KR-SunHiNeural\nAnd many more...\nFile Management\nAudio files are temporarily stored in the temp directory\nFiles are automatically cleaned up after 1 hour (default)\nDirect speaking option cleans up files after 5 seconds\nRequirements\nPython 3.x\npip package manager\nedge-tts library (install via pip3 install edge-tts)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zhaov1976/voice",
    "publisherUrl": "https://clawhub.ai/zhaov1976/voice",
    "owner": "zhaov1976",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/voice",
    "downloadUrl": "https://openagent3.xyz/downloads/voice",
    "agentUrl": "https://openagent3.xyz/skills/voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice/agent.md"
  }
}