← All skills
Tencent SkillHub · AI

Voice (Edge TTS)

Convert text to speech using Microsoft Edge TTS with real-time streaming, customizable voice settings, and support for multiple languages including Chinese a...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Convert text to speech using Microsoft Edge TTS with real-time streaming, customizable voice settings, and support for multiple languages including Chinese a...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, example.js, index.js, package-lock.json, package.json, README.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.10.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 17 sections Open source page

Voice Skill (Edge TTS)

Text-to-speech skill using Microsoft Edge TTS engine with real-time streaming playback support.

Features 功能特点

Edge TTS Engine - High quality text-to-speech using Microsoft Edge Streaming Playback - Real-time audio streaming (边生成边播放) Multiple Voices - Support for Chinese, English, Japanese, Korean voices Customizable - Adjust rate, volume, and pitch Secure Implementation - No command injection vulnerabilities

1. Install Python dependencies

pip install edge-tts

2. Install ffmpeg (required for streaming)

Windows: Download from: https://github.com/GyanD/codexffmpeg/releases Extract and add bin folder to PATH macOS: brew install ffmpeg Linux: sudo apt install ffmpeg

Streaming Playback (Recommended) 流式播放(推荐)

Real-time audio generation and playback: // Basic usage await skill.execute({ action: 'stream', text: '你好,我是小九' }); // With custom voice await skill.execute({ action: 'stream', text: 'Hello, how are you?', options: { voice: 'en-US-Standard-A', rate: '+10%', volume: '+0%', pitch: '+0Hz' } });

Text-to-Speech with File 生成语音文件

await skill.execute({ action: 'tts', text: 'Hello, how are you today?', options: { voice: 'zh-CN-XiaoxiaoNeural' } }); // Returns: { success: true, media: 'MEDIA: /path/to/file.mp3' }

Direct Speak 直接播放

await skill.execute({ action: 'speak', text: 'Hello!' });

List Available Voices 查看可用语音

await skill.execute({ action: 'voices' });

Available Voices 可用语音

LanguageVoice IDChinese (Female)zh-CN-XiaoxiaoNeuralChinese (Male)zh-CN-YunxiNeuralChinese (Male)zh-CN-YunyangNeuralEnglish (US Female)en-US-Standard-AEnglish (US Male)en-US-Standard-DEnglish (UK)en-GB-Standard-AJapaneseja-JP-NanamiNeuralKoreanko-KR-SunHiNeural

Options 参数

OptionDefaultDescriptionvoicezh-CN-XiaoxiaoNeuralVoice IDrate+0%Speech rate (-50% to +100%)volume+0%Volume adjustment (-50% to +50%)pitch+0HzPitch adjustment

Security 安全

This skill implements enterprise-grade security best practices:

🛡️ Security Features

FeatureImplementationInput ValidationVoice parameter whitelist validation - only allowed voices can be usedNo Shell ExecutionUses spawn() with array arguments instead of shell command concatenationCommand Injection PreventionAll user inputs are properly validated and escapedPath SafetyFixed script path prevents path traversal

Security Details

// ❌ UNSAFE - Don't use exec with string concatenation exec(`py script.py "${userText}" --voice ${userVoice}`); // ✅ SAFE - Use spawn with array arguments spawn('py', [scriptPath, text, '--voice', voice], { shell: false });

Voice Whitelist

Only these voices are allowed: const allowedVoices = [ 'zh-CN-XiaoxiaoNeural', 'zh-CN-YunxiNeural', 'zh-CN-YunyangNeural', 'zh-CN-YunyouNeural', 'zh-CN-XiaomoNeural', 'en-US-Standard-C', 'en-US-Standard-D', 'en-US-Wavenet-F', 'en-GB-Standard-A', 'en-GB-Wavenet-A', 'ja-JP-NanamiNeural', 'ko-KR-SunHiNeural' ]; Any invalid voice parameter will be rejected and replaced with the default voice.

v1.10 (2026-02-24)

Enterprise-grade security - Full command injection protection Voice whitelist validation Replaced exec with spawn for secure process execution Input sanitization for all parameters

v1.1.0

Add streaming playback support (边生成边播放) Add ffmpeg dependency Fix command injection vulnerability Add voice whitelist validation

v1.0.0

Initial release with basic TTS support

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • CHANGELOG.md Docs
  • README.md Docs
  • example.js Scripts
  • index.js Scripts
  • package-lock.json Config
  • package.json Config