Complete Retell AI integration skill pack with 30 skills covering AI voice agents, phone automation, conversational AI, and call center solutions. Flagship+ tier vendor pack.
Installation
Open Claude Code and run this command:
/plugin install retellai-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> Claude Code skill pack for Retell AI — AI voice agents, phone call automation, LLM-powered conversations, and telephony integration (30 skills)
Skills (30)
"Retell AI advanced troubleshooting \u2014 AI voice agent and phone call\.
Retell AI Advanced Troubleshooting
Overview
Implementation patterns for Retell AI advanced troubleshooting — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 advanced troubleshooting
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI architecture variants \u2014 AI voice agent and phone call\.
Retell AI Architecture Variants
Overview
Implementation patterns for Retell AI architecture variants — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 architecture variants
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI ci integration \u2014 AI voice agent and phone call automation.
Retell AI Ci Integration
Overview
Implementation patterns for Retell AI ci integration — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 ci integration
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
'Diagnose and fix Retell AI voice agent errors: call failures, webhook.
Retell AI Common Errors
Overview
Quick reference for the top Retell AI errors and their solutions.
Prerequisites
retell-sdkinstalled- API key configured
Instructions
Error 1: 401 Unauthorized
RetellError: 401 — Invalid API key
Fix: Verify API key in Retell Dashboard. Ensure RETELLAPIKEY starts with key_.
Error 2: Call Fails Immediately
RetellError: 400 — Invalid phone number format
Fix: Use E.164 format: +14155551234. Both fromnumber and tonumber must be valid.
Error 3: Agent Not Responding
Call connected but agent says nothing
Fix: Check LLM configuration:
const llm = await retell.llm.retrieve(agent.response_engine.llm_id);
console.log(`Model: ${llm.model}`);
console.log(`Prompt length: ${llm.general_prompt.length} chars`);
// Ensure general_prompt is not empty and gives clear instructions
Error 4: Function Call Timeout
Function call to https://your-api.com/endpoint timed out
Fix: Your function endpoint must respond within 5 seconds. Offload heavy work:
app.post('/functions/lookup', async (req, res) => {
// Respond immediately with acknowledgment
const result = await quickLookup(req.body.args);
res.json({ result: `Found: ${result.name}` });
// Do NOT run async work before responding
});
Error 5: Webhook Not Receiving Events
No webhook events received after call
Fix: Set webhook_url on the agent, not just in Dashboard settings:
await retell.agent.update(agentId, {
webhook_url: 'https://your-app.com/webhooks/retell',
});
Error 6: Voice Quality Issues
Agent voice sounds robotic/choppy
Fix: Check network latency to Retell servers. Use a voice optimized for your use case. Try different voice IDs.
Output
- Error identified and root cause found
- Fix applied and verified
- Call successfully completed
Error Handling
| HTTP Code | Meaning | Retryable |
|---|---|---|
| 400 | Bad request | No — fix params |
| 401 | Invalid API key | No — fix key |
| 404 | Agent/call not found | No — fix ID |
| 429 | Rate limited | Yes — backoff |
| 500+ | Server error | Yes — retry |
Resources
"Retell AI core workflow a \u2014 AI voice agent and phone call automation.
Retell AI Core Workflow A
Overview
Build and configure voice agents with custom prompts, function calling, and call flow logic.
Prerequisites
- Completed
retellai-hello-world
Instructions
Step 1: Agent with Function Calling
const llm = await retell.llm.create({
model: 'gpt-4o',
general_prompt: `You are a booking assistant for Dr. Smith's office.
- Help callers book, reschedule, or cancel appointments
- Collect: name, phone, preferred date/time
- Confirm all details before booking`,
functions: [
{
name: 'book_appointment',
description: 'Book a new appointment',
parameters: {
type: 'object',
properties: {
patient_name: { type: 'string' },
phone: { type: 'string' },
date: { type: 'string', description: 'YYYY-MM-DD format' },
time: { type: 'string', description: 'HH:MM format' },
},
required: ['patient_name', 'phone', 'date', 'time'],
},
url: 'https://your-api.com/appointments',
speak_during_execution: true,
speak_after_execution: true,
},
],
});
Step 2: Configure Voice and Behavior
const agent = await retell.agent.create({
response_engine: { type: 'retell-llm', llm_id: llm.llm_id },
voice_id: '11labs-Rachel',
agent_name: 'Dr. Smith Booking Agent',
language: 'en-US',
opt_out_sensitive_data_storage: false,
end_call_after_silence_ms: 10000, // End call after 10s silence
max_call_duration_ms: 300000, // 5-minute max
enable_backchannel: true, // "mhm", "yeah" responses
boosted_keywords: ['appointment', 'schedule', 'Dr. Smith'],
});
Step 3: Update Agent Configuration
await retell.agent.update(agent.agent_id, {
voice_id: '11labs-Dorothy', // Change voice
end_call_after_silence_ms: 15000,
});
Output
- Agent with custom LLM prompt and function calling
- Voice and behavior configuration
- Real-time function execution during calls
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Function not triggering | Prompt doesn't guide to function | Include function use in prompt |
| Voice quality issues | Wrong voice selection | Test different voices |
| Call ending too early | Short silence timeout | Increase endcallaftersilencems |
Resources
"Retell AI core workflow b \u2014 AI voice agent and phone call automation.
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
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
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
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 status and duration
- Recordings and transcripts retrieved
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Call fails immediately | Bad phone number format | Use E.164 format |
| No recording | Recording not enabled | Enable in agent settings |
| Concurrent limit | Too many active calls | Upgrade plan or queue calls |
Resources
Next Steps
Handle call events: retellai-webhooks-events
"Retell AI cost tuning \u2014 AI voice agent and phone call automation.
Retell AI Cost Tuning
Overview
Implementation patterns for Retell AI cost tuning — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 cost tuning
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI data handling \u2014 AI voice agent and phone call automation.
Retell AI Data Handling
Overview
Implementation patterns for Retell AI data handling — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 data handling
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI debug bundle \u2014 AI voice agent and phone call automation.
Retell AI Debug Bundle
Overview
Implementation patterns for Retell AI debug bundle — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 debug bundle
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI deploy integration \u2014 AI voice agent and phone call automation.
Retell AI Deploy Integration
Overview
Implementation patterns for Retell AI deploy integration — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 deploy integration
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI enterprise rbac \u2014 AI voice agent and phone call automation.
Retell AI Enterprise Rbac
Overview
Implementation patterns for Retell AI enterprise rbac — voice agent and telephony platform.
Prerequisites
- Completed
retellai-install-authsetup
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 enterprise rbac
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check RETELLAPIKEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 400 Bad Request | Invalid parameters | Check API documentation |
Resources
Next Steps
See related Retell AI skills for more workflows.
"Retell AI hello world \u2014 AI voice agent and phone call automation.
Retell AI Hello World
Overview
Create your first Retell AI voice agent and make a test phone call.
Prerequisites
- Completed
retellai-install-auth - A phone number registered in Retell AI Dashboard (or use web call for testing)
Instructions
Step 1: Create an LLM Configuration
import Retell from 'retell-sdk';
const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! });
// Create LLM configuration (what the agent says)
const llm = await retell.llm.create({
model: 'gpt-4o',
general_prompt: `You are a friendly receptionist for Acme Corp.
- Greet callers warmly
- Ask how you can help
- Take messages if needed
- Be concise and professional`,
});
console.log(`LLM created: ${llm.llm_id}`);
Step 2: Create a Voice Agent
const agent = await retell.agent.create({
response_engine: {
type: 'retell-llm',
llm_id: llm.llm_id,
},
voice_id: '11labs-Adrian', // Choose from available voices
agent_name: 'Acme Receptionist',
});
console.log(`Agent created: ${agent.agent_id}`);
Step 3: Make a Test Phone Call
// Outbound call (requires a registered phone number)
const call = await retell.call.createPhoneCall({
from_number: '+14155551234', // Your Retell number
to_number: '+14155555678', // Destination
override_agent_id: agent.agent_id,
});
console.log(`Call initiated: ${call.call_id}`);
Step 4: Or Test with Web Call
// Web call (no phone number needed — great for testing)
const webCall = await retell.call.createWebCall({
agent_id: agent.agent_id,
});
console.log(`Web call URL: ${webCall.call_id}`);
// Use retell-client-js-sdk to connect from browser
Step 5: Check Call Status
const callDetail = await retell.call.retrieve(call.call_id);
console.log(`Status: ${callDetail.call_status}`);
console.log(`Duration: ${callDetail.end_timestamp - callDetail.start_timestamp}ms`);
if (callDetail.transcript) {
console.log(`Transcript: ${callDetail.transcript}`);
}
Output
- LLM configuration with custom prompt
- Voice agent with selected voice
- Test call initiated (phone or web)
- Call status and transcript retrieved
Error Handling
| Error | Cause | Solution | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
422 Invalid voice_id |
Unknown voice | List available voices in Dashboard | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
400 No phone number |
Number not registered | Register number in Dashboard first | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Call not connecting | Destination unreachable | Try web call for test
"Retell AI incident runbook \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Incident RunbookOverviewImplementation patterns for Retell AI incident runbook — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI install auth \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Install AuthOverviewInstall the Retell AI SDK and configure API key authentication for building voice agents. Prerequisites
InstructionsStep 1: Install SDK
Step 2: Configure Environment
Step 3: Initialize Client (Node.js)
Step 4: Initialize Client (Python)
Output
Error Handling
ResourcesNext StepsCreate your first agent: "Retell AI known pitfalls \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Known PitfallsOverviewImplementation patterns for Retell AI known pitfalls — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI load scale \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Load ScaleOverviewImplementation patterns for Retell AI load scale — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI local dev loop \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Local Dev LoopOverviewImplementation patterns for Retell AI local dev loop — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI migration deep dive \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Migration Deep DiveOverviewImplementation patterns for Retell AI migration deep dive — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI multi env setup \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Multi Env SetupOverviewImplementation patterns for Retell AI multi env setup — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI observability \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI ObservabilityOverviewImplementation patterns for Retell AI observability — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI performance tuning \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Performance TuningOverviewImplementation patterns for Retell AI performance tuning — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI policy guardrails \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Policy GuardrailsOverviewImplementation patterns for Retell AI policy guardrails — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI prod checklist \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Prod ChecklistOverviewImplementation patterns for Retell AI prod checklist — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI rate limits \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Rate LimitsOverviewImplementation patterns for Retell AI rate limits — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI reference architecture \u2014 AI voice agent and phone call\.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Reference ArchitectureOverviewImplementation patterns for Retell AI reference architecture — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI reliability patterns \u2014 AI voice agent and phone call\.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Reliability PatternsOverviewImplementation patterns for Retell AI reliability patterns — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. 'Production-ready Retell AI SDK patterns for voice agent applications.
ReadWriteEdit
Retell AI SDK PatternsOverviewProduction-ready patterns for Retell AI: client singletons, typed agent configurations, call management, and error handling. Prerequisites
InstructionsStep 1: Singleton Client
Step 2: Typed Agent Configuration
Step 3: Call Manager with Retry
Step 4: Batch Call Campaign"Retell AI security basics \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Security BasicsOverviewImplementation patterns for Retell AI security basics — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI upgrade migration \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Upgrade MigrationOverviewImplementation patterns for Retell AI upgrade migration — voice agent and telephony platform. Prerequisites
InstructionsStep 1: SDK Pattern
Output
Error Handling
ResourcesNext StepsSee related Retell AI skills for more workflows. "Retell AI webhooks events \u2014 AI voice agent and phone call automation.
ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Retell AI Webhooks EventsOverviewHandle Retell AI webhook events for call lifecycle, transcripts, and function execution. Prerequisites
InstructionsStep 1: Configure Webhook URL
Step 2: Webhook Endpoint
Step 3: Handle Function Calls During Conversation
Output
Error Handling
ResourcesNext StepsCommon errors: Ready to use retellai-pack?Related Pluginssupabase-packComplete Supabase integration skill pack with 30 skills covering authentication, database, storage, realtime, edge functions, and production operations. Flagship+ tier vendor pack. /plugin install supabase-pack@claude-code-plugins-plus
vercel-packComplete Vercel integration skill pack with 30 skills covering deployments, edge functions, preview environments, performance optimization, and production operations. Flagship+ tier vendor pack. /plugin install vercel-pack@claude-code-plugins-plus
clay-packComplete Clay integration skill pack with 30 skills covering data enrichment, waterfall workflows, AI agents, and GTM automation. Flagship+ tier vendor pack. /plugin install clay-pack@claude-code-plugins-plus
cursor-packComplete Cursor integration skill pack with 30 skills covering AI code editing, composer workflows, codebase indexing, and productivity features. Flagship+ tier vendor pack. /plugin install cursor-pack@claude-code-plugins-plus
exa-packComplete Exa integration skill pack with 30 skills covering neural search, semantic retrieval, web search API, and AI-powered discovery. Flagship+ tier vendor pack. /plugin install exa-pack@claude-code-plugins-plus
firecrawl-packComplete Firecrawl integration skill pack with 30 skills covering web scraping, crawling, markdown conversion, and LLM-ready data extraction. Flagship+ tier vendor pack. /plugin install firecrawl-pack@claude-code-plugins-plus
Tags
retellairetellvoice-aiphone-agentsconversational-aicall-centerivr
|