Speak with Claw: Open Source iOS Voice Interface for OpenClaw Telegram Bots

Speak with Claw is an open source iOS application that provides voice interface capabilities for Telegram bots running on OpenClaw infrastructure. The system enables conversational interaction where users speak to their bots, audio is processed locally, and responses are returned in both text and audio formats.
How It Works
The iOS app captures voice input and sends audio to a relay server running on a Mac. This server processes the audio through the user's OpenClaw-powered Telegram bot, which can connect to any LLM API (Claude, GPT, Gemini, etc.). The bot's response is sent back to the iOS app as both text and audio for playback.
Key Features
- Conversation mode with Voice Activity Detection (VAD): Automatically detects when you're speaking without requiring button presses
- Hotword activation: Can be triggered with phrases like "Hey Bot"
- Audio response playback: Bots can respond with synthesized audio
- Remote access via Tailscale: Works from anywhere while maintaining privacy
- Multiple bot selection: Supports switching between different OpenClaw bots
Technical Implementation
The system uses a three-part architecture:
- iOS App: Built with Swift, AVFoundation, and SFSpeechRecognizer
- Relay Server: Python/Flask application with Telethon for Telegram integration, runs on Mac
- OpenClaw Integration: Connects to any OpenClaw-powered Telegram bot
Performance and Limitations
The developer notes this is not an instant system like Siri. Latency depends on your LLM processing speed and network conditions. The app is described as "certainly not perfect" and users should "use at your own risk."
Privacy Considerations
All data processing occurs on your own infrastructure. No user data is sent to the app developer. The entire system is self-hosted, maintaining privacy by keeping voice interactions within your controlled environment.
Availability
The project is open source under MIT license with no commercial interest. Source code is available on GitHub for developers who want to implement or modify the system for their own OpenClaw bots.
📖 Read the full source: r/openclaw
👀 See Also

Phantom: A Persistent AI Agent Built with Claude's Agent SDK
Phantom is an open-source Bun/TypeScript process that wraps Claude's Agent SDK (Opus 4.6) with persistent vector memory, a self-evolution engine, and an MCP server interface. It runs continuously on its own VM or Docker Compose and communicates via Slack.

First-Tree: Open-Source Daemon That Uses Claude Code to Triage GitHub Notifications While You Sleep
An open-source menu bar daemon that uses Claude Code to autonomously triage GitHub notifications – it handled 98 out of 100 notifications in a recent scan, leaving only 2 for human review.

Homelab AI Sentinel: Self-Hosted Monitoring Assistant with LLM Integration
Homelab AI Sentinel is a self-hosted tool that processes monitoring webhooks through an LLM to generate plain-English diagnoses. It supports 11 alert sources, 10 notification platforms, and works with any OpenAI-compatible endpoint including Ollama and LM Studio for local inference.

OpenClaw .NET: NativeAOT Port with JSON-RPC Bridge for Existing Plugins
OpenClaw .NET is a C# port of OpenClaw that compiles to a ~23MB NativeAOT binary, eliminating JIT warmup and Node runtime overhead while maintaining compatibility with existing TypeScript/JavaScript plugins through a built-in JSON-RPC bridge.