Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Convert text to speech audio via ComfyUI's Qwen-TTS API, supporting customizable voice, style, model, and output options.
Convert text to speech audio via ComfyUI's Qwen-TTS API, supporting customizable voice, style, model, and output options.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Generate speech audio using ComfyUI's Qwen-TTS service. This skill allows you to convert text to speech through ComfyUI's API.
Set these environment variables to configure the ComfyUI connection: export COMFYUI_HOST="localhost" # ComfyUI server host export COMFYUI_PORT="8188" # ComfyUI server port export COMFYUI_OUTPUT_DIR="" # Optional: Custom output directory
Generate audio from text using default settings: scripts/tts.sh "δ½ ε₯½οΌδΈη"
Customize voice characteristics: # Specify character and style scripts/tts.sh "δ½ ε₯½" --character "Girl" --style "Emotional" # Change model size scripts/tts.sh "δ½ ε₯½" --model "3B" # Specify output file scripts/tts.sh "δ½ ε₯½" --output "/path/to/output.wav" # Combine options scripts/tts.sh "δ½ ε₯½οΌθΏζ―ζ΅θ―" \ --character "Girl" \ --style "Emotional" \ --model "1.7B" \ --output "~/audio/test.wav"
OptionDescriptionDefault--characterVoice character (Girl/Boy/etc.)"Girl"--styleSpeaking style (Emotional/Neutral/etc.)"Emotional"--modelModel size (0.5B/1.7B/3B)"1.7B"--outputOutput file pathAuto-generated--temperatureGeneration temperature (0-1)0.9--top-pTop-p sampling0.9--top-kTop-k sampling50
The skill performs these steps: Construct Workflow: Builds a ComfyUI workflow JSON with your text and settings Submit Job: Sends the workflow to ComfyUI's /prompt endpoint Poll Status: Monitors job completion via /history endpoint Retrieve Audio: Returns the path to the generated audio file
Verify ComfyUI is running: curl http://$COMFYUI_HOST:$COMFYUI_PORT/system_stats Check host and port settings
Large models (3B) take longer to generate Try smaller models (0.5B, 1.7B) for faster results
Check ComfyUI's output directory configuration Verify file permissions
The skill uses ComfyUI's native API endpoints: POST /prompt - Submit workflow GET /history - Check job status Output files are saved to ComfyUI's configured output directory
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.