voice-agent-expert
Installation
SKILL.md
Voice Agent Expert – Debugging Cheat Sheet (Skill)
This skill is a practical, "use-it-while-debugging" reference for getting a LiveKit + Letta voice agent working reliably.
Core rules (fix 90% of issues)
-
Override the right LiveKit hook
- The framework calls
llm_node, notgenerate_reply. - If you override the wrong method, your changes won't run and your agent may "look alive" but never route text correctly.
- The framework calls
-
Only ONE voice-agent process can run at a time
- Duplicate processes commonly cause:
- timeouts
- audio cutting out
- inconsistent behavior (you're looking at logs from one process while another is actually serving)
- Duplicate processes commonly cause: