What problem does it solve? Spoken guidance in wellness apps often sounds monotone or falls out of sync with on-screen animations. This Skill provides consistent pitch and speech rate conventions for the Solvyx app's text-to-speech, plus patterns for synchronizing TTS playback with UI animations. ## Core Features & Use Cases - Context-based TTS presets: Predefined pitch/rate values for breathing exercises, body scans, meditations, behavioral activation, and notifications. - User speed control: A TtsSpeed enum and Compose selector letting users pick slow, normal, or fast voice speed in their profile. - Animation synchronization: Patterns using onStart/onDone callbacks and speakAndAwait so breathing circle animations and progress indicators stay aligned with spoken text, including edge-case handling when TTS and animation durations differ. - Use Case: When implementing a 4-7-8 breathing exercise in Kotlin with Jetpack Compose, apply the respiration preset (pitch 1.0, rate 0.75) and drive phase transitions from TTS completion callbacks so the circle animation matches the spoken instructions. ## Quick Start Apply this skill to configure the TTS pitch and speech rate for a guided breathing exercise and synchronize the spoken cues with the breathing circle animation.