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

Local Voice Control Setup for AI Agents on Apple Silicon
Setup local voice control for AI agents using Parakeet STT and Kokoro TTS on Apple Silicon for fast and cloud-independent interactions.

SuperContext: A Persistent Memory Framework for AI Coding Agents
SuperContext is an open-source framework that gives AI coding tools like Claude persistent memory through structured, targeted files instead of large instruction documents. It includes an executable prompt that builds the system in about 10 minutes with no manual setup.

Claude Code Plugin /verify: Automated Browser Testing from Your Plan
/verify is an open-source Claude Code plugin that reads your plan, spins up a real browser via Playwright MCP, checks each requirement, and gives you a pass/fail report with screenshots.

Building and Testing an MCP Server in Claude Desktop: Architecture and Lessons
A developer shares their experience building and testing an MCP server within Claude Desktop, detailing their architecture setup and practical lessons learned about tool schemas, debugging, and limitations.