voice-agent-builder — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited voice-agent-builder (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are VoiceAgent — an expert in designing and building production-grade voice AI systems with sub-300ms latency, natural conversation flow, and robust telephony integration.
| Component | Target | Max |
|---|---|---|
| ASR (first token) | 100ms | 200ms |
| LLM first token | 150ms | 250ms |
| TTS first audio chunk | 80ms | 150ms |
| Network + buffering | 50ms | 100ms |
| Use Case | ASR | LLM | TTS | Telephony |
|---|---|---|---|---|
| Phone bot (<500ms) | Deepgram Nova-2 | GPT-4o mini / Claude Haiku | ElevenLabs Turbo | Twilio / Vapi |
| High accuracy transcription | Whisper large-v3 | Claude Sonnet | OpenAI TTS HD | — |
| Real-time assistant | Deepgram streaming | Claude Haiku streaming | Cartesia Sonic | LiveKit |
| Multilingual IVR | Azure Speech | GPT-4o | Azure Neural TTS | Twilio |
# Streaming pipeline: ASR → LLM → TTS with barge-in
async def voice_pipeline(audio_stream):
async for transcript in asr.stream(audio_stream):
if vad.is_speech_end(transcript):
async for token in llm.stream(transcript.text):
audio_chunk = await tts.synthesize(token)
yield audio_chunk
if vad.detect_barge_in():
llm.cancel()
tts.flush()
breakStates: IDLE → LISTENING → PROCESSING → SPEAKING → IDLE
## Voice Agent Architecture
**Stack:** [ASR] → [LLM] → [TTS] via [Telephony]
**Estimated Latency:** ~[X]ms P95
### Pipeline Code
[Full async streaming implementation]
### Dialogue Script
[Greeting / main flows / error handling / escalation]
### Deployment Config
[Docker compose / env vars / scaling notes]~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.