From 2f21dd81b0be3a251761769924d3fa35fc23a36b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 18:19:54 +0100 Subject: [PATCH] docs/macos: simplify sag install (auto-tap) --- apps/macos/Sources/Clawdis/ToolsSettings.swift | 7 +++++++ docs/clawd.md | 1 + 2 files changed, 8 insertions(+) diff --git a/apps/macos/Sources/Clawdis/ToolsSettings.swift b/apps/macos/Sources/Clawdis/ToolsSettings.swift index 83cbf89cc..b031dc0fe 100644 --- a/apps/macos/Sources/Clawdis/ToolsSettings.swift +++ b/apps/macos/Sources/Clawdis/ToolsSettings.swift @@ -101,6 +101,13 @@ struct ToolsSettings: View { description: "Terminal Spotify client to queue, search, and control playback without leaving chat.", method: .brew(formula: "spotify_player", binary: "spotify_player"), kind: .tool), + ToolEntry( + id: "sag", + name: "sag", + url: URL(string: "https://github.com/steipete/sag")!, + description: "ElevenLabs TTS with mac-style flags; stream to speakers or save audio.", + method: .brew(formula: "steipete/tap/sag", binary: "sag"), + kind: .tool), ToolEntry( id: "openhue-cli", name: "OpenHue CLI", diff --git a/docs/clawd.md b/docs/clawd.md index f3ba4089c..e4b1a93f6 100644 --- a/docs/clawd.md +++ b/docs/clawd.md @@ -330,6 +330,7 @@ These make your AI much more capable: | Tool | What It Does | Install | |------|--------------|---------| | **[spotify-player](https://github.com/aome510/spotify-player)** | Control Spotify from CLI - play, pause, search, queue | `brew install spotify-player` | +| **[sag](https://github.com/steipete/sag)** | ElevenLabs TTS with macOS `say`-style flags; stream or save audio | `brew install steipete/tap/sag` | | **[browser-tools](https://github.com/steipete/agent-scripts)** | Chrome DevTools CLI - navigate, screenshot, eval JS, extract DOM | Clone repo | | **say** | macOS text-to-speech | Built-in | | **afplay** | Play audio files | Built-in |