用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/guoqiao/skills --skill mlx-tts命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | mlx-tts |
| description | Text-To-Speech with MLX (Apple Silicon) and opensource models (default QWen3-TTS) locally. |
| author | guoqiao |
| metadata | {"openclaw":{"always":false,"emoji":"🦞","homepage":"https://clawhub.ai/guoqiao/mlx-tts","os":["darwin"],"requires":{"bins":["brew"]}}} |
| triggers | ["/mlx-tts <text>","TTS ...","Convert text to audio ...","Say <text>","Reply with voice message ..."] |
Text-To-Speech with MLX (Apple Silicon) and open-source models (default QWen3-TTS) locally.
Free and Fast. No API key required. No server required.
mlx: macOS with Apple Siliconbrew: used to install deps if not availablebash ${baseDir}/install.sh
This script will use brew to install these CLI tools if not available:
uv: install python package and run python scriptmlx_audio: do the real jobTo generate audio from text, run this script:
bash ${baseDir}/mlx-tts.sh "<text>"
message tool to send the audio file to the user as an voice message:{
"action": "send",
"filePath": "<filepath>"
}
Example:
User: "Say hello world"
Agent:
bash path/to/mlx-tts.sh "hello world"/tmp/folder/audio.oggmessage(action="send", filePath="/tmp/folder/audio.ogg", ...)