skills$openclaw/aliyun-tts
guang3843.9k

by guang384

aliyun-tts – OpenClaw Skill

aliyun-tts is an OpenClaw Skills integration for writing workflows. Alibaba Cloud Text-to-Speech synthesis service.

3.9k stars773 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namealiyun-tts
descriptionAlibaba Cloud Text-to-Speech synthesis service. OpenClaw Skills integration.
ownerguang384
repositoryguang384/aliyun-tts
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @guang384/aliyun-tts
last updatedFeb 7, 2026

Maintainer

guang384

guang384

Maintains aliyun-tts in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
274 B
aliyun_tts.py
4.4 KB
SKILL.md
2.0 KB
SKILL.md

name: aliyun-tts description: Alibaba Cloud Text-to-Speech synthesis service. metadata: {"clawdbot":{"emoji":"🔊"}}

aliyun-tts

Alibaba Cloud Text-to-Speech synthesis service.

Set the following environment variables:

  • ALIYUN_APP_KEY - Application Key
  • ALIYUN_ACCESS_KEY_ID - Access Key ID
  • ALIYUN_ACCESS_KEY_SECRET - Access Key Secret (sensitive)

Option 1: CLI configuration (recommended)

# Configure App Key
clawdbot skills config aliyun-tts ALIYUN_APP_KEY "your-app-key"

# Configure Access Key ID
clawdbot skills config aliyun-tts ALIYUN_ACCESS_KEY_ID "your-access-key-id"

# Configure Access Key Secret (sensitive)
clawdbot skills config aliyun-tts ALIYUN_ACCESS_KEY_SECRET "your-access-key-secret"

Option 2: Manual configuration

Edit ~/.clawdbot/clawdbot.json:

{
  skills: {
    entries: {
      "aliyun-tts": {
        env: {
          ALIYUN_APP_KEY: "your-app-key",
          ALIYUN_ACCESS_KEY_ID: "your-access-key-id",
          ALIYUN_ACCESS_KEY_SECRET: "your-access-key-secret"
        }
      }
    }
  }
}

Usage

# Basic usage
{baseDir}/bin/aliyun-tts "Hello, this is Aliyun TTS"

# Specify output file
{baseDir}/bin/aliyun-tts -o /tmp/voice.mp3 "Hello"

# Specify voice
{baseDir}/bin/aliyun-tts -v siyue "Use siyue voice"

# Specify format and sample rate
{baseDir}/bin/aliyun-tts -f mp3 -r 16000 "Audio parameters"

Options

FlagDescriptionDefault
-o, --outputOutput file pathtts.mp3
-v, --voiceVoice namesiyue
-f, --formatAudio formatmp3
-r, --sample-rateSample rate16000

Available Voices

Common voices: siyue, xiaoxuan, xiaoyun, etc. See Alibaba Cloud documentation for the full list.

Chat Voice Replies

When a user requests a voice reply:

# Generate audio
{baseDir}/bin/aliyun-tts -o /tmp/voice-reply.mp3 "Your reply content"

# Include in your response:
# MEDIA:/tmp/voice-reply.mp3
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

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

Set the following environment variables: - `ALIYUN_APP_KEY` - Application Key - `ALIYUN_ACCESS_KEY_ID` - Access Key ID - `ALIYUN_ACCESS_KEY_SECRET` - Access Key Secret (sensitive) ### Option 1: CLI configuration (recommended) ```bash

FAQ

How do I install aliyun-tts?

Run openclaw add @guang384/aliyun-tts in your terminal. This installs aliyun-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/guang384/aliyun-tts. Review commits and README documentation before installing.