From retellai-pack
Documents Retell AI pitfalls including TypeScript SDK patterns, common errors (401/429/400), and handling for voice agents and phone call automation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/retellai-pack:retellai-known-pitfallsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implementation patterns for Retell AI known pitfalls — voice agent and telephony platform.
Implementation patterns for Retell AI known pitfalls — voice agent and telephony platform.
retellai-install-auth setupimport Retell from 'retell-sdk';
const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! });
const agents = await retell.agent.list();
console.log(`Agents: ${agents.length}`);
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELL_API_KEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
See related Retell AI skills for more workflows.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin retellai-packTroubleshoots Retell AI voice agents and telephony with TypeScript SDK patterns, error handling tables, and integration guides.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.