ワンクリックで
win-tts
Text-to-speech using Windows built-in speech synthesis — speak aloud or save to WAV, multilingual, zero dependencies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Text-to-speech using Windows built-in speech synthesis — speak aloud or save to WAV, multilingual, zero dependencies.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Persistent agent memory via OpenViking — store and retrieve context across sessions using a tiered filesystem database. L0/L1/L2 context layers with semantic search.
Windows Task Scheduler — create, list, manage, and delete scheduled tasks for automated workflows, zero dependencies.
Browser integration — open URLs, read bookmarks and history from Edge/Chrome, get active tabs, list downloads, zero dependencies.
Local AI inference via Ollama — run LLMs on-device, manage models, detect NPU/GPU/DirectML hardware, zero cloud dependencies.
System diagnostics — CPU, RAM, battery, GPU, network, processes, OS info via WMI, zero dependencies.
Read and search Windows Sticky Notes — access your notes via the local SQLite database using built-in winsqlite3.dll, zero dependencies.
SOC 職業分類に基づく
| name | win-tts |
| description | Text-to-speech using Windows built-in speech synthesis — speak aloud or save to WAV, multilingual, zero dependencies. |
| metadata | {"openclaw":{"emoji":"🔊","os":["win32"]}} |
Text-to-speech using the Windows built-in speech engine (SAPI 5). Speak text aloud or save to WAV files. Multilingual, fully offline, zero external dependencies.
Works on Windows 10/11 with PowerShell 5.1+.
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.GetInstalledVoices() | ForEach-Object {
$v = $_.VoiceInfo
Write-Host ('{0} | {1} | {2}' -f $v.Name, $v.Culture, $v.Gender)
}
$synth.Dispose()
"
Common voices: Microsoft David Desktop (en-US, Male), Microsoft Zira Desktop (en-US, Female), Microsoft Hanhan Desktop (zh-TW, Female).
Additional voices can be installed via Settings → Time & Language → Speech.
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.Speak('TEXT_TO_SPEAK')
$synth.Dispose()
"
Replace TEXT_TO_SPEAK with the text to speak aloud.
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.SelectVoice('VOICE_NAME')
$synth.Speak('TEXT_TO_SPEAK')
$synth.Dispose()
"
Replace VOICE_NAME with one of the installed voice names (e.g., Microsoft David Desktop).
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.SelectVoice('Microsoft Hanhan Desktop')
$synth.Speak('你好,這是一個語音合成測試。')
$synth.Dispose()
"
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.Rate = RATE
$synth.Volume = VOLUME
$synth.Speak('TEXT_TO_SPEAK')
$synth.Dispose()
"
RATE: -10 (slowest) to 10 (fastest), default 0VOLUME: 0 (silent) to 100 (loudest), default 100powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.SetOutputToWaveFile('OUTPUT_PATH')
$synth.Speak('TEXT_TO_SPEAK')
$synth.SetOutputToDefaultAudioDevice()
$synth.Dispose()
Write-Host 'Saved to OUTPUT_PATH'
"
Replace OUTPUT_PATH with the full path for the WAV file (e.g., C:\Users\me\speech.wav).
Use SSML for fine-grained control over pronunciation, pauses, emphasis, and pitch:
powershell.exe -NoProfile -Command "
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$ssml = @'
<speak version='1.0' xmlns='http://www.w3.org/2001/10/synthesis' xml:lang='en-US'>
<voice name='Microsoft David Desktop'>
<prosody rate='medium' pitch='default'>
Hello! <break time='500ms'/>
This is <emphasis level='strong'>important</emphasis>.
</prosody>
</voice>
</speak>
'@
$synth.SpeakSsml($ssml)
$synth.Dispose()
"
| Element | Example | Effect |
|---|---|---|
<break> | <break time='500ms'/> | Pause for 500ms |
<emphasis> | <emphasis level='strong'>word</emphasis> | Stress a word |
<prosody> | <prosody rate='fast' pitch='high'> | Control speed and pitch |
<say-as> | <say-as interpret-as='date'>2026-02-11</say-as> | Read as date |
<voice> | <voice name='Microsoft Zira Desktop'> | Switch voice mid-speech |
1. Agent completes a task (search, analysis, etc.)
2. win-tts: speak the summary to the user
1. win-whisper: record and transcribe user speech
2. Agent processes the request
3. win-tts: speak the response aloud
1. Read file contents
2. win-tts: save to WAV for playback
3. Or speak directly for real-time reading
1. win-tts (David): speak English version
2. win-tts (Hanhan): speak Chinese version
System.Speech.Synthesis (SAPI 5), built into Windows.win-whisper for round-trip testing.win-whisper for a complete voice conversation loop.