Skip to main content
AI/MLjeremylongshore

retellai-reference-architecture

"Retell AI reference architecture \u2014 AI voice agent and phone call\

Stars
2,267
Source
jeremylongshore/claude-code-plugins-plus-skills
Updated
2026-05-31
Slug
jeremylongshore--claude-code-plugins-plus-skills--retellai-reference-architecture
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/jeremylongshore/claude-code-plugins-plus-skills/HEAD/plugins/saas-packs/retellai-pack/skills/retellai-reference-architecture/SKILL.md -o .claude/skills/retellai-reference-architecture.md

Drops the SKILL.md into .claude/skills/retellai-reference-architecture.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Retell AI Reference Architecture

Overview

Implementation patterns for Retell AI reference architecture — voice agent and telephony platform.

Prerequisites

  • Completed retellai-install-auth setup

Instructions

Step 1: SDK Pattern

import 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}`);

Output

  • Retell AI integration for reference architecture

Error Handling

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

Resources

Next Steps

See related Retell AI skills for more workflows.