Add Typecast TTS skill
loading diff…
typecast-tts/SKILL.md — a skill for generating speech via the Typecast REST APIUsers who want to generate Korean or multilingual TTS audio from scripts without installing any CLI tool. The skill uses the Typecast REST API directly via curl.
Content creators generating narration for videos, podcasts, or e-learning — particularly Korean-language creators using Typecast voices.
```bash
curl -s -X POST
-H "X-API-Key: $TYPECAST_API_KEY"
-H "Content-Type: application/json"
-d '{"text":"Hello","voice_id":"tc_...","model":"ssfm-v30","format":"mp3"}'
https://api.typecast.ai/v1/text-to-speech
-o output.mp3
```
Claude Code (CLI)