원클릭으로
speak
Speak text aloud using local TTS. Use when the user wants Claude's output read aloud or to toggle auto-read mode.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Speak text aloud using local TTS. Use when the user wants Claude's output read aloud or to toggle auto-read mode.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Capture the screen and inject a short text summary into Claude's context via an in-process VLM (llama-cpp-python). No daemon. Use to feed terminal/editor/browser state to Claude for debug, fix suggestions, or summarization with minimal token cost.
Transcribe speech using local STT. Use when the user wants voice input or offline audio transcription.
SOC 직업 분류 기준
| name | speak |
| description | Speak text aloud using local TTS. Use when the user wants Claude's output read aloud or to toggle auto-read mode. |
| compatibility | Designed for Claude Code |
| metadata | {"allowed-tools":"Bash, Read","argument-hint":["text to speak or --toggle"],"stability":"development"} |
Speak text aloud using local text-to-speech.
/speak Hello world — speak specific text/speak --toggle — enable/disable auto-read mode/speak --voice en_GB-alan — use a specific voiceuv run python -m cc_tts.speak $ARGUMENTS
See .cc-senses.example.toml [tts] section for the full schema and CC_TTS_* env overrides.
Three paths from text to audio (Stop hook, stream-json pipe, PTY proxy). See docs/architecture.md for the comparison table and docs/adr/0001-tts-delivery-modes.md for the rationale.
Do not combine Stop hook + PTY proxy — causes double speaking.
For the full bidirectional flow (/speak --toggle → /voice → speak → response spoken back), see docs/UserStory.md Flow A.