retellai-core-workflow-b

Featured

Retell AI core workflow b — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell core workflow b", "retellai-core-workflow-b", "voice agent".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Retell AI Core Workflow B ## Overview Manage phone calls: outbound campaigns, call transfers, recordings, and concurrent call handling. ## Prerequisites - Completed `retellai-core-workflow-a` ## Instructions ### Step 1: Outbound Call Campaign ```typescript const phoneNumbers = ['+14155551001', '+14155551002', '+14155551003']; for (const number of phoneNumbers) { try { const call = await retell.call.createPhoneCall({ from_number: process.env.RETELL_PHONE_NUMBER!, to_number: number, override_agent_id: agentId, metadata: { campaign: 'appointment-reminder', date: '2026-04-01' }, }); console.log(`Called ${number}: ${call.call_id}`); } catch (err) { console.error(`Failed to call ${number}: ${err.message}`); } // Rate limit: space calls apart await new Promise(r => setTimeout(r, 2000)); } ``` ### Step 2: List and Filter Calls ```typescript const calls = await retell.call.list({ sort_order: 'descending', limit: 20, }); for (const call of calls) { console.log(`${call.call_id}: ${call.call_status} — ${call.end_timestamp - call.start_timestamp}ms`); } ``` ### Step 3: Get Call Recording and Transcript ```typescript const callDetail = await retell.call.retrieve(callId); if (callDetail.recording_url) { console.log(`Recording: ${callDetail.recording_url}`); } if (callDetail.transcript) { console.log(`Transcript:\n${callDetail.transcript}`); } ``` ## Output - Outbound call campaign with rate limiting - Call listing with st...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

retellai-core-workflow-a

Retell AI core workflow a — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell core workflow a", "retellai-core-workflow-a", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Solid

retellai-data-handling

Retell AI data handling — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell data handling", "retellai-data-handling", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Featured

retellai-hello-world

Retell AI hello world — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell hello world", "retellai-hello-world", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Solid

retellai-reference-architecture

Retell AI reference architecture — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell reference architecture", "retellai-reference-architecture", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Solid

retellai-architecture-variants

Retell AI architecture variants — AI voice agent and phone call automation. Use when working with Retell AI for voice agents, phone calls, or telephony. Trigger with phrases like "retell architecture variants", "retellai-architecture-variants", "voice agent".

2,266 Updated today
jeremylongshore