skills$openclaw/inworld-tts
gugic8.0k

by gugic

inworld-tts – OpenClaw Skill

inworld-tts is an OpenClaw Skills integration for coding workflows. 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.

8.0k stars949 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameinworld-tts
descriptionText-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. OpenClaw Skills integration.
ownergugic
repositorygugic/inworld-tts
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @gugic/inworld-tts
last updatedFeb 7, 2026

Maintainer

gugic

gugic

Maintains inworld-tts in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
tts.sh
1.7 KB
_meta.json
273 B
SKILL.md
2.4 KB
SKILL.md

name: inworld-tts description: 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.

Inworld TTS

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

Setup

  1. Get API key from https://platform.inworld.ai
  2. Generate key with "Voices: Read" permission
  3. Copy the "Basic (Base64)" key
  4. 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

EndpointUse
POST https://api.inworld.ai/tts/v1/voiceStandard synthesis
POST 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

"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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

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

FAQ

How do I install inworld-tts?

Run openclaw add @gugic/inworld-tts in your terminal. This installs inworld-tts into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/gugic/inworld-tts. Review commits and README documentation before installing.