retellai-reliability-patterns
Retell AIの信頼性パターン(サーキットブレーカー、べき等性、グレースフルデグラデーション)を実装できます。 フォールトトレランスに対応したRetell AI統合の構築、リトライ戦略の実装、本番環境のRetell AIサービスへのレジリエンス追加が必要な場合に活用してください。 「retellai reliability」「retellai circuit breaker」「retellai idempotent」「retellai resilience」「retellai fallback」「retellai bulkhead」などのキーワードで起動します。
description の原文を見る
Implement Retell AI reliability patterns including circuit breakers, idempotency, and graceful degradation. Use when building fault-tolerant Retell AI integrations, implementing retry strategies, or adding resilience to production Retell AI services. Trigger with phrases like "retellai reliability", "retellai circuit breaker", "retellai idempotent", "retellai resilience", "retellai fallback", "retellai bulkhead".
SKILL.md 本文
Retell AI 信頼性パターン
概要
Retell AI 統合向けの本番レベルの信頼性パターンです。
前提条件
- サーキットブレーカーパターンの理解
- opossum または同様のライブラリがインストール済み
- DLQ 向けのキュー基盤
- フォールバック向けのキャッシングレイヤー
サーキットブレーカー
import CircuitBreaker from 'opossum';
const retellaiBreaker = new CircuitBreaker(
async (operation: () => Promise<any>) => operation(),
{
timeout: 30000,
errorThresholdPercentage: 50,
resetTimeout: 30000,
volumeThreshold: 10,
}
);
// イベント
retellaiBreaker.on('open', () => {
console.warn('Retell AI circuit OPEN - requests failing fast');
alertOps('Retell AI circuit breaker opened');
}
...
詳細情報
- 作者
- Brmbobo
- リポジトリ
- Brmbobo/Web2podcast
- ライセンス
- 不明
- 最終更新
- 2026/1/26
Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定