with one click
text-to-speech
Convert text to speech using OpenAI TTS API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Convert text to speech using OpenAI TTS API
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Execute a single agent step with custom system prompt and wait for completion.
Control the CARNELIAN browser control server (status/start/stop/tabs/snapshot/screenshot/navigate/act). Routes to the local browser control HTTP server.
Render canvas graphics and visualizations via Carnelian gateway node.invoke API
Communicate with Windsurf Cascade via JSONL channel files (message/delegate/request_help/share_context/status).
Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events.
Send a message to a Discord channel via the Discord REST API
| name | text-to-speech |
| description | Convert text to speech using OpenAI TTS API |
| metadata | {"CARNELIAN":{"emoji":"🔊","requires":{"env":["OPENAI_API_KEY"]},"primaryEnv":"OPENAI_API_KEY"},"carnelian":{"runtime":"node","version":"1.0.0","sandbox":{"network":"full","resourceLimits":{"maxMemoryMB":256,"maxCpuPercent":25,"timeoutSecs":30},"env":{"OPENAI_API_KEY":"${OPENAI_API_KEY}"}},"capabilities":["net.http"]}} |
Convert text to speech using OpenAI TTS API.
Ported from CARNELIAN tts-tool.ts.
{
text: string; // Required: text to convert to speech
voice?: string; // Optional: voice to use (default "alloy")
model?: string; // Optional: model to use (default "tts-1")
format?: string; // Optional: audio format (default "mp3")
}
alloy - Neutral and balancedecho - Male, clear and expressivefable - British accent, warmonyx - Deep male voicenova - Female, energeticshimmer - Female, soft and warmtts-1 - Standard quality, fastertts-1-hd - High definition quality, slowermp3 - MP3 audio (default)opus - Opus audioaac - AAC audioflac - FLAC audio{
audio_base64: string; // Base64-encoded audio data
format: string; // Audio format used
provider: string; // Provider used ("openai")
}
OPENAI_API_KEY environment variable