retellai-migration-deep-dive

支持基于绞杀藤模式的 Retell AI 系统迁移,涵盖从竞品切换、大版本升级到全量重构等多类场景,提供现状评估、适配层开发、分批数据迁移、渐进式流量切换及一键回滚能力。

快捷安装

在终端运行此命令,即可一键安装该 Skill 到您的 Claude 中

npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill "retellai-migration-deep-dive"

Retell AI Migration Deep Dive

Overview

Implementation patterns for Retell AI migration deep dive — 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 migration deep dive

Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid API keyCheck RETELL_API_KEY
429 Rate LimitedToo many requestsImplement backoff
400 Bad RequestInvalid parametersCheck API documentation

Resources

Next Steps

See related Retell AI skills for more workflows.