SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/krishagel/geoffrey --skill local-tts명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Unified Google Workspace integration for managing email, calendar, files, and communication across multiple accounts
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. Make sure to use this skill whenever the user mentions creating, building, designing, or improving skills, even if they don't explicitly say "skill-creator".
Generate Peninsula School District Standard Operating Procedures using the official PSD SOP template and conventions. Conducts a structured interview to gather all required information before drafting. Use when creating new SOPs, updating existing procedures, or drafting operational documentation for any district department. Triggers on requests to create SOPs, standard operating procedures, operational procedures, process documentation, or procedural guides for PSD.
| name | local-tts |
| version | 1.0.0 |
| description | Local text-to-speech using MLX and Kokoro model |
| triggers | ["local-tts","local tts","generate audio locally","kokoro tts"] |
| dependencies | ["mlx-audio (via uv --with)","pydub (via uv --with)"] |
Generate high-quality speech audio locally using Apple Silicon MLX acceleration and the Kokoro-82M model. No API keys or recurring costs.
# Generate MP3 from text
uv run --with mlx-audio --with pydub skills/local-tts/scripts/generate_audio.py \
--text "Hello, this is a test." \
--output ~/Desktop/test.mp3
# Generate from file
uv run --with mlx-audio --with pydub skills/local-tts/scripts/generate_audio.py \
--file /tmp/script.txt \
--voice af_heart \
--output ~/Desktop/podcast.mp3
# List available voices
uv run --with mlx-audio skills/local-tts/scripts/list_voices.py
| Parameter | Required | Default | Description |
|---|---|---|---|
--text | One of text/file | - | Text to convert |
--file | One of text/file | - | Path to text file |
--voice | No | af_heart | Voice preset |
--output | Yes | - | Output file path (.mp3, .wav) |
--model | No | Kokoro-82M-bf16 | Model to use |
--list-voices | No | - | Show available voices |
af_heart - Warm, friendly (default)af_bella - Soft, calmaf_nova - Clear, professionalaf_river - Clear, confidentaf_sarah - Soft, expressiveam_adam - Clear, professionalam_echo - Deep, smootham_liam - Articulate, conversationalam_michael - Soft, measuredbf_emma - Clear, refined femalebm_daniel - Clear, professional malebm_george - Distinguished maleSee references/voices.md for full list.
{
"success": true,
"file": "/Users/hagelk/Desktop/podcast.mp3",
"voice": "af_heart",
"model": "Kokoro-82M-bf16",
"characters": 9824,
"chunks": 20,
"duration_seconds": 612.5,
"generation_time": 45.2
}
| Hardware | Speed | Notes |
|---|---|---|
| M3 Pro 36GB | ~3-4x realtime | First run slower (model loading) |
| M1/M2 Mac Mini 8GB | ~1.5x realtime | Works well for briefings |
| M1/M2 Mac Mini 16GB | ~2x realtime | Comfortable headroom |
MUST use --with flags - Do not use PEP 723 inline deps. mlx-audio requires uv's cached environment.
First run is slower - Model downloads ~200MB and espeak dependencies initialize.
Model cached at: ~/.cache/huggingface/hub/models--mlx-community--Kokoro-82M-bf16/
The morning-briefing skill uses this for podcast generation:
uv run --with mlx-audio --with pydub skills/local-tts/scripts/generate_audio.py \
--file /tmp/morning_briefing_podcast.txt \
--voice af_heart \
--output ~/Desktop/morning_briefing.mp3