用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/team-telnyx/telnyx-hermes-tts --skill telnyx-hermes-tts命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | telnyx-hermes-tts |
| description | Telnyx TTS provider contribution for Hermes Agent — integrates into tools/tts_tool.py. |
| metadata | {"clawdbot":{"emoji":"🔊","requires":{"env":"[Truncated]"},"primaryEnv":"TELNYX_API_KEY"}} |
Use this skill when integrating or validating the Telnyx Text-to-Speech provider for Hermes.
This is not a standalone plugin. Hermes handles TTS through built-in
providers dispatched in tools/tts_tool.py. This repo contains the Telnyx
provider function and tests, ready to be contributed upstream.
| Field | Value |
|---|---|
| Provider ID | telnyx |
| WebSocket endpoint | wss://api.telnyx.com/v2/text-to-speech/speech?voice=<voice> |
| Default voice | Telnyx.NaturalHD.astra |
| Output format | MP3 |
| Auth | TELNYX_API_KEY (Bearer) |
| Endpoint override | TELNYX_TTS_BASE_URL env var |
See README.md for step-by-step instructions on adding the Telnyx TTS provider
to tools/tts_tool.py in hermes-agent. Requires adding websockets as a
dependency.
export TELNYX_API_KEY="***"
Optional WebSocket URL override:
export TELNYX_TTS_BASE_URL="wss://your-proxy.example.com/v2/text-to-speech/speech"
| Family | Example voices |
|---|---|
Telnyx.NaturalHD | astra, luna, orion, celeste, bond, andromeda |
Telnyx.KokoroTTS | af_alloy, af_bella, am_adam, am_michael |
Telnyx.Natural | (see live catalog) |
Telnyx.Ultra | (see live catalog) |
Full catalog: GET /v2/text-to-speech/voices with a valid TELNYX_API_KEY.
# No credentials needed
python -m pytest tests/test_telnyx_tts_static.py tests/test_telnyx_tts_runtime.py -q
# Live test (requires TELNYX_API_KEY)
export TELNYX_API_KEY=***
python -m pytest tests/test_telnyx_tts_live.py -q
pip install needed — the provider function is copy-pasted into hermes-agent.TELNYX_TTS_BASE_URL) is covered by tests.