retellai-upgrade-migration

自动化完成 Retell AI SDK 版本升级全流程,包括当前版本识别、变更日志分析、分支创建、依赖更新、兼容性适配与测试验证,确保平滑迁移并支持快速回滚。

快捷安装

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

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

Retell AI Upgrade Migration

Overview

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

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.