retellai-hello-world

Featured

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".

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 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 ```typescript 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 ```typescript 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 ```typescript // 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 ```typescript // Web call (no phone number...

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-security-basics

Retell AI security basics — 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 security basics", "retellai-security-basics", "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-deploy-integration

Retell AI deploy integration — 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 deploy integration", "retellai-deploy-integration", "voice agent".

2,266 Updated today
jeremylongshore
AI & Automation Solid

retellai-ci-integration

Retell AI ci integration — 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 ci integration", "retellai-ci-integration", "voice agent".

2,266 Updated today
jeremylongshore