npx skills add https://github.com/sundial-org/awesome-openclaw-skills
thinkfleetai/thinkfleet-engine
openai-tts
Text-to-speech via OpenAI Audio Speech API.
Installation
npx skills add thinkfleetai/thinkfleet-engine --skill openai-tts
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Use when the user asks how to build with OpenAI products or APIs, asks about Codex itself or ch…
4.3K installs>- MANDATORY recipe for every Caffeine build that calls OpenAI (ChatGPT, GPT-4o, an LLM, a chat…
18.5K installsLocal speech-to-text with the Whisper CLI (no API key).
4.7K installsOpenAI Audio Transcriptions API via curl; gpt-4o-transcribe, mini, diarize, or whisper-1.
3.3K installsOpenAI Agents SDK (Python) development. Use when building AI agents, multi-agent handoffs, func…
1.7K installsQuery the OpenAI developer documentation via the OpenAI Docs MCP server using CLI (curl/jq).
1.2K installsAlso in this package
Other skills from thinkfleetai/thinkfleet-engine · top by installs.
npx skills add thinkfleetai/thinkfleet-engine
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,670 B -
docs
SUMMARY.md61 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
OpenAI TTS (curl)
Generate speech from text via OpenAI's /v1/audio/speech endpoint.
Quick start
{baseDir}/scripts/speak.sh "Hello, world!"
{baseDir}/scripts/speak.sh "Hello, world!" --out /tmp/hello.mp3
Defaults:
- Model:
tts-1(fast) ortts-1-hd(quality) - Voice:
alloy(neutral), also:echo,fable,onyx,nova,shimmer - Format:
mp3
Voices
| Voice | Description |
|---|---|
| alloy | Neutral, balanced |
| echo | Male, warm |
| fable | British, expressive |
| onyx | Deep, authoritative |
| nova | Female, friendly |
| shimmer | Female, soft |
Flags
{baseDir}/scripts/speak.sh "Text" --voice nova --model tts-1-hd --out speech.mp3
{baseDir}/scripts/speak.sh "Text" --format opus --speed 1.2
Options:
--voice <name>: alloy|echo|fable|onyx|nova|shimmer (default: alloy)--model <name>: tts-1|tts-1-hd (default: tts-1)--format <fmt>: mp3|opus|aac|flac|wav|pcm (default: mp3)--speed <n>: 0.25-4.0 (default: 1.0)--out <path>: output file (default: stdout or auto-named)
API key
Set OPENAIAPIKEY, or configure in ~/.thinkfleetbot/thinkfleetbot.json:
{
skills: {
entries: {
"openai-tts": {
apiKey: "sk-..."
}
}
}
}
Pricing
- tts-1: ~$0.015 per 1K characters
- tts-1-hd: ~$0.030 per 1K characters
Very affordable for short responses!