Agent Skills by ALSEL
Anthropic ClaudeLLM・AI開発⭐ リポ 1品質スコア 58/100

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 本文

注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。

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 / ライセンス: 未指定

本サイトは GitHub 上で公開されているオープンソースの SKILL.md ファイルをクロール・インデックス化したものです。 各スキルの著作権は原作者に帰属します。掲載に問題がある場合は info@alsel.co.jp または /takedown フォームよりご連絡ください。
原作者: Brmbobo · Brmbobo/Web2podcast · ライセンス: ライセンス未確認