From e8018d80087d236507c99adc5f24475b71649983 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 14 Dec 2025 01:56:18 +0000 Subject: [PATCH] feat(macos): add OpenAI Whisper tool --- apps/macos/Sources/Clawdis/ToolsSettings.swift | 7 +++++++ docs/AGENTS.default.md | 1 + 2 files changed, 8 insertions(+) diff --git a/apps/macos/Sources/Clawdis/ToolsSettings.swift b/apps/macos/Sources/Clawdis/ToolsSettings.swift index 2e9856dc2..6a8f8b13a 100644 --- a/apps/macos/Sources/Clawdis/ToolsSettings.swift +++ b/apps/macos/Sources/Clawdis/ToolsSettings.swift @@ -160,6 +160,13 @@ struct ToolsSettings: View { description: "Control Philips Hue lights from scripts—scenes, dimming, and automations.", method: .brew(formula: "openhue/cli/openhue-cli", binary: "openhue"), kind: .tool), + ToolEntry( + id: "openai-whisper", + name: "OpenAI Whisper", + url: URL(string: "https://github.com/openai/whisper")!, + description: "Local speech-to-text for quick dictation and voicemail transcripts.", + method: .brew(formula: "openai-whisper", binary: "whisper"), + kind: .tool), ToolEntry( id: "gog", name: "gog", diff --git a/docs/AGENTS.default.md b/docs/AGENTS.default.md index 4fda48b60..d7e49804b 100644 --- a/docs/AGENTS.default.md +++ b/docs/AGENTS.default.md @@ -25,6 +25,7 @@ read_when: - **sag** — ElevenLabs speech with mac-style say UX; streams to speakers by default. - **Sonos CLI** — Control Sonos speakers (discover/status/playback/volume/grouping) from scripts. - **OpenHue CLI** — Philips Hue lighting control for scenes and automations. +- **OpenAI Whisper** — Local speech-to-text for quick dictation and voicemail transcripts. - **Gemini CLI** — Google Gemini models from the terminal for fast Q&A. - **bird** — X/Twitter CLI to tweet, reply, read threads, and search without a browser. - **agent-tools** — Utility toolkit for automations and MCP-friendly scripts.