From terminal
Provides macOS text-to-speech via native `say` command: speak text with voice/rate, list voices by language, save speech to .aiff/.m4a files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/terminal:sayThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
macOS text-to-speech using the native `say` command.
macOS text-to-speech using the native say command.
Use this skill when users want to:
| Tool | Description |
|---|---|
say_speak | Speak text with optional voice and rate |
say_list_voices | List voices, optionally filtered by language |
say_save_audio | Save speech to .aiff or .m4a file |
Speak text:
say_speak({ text: "Hello Nathan", voice: "Samantha" })
List English voices:
say_list_voices({ language: "en" })
Save to file:
say_save_audio({ text: "Intro", output: "intro.m4a", voice: "Daniel" })
| Voice | Language | Notes |
|---|---|---|
| Samantha | en_US | Premium, natural |
| Alex | en_US | Premium, natural |
| Daniel | en_GB | British accent |
| Karen | en_AU | Australian accent |
| Albert | en_US | Fun, robotic |
npx claudepluginhub nathanvale/side-quest-marketplace-old --plugin terminalConverts text to speech audio files with support for multiple voices, languages, and speech rates. Useful for generating audio from text or reading documents aloud.
Generates speech from text via OpenAI's Audio Speech API. Supports multiple voices, models, audio formats, and playback speed control.
Uses macOS text-to-speech for agent narration and announcements, assigning distinct premium voices to sub-agents in multi-agent workflows.