โ† All skills
Tencent SkillHub ยท Developer Tools

Inworld TTS

Text-to-speech via Inworld.ai API. Use when generating voice audio from text, creating spoken responses, or converting text to MP3/audio files. Supports multiple voices, speaking rates, and streaming for long text.

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

Text-to-speech via Inworld.ai API. Use when generating voice audio from text, creating spoken responses, or converting text to MP3/audio files. Supports multiple voices, speaking rates, and streaming for long text.

โฌ‡ 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
SKILL.md, scripts/tts.sh

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

Inworld TTS

Generate speech audio from text using Inworld.ai's TTS API.

Setup

Get API key from https://platform.inworld.ai Generate key with "Voices: Read" permission Copy the "Basic (Base64)" key Set environment variable: export INWORLD_API_KEY="your-base64-key-here" For persistence, add to ~/.bashrc or ~/.clawdbot/.env.

Installation

# Copy skill to your skills directory cp -r inworld-tts /path/to/your/skills/ # Make script executable chmod +x /path/to/your/skills/inworld-tts/scripts/tts.sh # Optional: symlink for global access ln -sf /path/to/your/skills/inworld-tts/scripts/tts.sh /usr/local/bin/inworld-tts

Usage

# Basic ./scripts/tts.sh "Hello world" output.mp3 # With options ./scripts/tts.sh "Hello world" output.mp3 --voice Dennis --rate 1.2 # Streaming (for text >4000 chars) ./scripts/tts.sh "Very long text..." output.mp3 --stream

Options

OptionDefaultDescription--voiceDennisVoice ID--rate1.0Speaking rate (0.5-2.0)--temp1.1Temperature (0.1-2.0)--modelinworld-tts-1.5-maxModel ID--streamfalseUse streaming endpoint

API Reference

EndpointUsePOST https://api.inworld.ai/tts/v1/voiceStandard synthesisPOST https://api.inworld.ai/tts/v1/voice:streamStreaming for long text

Requirements

curl - HTTP requests jq - JSON processing base64 - Decode audio

Examples

# Quick test export INWORLD_API_KEY="aXM2..." ./scripts/tts.sh "Testing one two three" test.mp3 mpv test.mp3 # or any audio player # Different voice and speed ./scripts/tts.sh "Slow and steady" slow.mp3 --rate 0.8 # Fast-paced narration ./scripts/tts.sh "Breaking news!" fast.mp3 --rate 1.5

Troubleshooting

"INWORLD_API_KEY not set" - Export the environment variable before running. Empty output file - Check API key is valid and has "Voices: Read" permission. Streaming issues - Ensure jq supports --unbuffered flag.

Links

Inworld Platform: https://platform.inworld.ai API Examples: https://github.com/inworld-ai/inworld-api-examples

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/tts.sh Scripts