retellai-incident-runbook

快速响应 Retell AI 集成故障,通过健康检查、日志分析与指标监控定位问题,依据错误类型执行密钥更新、限流处理或降级策略,并同步内外部状态,收集证据用于事后复盘,确保服务稳定性与沟通透明。

快捷安装

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

npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill "retellai-incident-runbook"

Retell AI Incident Runbook

Overview

Implementation patterns for Retell AI incident runbook — 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 incident runbook

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.