From retellai-pack
Provides Retell AI SDK patterns, architecture variants, and error 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-architecture-variantsThis 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 architecture variants — voice agent and telephony platform.
Implementation patterns for Retell AI architecture variants — 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 ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin retellai-pack5plugins reuse this skill
First indexed Jul 10, 2026
Retell AI architecture variants — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell architecture variants", "retellai-architecture-variants", "voice agent".
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.