sonichi

Bodhi Realtime Agent — Communication skill for Claude Code

Communication community

Real-time voice agents with parallel async background sub-agents — conversations continue naturally while tasks run • Join the builders → https://discord.gg/mqxKaN3UKC.

How to install Bodhi Realtime Agent

This entry records only its repository, not the path inside it, so there is no exact command to give. Open sonichi/bodhi_realtime_agent and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Bodhi Realtime Agent does

Real-time voice agents with parallel async background sub-agents — conversations continue naturally while tasks run • Join the builders → https://discord.gg/mqxKaN3UKC.

Alternatives in Communication

README

Bodhi Agent

Bodhi: High-Performance, Multi-Agent realtime Voice Stack

[![npm version](https://img.shields.io/npm/v/bodhi-realtime-agent.svg)](https://www.npmjs.com/package/bodhi-realtime-agent) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**Conversational voice agents with non-blocking background execution.** (No other framework does this out of the box.)


Most voice agent frameworks block conversation while tools execute. User says "generate me a video" and the agent goes silent for two minutes. Bodhi splits the work: **main agents** handle the live conversation (Gemini Live API by default, OpenAI Realtime also supported), while **background subagents** (Vercel AI SDK) run long tasks in parallel. When a task finishes, the agent naturally announces it.

User: "Make me a video of a sunset AND search for weather in Tokyo"

Main Agent (Gemini/OpenAI Live — realtime voice):
  "I'm generating your video and looking up the weather..."
  │
  ├─ Subagent 1: Video generation (2 min, Veo API)
  ├─ Subagent 2: Web search (3 sec, Gemini)
  │
  "What else can I help with?"      ← keeps talking
  │
  [3s]  "The weather in Tokyo is..."  ← search result arrives
  [2m]  "Your video is ready!"        ← video arrives

Claude Code Demo — Voice-Driven Coding Assistant

Watch the Claude Code demo
Click to watch the demo

Speak coding requests naturally — Claude Code reads, edits, creates files, runs commands, and searches your codebase in the background while you keep talking. See [examples/claude_code](examples/claude_code/) for setup.

OpenClaw Integration — Voice-Driven AI Agent

Related Skills