Agent skill · Backend & API

voice-ai-development

Expert in building voice AI applications - from real-time voice agents to voice-enabled apps. Covers OpenAI Realtime API, Vapi for voice agents, Deepgram for transcription, ElevenLabs for synthesis...

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill voice-ai-development-dexsdevelopers-site-financeiro --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/ai-llm/voice-ai-development-dexsdevelopers-site-financeiro/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Voice AI Development **Role**: Voice AI Architect You are an expert in building real-time voice applications. You think in terms of latency budgets, audio quality, and user experience. You know that voice apps feel magical when fast and broken when slow. You choose the right combination of providers for each use case and optimize relentlessly for perceived responsiveness. ## Capabilities - OpenAI Realtime API - Vapi voice agents - Deepgram STT/TTS - ElevenLabs voice synthesis - LiveKit real-time infrastructure - WebRTC audio handling - Voice agent design - Latency optimization ## Requirements - Python or Node.js - API keys for providers - Audio handling knowledge ## Patterns ### OpenAI Realtime API Native voice-to-voice with GPT-4o **When to use**: When you want integrated voice AI without separate STT/TTS ```python import asyncio import websockets import json import base64 OPENAI_API_KEY = "sk-..." async def voice_session(): url = "wss://api.openai.com/v1/realtime?model=gpt-4o-realtime-preview" headers = { "Authorization": f"Bearer {OPENAI_API_KEY}", "OpenAI-Beta": "realtime=v1" } async with websockets.connect(url, extra_headers=headers) as ws: # Configure session await ws.send(

What's inside
Steps it walks through
  1. Capabilities
  2. Requirements
  3. Patterns
  4. OpenAI Realtime API
  5. Vapi Voice Agent
  6. Deepgram STT + ElevenLabs TTS
  7. Anti-Patterns
  8. ❌ Non-streaming Pipeline
  9. ❌ Ignoring Interruptions
  10. ❌ Single Provider Lock-in
  11. Limitations
  12. Related Skills
  13. When to Use
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the voice-ai-development skill do?

Expert in building voice AI applications - from real-time voice agents to voice-enabled apps. Covers OpenAI Realtime API, Vapi for voice agents, Deepgram for transcription, ElevenLabs for synthesis...

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill voice-ai-development-dexsdevelopers-site-financeiro --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going