From retellai-pack
Implements rate limit handling for Retell AI voice agents and telephony using retell-sdk. Covers TypeScript SDK patterns, 429 error backoff, and API integration troubleshooting.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin retellai-packThis skill is limited to using the following tools:
Implementation patterns for Retell AI rate limits — voice agent and telephony platform.
Implements Retell AI SDK patterns for voice agent data handling like listing agents and error management. Use for telephony and AI phone call automation integrations.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Implementation patterns for Retell AI rate limits — 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.