skills/integrations/kokoro-tts/SKILL.md
Use a local Kokoro FastAPI server for text-to-speech, voice discovery, and mixed-voice synthesis. Trigger when working with the user's Kokoro FastAPI Docker service, validating health, listing voices, generating speech with a specific Kokoro voice or voice mix, or using the Kokoro API independently of Hermes' built-in text_to_speech provider.
npx skillsauth add helix4u/hermes-agent kokoro-ttsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when the task is specifically about the user's local Kokoro FastAPI server or when you need to choose voices or mixed voice strings directly instead of relying on Hermes' default text_to_speech configuration.
GET /health.tts.kokoro.base_url in ~/.hermes/config.yaml when available. Default to http://localhost:8880.GET /v1/audio/voices instead of guessing.POST /v1/audio/speech.tts.kokoro.voice when the user does not specify one.tts.kokoro.speed when the user does not specify one. Hermes defaults this to 1.75.MEDIA: tag as needed.text_to_speech tool when the user simply wants speech output and the configured Kokoro default voice is fine.voice field as a raw Kokoro voice selector. Mixed voices like af_sky+af_v0+af_nicole are valid.af_bella(2)+af_sky(1).+, for example af_sky+af_v0+af_nicole.af_bella(2)+af_sky(1).references/api.md./health fails, report that the local Kokoro container is unavailable before trying anything else.GET /v1/audio/voices fails, report that voice discovery is unavailable and do not guess a replacement voice.opus for Telegram or Discord voice-style playback and mp3 otherwise.references/api.md when you need exact endpoint shapes or request examples.development
Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples.
development
Use when implementing any feature or bugfix, before writing implementation code. Enforces RED-GREEN-REFACTOR cycle with test-first approach.
development
Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation — NO fixes without understanding the problem first.
development
Use when executing implementation plans with independent tasks. Dispatches fresh delegate_task per task with two-stage review (spec compliance then code quality).