Speak to Claude Code and get responses read aloud. Fully local STT (Whisper) and TTS (Kokoro), no API keys needed.
You speak → Whisper transcribes locally → Claude responds → (optional) Kokoro speaks response
| #!/usr/bin/env bash | |
| ### BEGIN INIT INFO | |
| # Provides: vmwareautostart | |
| # Required-Start: $vmware $network $syslog | |
| # Required-Stop: $vmware $network $syslog | |
| # X-Start-Before: | |
| # X-Stop-After: | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 |
| //: Playground - noun: a place where people can play | |
| import UIKit | |
| let users = ["Josh","David","Craig","Mike"] | |
| class Expense{ | |
| var owees: [String] | |
| var payedBy: String | |
| var price: Double |