npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

openclaw-volcengine-tts

v1.0.0

Published

Volcengine (Doubao) TTS speech provider plugin for OpenClaw — high-quality Chinese voice synthesis

Readme

openclaw-volcengine-tts

Volcengine (Doubao) speech provider plugin for OpenClaw — high-quality Chinese TTS powered by ByteDance's speech synthesis engine.

Features

  • 🎙️ First-class speech provider — works with messages.tts (auto TTS) and Talk Mode (real-time voice conversation)
  • 🇨🇳 Optimized for Chinese — native Mandarin voices with natural prosody
  • 🌍 Multi-language — also supports English, Japanese, Korean, and multilingual voices
  • 😊 Emotion control — happy, sad, angry, and more (on supported voices)
  • Low latency — direct API calls, no wrapper overhead
  • 🔧 Fully configurable — voice, speed, pitch, volume, encoding, cluster

Quick start

1. Install

npm install -g openclaw-volcengine-tts

2. Set credentials

Get your App ID and Access Token from Volcengine Speech Console.

export VOLCENGINE_TTS_APP_ID="your-app-id"
export VOLCENGINE_TTS_ACCESS_TOKEN="your-access-token"

Or add to ~/.openclaw/.env:

VOLCENGINE_TTS_APP_ID=your-app-id
VOLCENGINE_TTS_ACCESS_TOKEN=your-access-token

3. Configure OpenClaw

For message auto-TTS (replies sent as voice):

// ~/.openclaw/openclaw.json
{
  messages: {
    tts: {
      auto: "always",
      provider: "volcengine-tts",
    },
  },
}

For Talk Mode (real-time voice conversation on phone/node):

{
  talk: {
    provider: "volcengine-tts",
    providers: {
      "volcengine-tts": {
        voiceId: "zh_female_yingtaowanzi_mars_bigtts",
      },
    },
  },
}

4. Restart OpenClaw

openclaw gateway restart

Configuration

Plugin config (optional)

{
  plugins: {
    entries: {
      "volcengine-tts": {
        config: {
          voiceType: "zh_female_yingtaowanzi_mars_bigtts",
          cluster: "volcano_tts",
          encoding: "mp3",        // mp3 | pcm | ogg_opus | wav
          speedRatio: 1.0,        // 0.5 - 2.0
          volumeRatio: 1.0,       // 0.5 - 2.0
          pitchRatio: 1.0,        // 0.5 - 2.0
          emotion: "happy",       // optional, on supported voices
          language: "zh",         // optional, explicit language hint
        },
      },
    },
  },
}

Environment variables

| Variable | Description | |----------|-------------| | VOLCENGINE_TTS_APP_ID | App ID from Volcengine console | | VOLCENGINE_TTS_ACCESS_TOKEN | Access token | | VOLCENGINE_TTS_VOICE | Default voice type (fallback) |

Available voices

Run /voice list in OpenClaw to see all available voices. Some highlights:

Chinese Female

  • zh_female_yingtaowanzi_mars_bigtts — 樱桃丸子 (warm & sweet)
  • zh_female_shuangkuaisisi_moon_bigtts — 爽快思思 (crisp & clear)
  • zh_female_sajiaonvyou_moon_bigtts — 撒娇女友 (cute)
  • zh_female_gaolengyujie_moon_bigtts — 高冷御姐 (cool & mature)

Chinese Male

  • zh_male_chunhou_moon_bigtts — 醇厚 (deep & mature)
  • zh_male_yangguang_moon_bigtts — 阳光 (bright & positive)

Multilingual

  • multi_female_shuangkuaisisi_moon_bigtts — supports CN/EN/JP/KR
  • multi_male_jingqiangkanye_moon_bigtts — supports CN/EN/JP/KR

English

  • en_female_amanda_mars_bigtts — Amanda
  • en_male_adam_mars_bigtts — Adam

Full voice list: Volcengine Voice Catalog

Talk Mode usage

Once configured, Talk Mode works on any OpenClaw node device (iOS/Android/macOS):

  1. Pair your phone with your OpenClaw gateway
  2. Enable Voice Wake (e.g., wake word "管家")
  3. Start talking — responses come back in the configured Chinese voice

This turns any old phone into a Chinese-speaking AI assistant.

How it works

The plugin calls the Volcengine OpenSpeech TTS API directly via HTTP. No SDK dependency, no WebSocket complexity — just a clean REST call that returns base64-encoded audio.

Pricing

Volcengine TTS pricing is usage-based. See Volcengine Pricing for current rates. Generally very affordable for personal use.

License

MIT