Product

A voice coding assistant you can actually talk to

Toggle voice mode with Cmd/Ctrl+Shift+V, hold Space, and say what you want built. AIDEN delegates the work to a background coding agent and reads the result back aloud, push-to-talk, on your own OpenAI key.

By Kylian Migot · Updated July 2026 · 6 min read

Quick answer

AIDEN’s voice orchestrator lets you delegate coding by speaking: quick requests run instantly in-app, heavier work spawns a background agent via delegate_task, risky actions wait for your approval, and finished results are read back aloud.
What it is
Push-to-talk voice control for AIDEN's agents, "Talk to AIDEN" in the app
Hotkey + model
Cmd/Ctrl+Shift+V, hold Space · OpenAI Realtime API (gpt-realtime-2) over WebRTC
Requirements
macOS 12+, Claude Code or Codex CLI, an OpenAI API key
Limits
Push-to-talk only · one delegated agent at a time · in-memory sessions
01

What is the voice orchestrator?

“Talk to AIDEN” is a voice interface wired into the agentic IDE. When you speak, AIDEN either acts instantly inside the app, open a panel, split a view, read something back, or hands the request to a background agent that actually writes the code. You already delegate features to agents from the board; voice lets you kick them off and steer them without touching the keyboard.

You open it with Cmd/Ctrl+Shift+V, hold Space to talk, and release to send. AIDEN replies in a natural, low-latency voice over WebRTC, powered by OpenAI’s Realtime API (model gpt-realtime-2, with selectable voices like marin, cedar, and alloy). Your words and AIDEN’s reply stream as live captions, so the current session always has an on-screen transcript. Change your mind mid-answer? Hold Space to barge in and start a new turn, or hit Esc to hard-stop a response.

02

How it works: voice to code

Under the hood, AIDEN decides whether your request is a quick in-app action or real work that needs an agent. Here is the full path from spoken words to a delegated result.

  1. 1

    Push-to-talk

    Toggle voice mode with Cmd/Ctrl+Shift+V, hold Space, speak, release to send. No wake word, no always-on listening, the mic is only live while you hold the key. Your speech is transcribed as streaming captions.
  2. 2

    Fast tools or delegate

    For lightweight things, navigating the app, splitting or opening panels, a quick read, the voice model calls one of about three dozen curated fast tools and the action happens immediately. Anything heavier (coding, research, file edits, browsing, automation) goes to delegate_task instead.
  3. 3

    Background agent spawns

    delegate_task spawns a background agent and routes the work to the best worker: Codex CLI for coding, Claude CLI for general tasks, with the OpenAI API as a fallback. Voice runs one delegated agent at a time, separate from the parallel agents on your board.
  4. 4

    Approve risky actions

    Destructive or risky actions, deleting, sending, deploying, calendar or account changes, are auto-flagged and paused. Approve and Decline buttons appear in the voice HUD, and nothing runs until you say yes.
  5. 5

    Monitor and hear the result

    A top-bar HUD shows the running agent count and narrates the current step and tool, moving through queued, running, and completed or failed. When the task finishes, AIDEN speaks the result summary aloud.

The delegated agent runs on the same local CLIs as the rest of AIDEN, the orchestration layer described in Claude Code orchestration. Voice is the single-slot entry point; for many agents shipping in parallel, see the multi-agent coding workflow.

Your AI workspace for shipping software.

Download AIDEN free and point it at your existing Claude Code or Codex setup. No credit card, running in minutes.

Download AIDEN free

Free to start · macOS 12+ · No credit card required

03

What you can do by voice

The voice orchestrator is built around a small set of verified capabilities. This is exactly what it does today.

Push-to-talk voice mode

Cmd/Ctrl+Shift+V to toggle, hold Space to talk. Low-latency spoken replies over WebRTC via OpenAI's Realtime API, with selectable voices. Esc hard-stops any response.

Live transcription

Your speech and AIDEN's reply stream as real-time captions, so every session has an on-screen transcript as it happens.

Barge-in interruption

Hold Space mid-reply to interrupt AIDEN and start a new turn instantly, no waiting for it to finish talking.

Instant in-app actions

About three dozen curated fast tools, navigate the app, split or open panels, quick reads, run the moment you ask.

Delegate to a background agent

Heavier work is handed off via delegate_task and routed to Codex CLI, Claude CLI, or the OpenAI API depending on the job.

Approval gates for risky actions

Deleting, sending, deploying, and calendar or account changes are auto-flagged. You Approve or Decline in the HUD before anything runs.

Live agent HUD

A top-bar HUD shows the running agent count and narrates the current step and tool: queued, running, completed or failed.

Spoken result summaries

When a delegated task finishes, AIDEN reads the summary aloud, delegate, look away, and hear when it's done.
04

Voice vs typing-only assistants

Typing-only assistants are excellent, and AIDEN is one by default, everything works from the keyboard and the board. Voice adds a second input mode for the moments talking is faster: kicking off a task while your hands are busy, steering an agent mid-run, or thinking out loud about what to build next.

DimensionTyping-only assistantAIDEN voice orchestrator
Input modeKeyboard / chat boxKeyboard + push-to-talk voice
Kicking off workType out the requestSay it: hold Space, release
Getting resultsRead the outputRead captions or hear it spoken aloud
Steering mid-runType a new messageBarge in by holding Space
Safety on risky actionsDepends on the toolApprove / Decline gate in the HUD
Where the work runsYour machine / your keysYour machine / your keys

Voice does not replace typing, it removes friction at the exact moments the keyboard gets in the way. Delegated features still land as cards on the AI kanban board, you still review every diff, and your code never leaves your machine.

Voice orchestrator, FAQ

What is AIDEN's voice orchestrator?
AIDEN's voice orchestrator, called "Talk to AIDEN" in the app, is a voice interface for its agentic IDE. You toggle voice mode with Cmd/Ctrl+Shift+V, hold Space to talk, and release to send. Quick in-app actions happen instantly; real coding work is delegated to a background agent and the result is read back aloud.
Is it hands-free or always listening?
No. It is push-to-talk, there is no wake word and no always-on listening. You hold Space to speak and release to send. Once a coding task is delegated, though, you can step away from the keyboard while the background agent runs.
How does voice actually run my coding tasks?
When you ask for something heavier than a quick in-app action, the voice model calls delegate_task and spawns a background agent. AIDEN routes the work to the best worker, Codex CLI for coding, Claude CLI for general work, with the OpenAI API as a fallback. You watch progress in a top-bar HUD and hear the summary spoken aloud when it finishes.
Can it delete files or deploy without my permission?
No. Destructive or risky actions, deleting, sending, deploying, calendar or account changes, are auto-flagged and require your explicit approval. You tap Approve or Decline in the voice HUD before anything runs.
How many agents can voice run at once?
Today the voice orchestrator runs one delegated background agent at a time. AIDEN's broader kanban board runs many agents in parallel across separate git branches, but the voice delegation slot is single-agent for now.
What do I need to use voice, and does my code stay private?
You need macOS 12 or later and at least one of Claude Code or Codex CLI installed, the same as the rest of AIDEN. The voice layer uses OpenAI's Realtime API, so it needs an OpenAI key. Everything runs on your machine: voice uses your OpenAI key, delegated coding uses your already-installed CLIs, and your code stays local.

Keep reading

Talk to your code, for free

Download AIDEN, hold Space, and delegate your first coding task by voice. Free tier, one project, no credit card.

macOS 12+ · Bring your own Claude Code or Codex · Your code stays local