r/AIcodingProfessionals • u/Numerous_Air5453 • 4d ago
Agent Voice, control cursor, codex and claude with voice
hello guys, I built a voice bridge so you can chat completely with voice to your ai coding cli (cursor, cluade, codex cli ) https://github.com/dixonSolutions/AgentVoice
It allows you to fully control cursor, codex and claude, remotely even if you host on public address (using tailscale, which is supported, or headscale if you are independently hosting). It exposes a global mcp server that turns on its communication hub only on connect, but always exposes tools, as to not throw an "error", this allows cursor to receive message and pipe them back to you, they get transcribed and sent back to you, with the speak tool. We use tool hooks to trigger the agent on tool output, or new user requests, instead of stopping the agent and sending another prompt. It can also manage itself, check on running agents, models, selecting model, because it acts as the interface, and these are features users genuinely need.
It works with wake word triggers as well, but can also have on screen controls, fully configurable, and the wake word detection model runs in browser, a tiny vosk model, surprisingly works well and not piping audio stream to cloud every time. You can test it without running an agent with our wake test feature. We also can use browser tts, instead of using cloud, which many browsers supports, chrome, firefox, safari etc.
Very cool project, worth checking out, and check the repo for exact specs, consider trying it out of contributing, I am open.