← All skills
Tencent SkillHub Β· Developer Tools

say

Text-to-Speech via macOS say command with Siri Natural Voices. Use for generating speech audio, TTS clips, or speaking text aloud on macOS.

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

Text-to-Speech via macOS say command with Siri Natural Voices. Use for generating speech audio, TTS clips, or speaking text aloud on macOS.

⬇ 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

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

Documentation

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

say

Use say for on-device text-to-speech on macOS.

Siri Natural Voices (recommended)

Siri voices are the best macOS TTS voices but cannot be selected via -v. Instead, run say without -v β€” it uses the system default voice. Switch languages via defaults write: # Switch to German defaults write com.apple.speech.voice.prefs SystemTTSLanguage -string "de" say "Hallo, wie geht's?" -o output_de.aiff # Switch to Chinese (Mandarin) defaults write com.apple.speech.voice.prefs SystemTTSLanguage -string "cmn" say "δ½ ε₯½οΌŒδΈ–η•Œ" -o output_zh.aiff No process restart needed β€” the next say invocation picks up the new language immediately.

Prerequisites

Download the desired Siri voices first in System Settings > Accessibility > Spoken Content and set them as the system voice for each language. Check which voices are currently configured: defaults read com.apple.Accessibility SpokenContentDefaultVoiceSelectionsByLanguage

Fallback: select voice via -v

For non-Siri voices, use -v directly: say -v 'Tingting (Enhanced)' "δ½ ε₯½οΌŒδΈ–η•Œ" say -v '?' # list all installed voices (Siri voices not listed)

Output to file

say -o output.aiff "Hello world" ffmpeg -y -i output.aiff -ar 22050 -ac 1 output.wav # convert to WAV

Options

-v <voice> β€” Select a non-Siri voice -r <rate> β€” Speaking rate in words per minute (e.g. -r 150) -o <file> β€” Save to AIFF file instead of playing aloud

Notes

say adds natural pauses at punctuation β€” no manual sentence splitting needed AIFF is the native output format; convert with ffmpeg for WAV/MP3 For batch generation: set language once, generate all clips, then switch β€” minimizes defaults write calls

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 Docs
  • SKILL.md Primary doc