elevenlabs-phone-reminder-lite

Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.

7 stars

Best use case

elevenlabs-phone-reminder-lite is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.

Teams using elevenlabs-phone-reminder-lite should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/elevenlabs-phone-reminder-lite/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/daaab/elevenlabs-phone-reminder-lite/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/elevenlabs-phone-reminder-lite/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How elevenlabs-phone-reminder-lite Compares

Feature / Agentelevenlabs-phone-reminder-liteStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 📞 AI Phone Reminder (Lite)

Build an AI assistant that can **call you on the phone** with natural voice conversations!

## 🎯 What You'll Build

- AI agent that makes outbound phone calls
- Natural conversation with voice cloning
- Multi-language support (including Chinese, Japanese, etc.)
- Real-time voice interaction (not pre-recorded!)

## 📋 Prerequisites

1. **ElevenLabs Account** (Creator plan or above)
   - Sign up: https://elevenlabs.io
   - Includes 250 minutes/month of Conversational AI

2. **Twilio Account**
   - Sign up: https://twilio.com
   - Need: Account SID, Auth Token, Phone Number (~$1.15/month for US)

## 🏗️ Architecture

```
┌─────────────┐     ┌─────────────┐     ┌─────────────┐
│   Your App  │────▶│ ElevenLabs  │────▶│   Twilio    │
│  (trigger)  │     │ Conv. AI    │     │   (call)    │
└─────────────┘     └─────────────┘     └─────────────┘
                           │                    │
                           ▼                    ▼
                    ┌─────────────┐     ┌─────────────┐
                    │  AI Agent   │     │  Phone      │
                    │  (voice)    │◀───▶│  Network    │
                    └─────────────┘     └─────────────┘
```

## 🚀 Quick Start

### Step 1: Get Your Credentials

```bash
# ElevenLabs
ELEVENLABS_API_KEY="your_api_key_here"

# Twilio (from console.twilio.com)
TWILIO_ACCOUNT_SID="ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
TWILIO_AUTH_TOKEN="your_auth_token_here"
```

### Step 2: Buy a Twilio Phone Number

1. Go to Twilio Console → Phone Numbers → Buy a Number
2. Select a US number with **Voice** capability (~$1.15/month)
3. Enable international calling if needed (Geo Permissions)

### Step 3: Create ElevenLabs Agent

```bash
curl -X POST "https://api.elevenlabs.io/v1/convai/agents/create" \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My Reminder Agent",
    "conversation_config": {
      "agent": {
        "prompt": {
          "prompt": "You are a helpful assistant making reminder calls. Be friendly and concise.",
          "llm": "gemini-2.0-flash-001"
        },
        "first_message": "Hi! This is your AI assistant calling with a reminder.",
        "language": "en"
      },
      "tts": {
        "model_id": "eleven_multilingual_v2",
        "voice_id": "YOUR_VOICE_ID"
      }
    }
  }'
```

### Step 4: Connect Twilio to ElevenLabs

```bash
curl -X POST "https://api.elevenlabs.io/v1/convai/phone-numbers/create" \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "phone_number": "+1XXXXXXXXXX",
    "provider": "twilio",
    "label": "My Reminder Line",
    "sid": "'$TWILIO_ACCOUNT_SID'",
    "token": "'$TWILIO_AUTH_TOKEN'"
  }'
```

### Step 5: Make a Call!

```bash
curl -X POST "https://api.elevenlabs.io/v1/convai/twilio/outbound-call" \
  -H "xi-api-key: $ELEVENLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "YOUR_AGENT_ID",
    "agent_phone_number_id": "YOUR_PHONE_NUMBER_ID",
    "to_number": "+1RECIPIENT_NUMBER"
  }'
```

## 💰 Cost Estimate

| Item | Cost |
|------|------|
| ElevenLabs Creator | $22/month (250 min included) |
| Twilio US Number | ~$1.15/month |
| Outbound call (US) | ~$0.013/min |
| Outbound call (international) | ~$0.15-0.30/min |
| **Per 1-min reminder call** | **~$0.11-0.40** |

## ⚠️ Limitations of Lite Version

- Basic setup guide only
- No optimized voice parameters
- No error handling examples
- No scheduling/automation
- Community support only

## 🚀 Want More?

**Premium Version** includes:
- ✅ Optimized voice parameters (tested for natural sound)
- ✅ Complete automation scripts
- ✅ Multi-language configurations
- ✅ Error handling & retry logic
- ✅ Cron job integration
- ✅ Priority support

Get it on **Virtuals ACP**: [Coming Soon]

---

Made with 🦞 by LittleLobster

Related Skills

phone-agent

7
from Demerzels-lab/elsamultiskillagent

Run a real-time AI phone agent using Twilio, Deepgram, and ElevenLabs. Handles incoming calls, transcribes audio, generates responses via LLM, and speaks back via streaming TTS. Use when user wants to: (1) Test voice AI capabilities, (2) Handle phone calls programmatically, (3) Build a conversational voice bot.

literature-search

7
from Demerzels-lab/elsamultiskillagent

Find and compile academic literature with citation lists across Google Scholar, PubMed, arXiv, IEEE, ACM, Semantic.

miranda-elevenlabs-speech

7
from Demerzels-lab/elsamultiskillagent

Text-to-Speech and Speech-to-Text using ElevenLabs AI.

apipick-telegram-phone-check

7
from Demerzels-lab/elsamultiskillagent

Check if a phone number is registered on Telegram using the apipick Telegram Checker API.

literature-manager

7
from Demerzels-lab/elsamultiskillagent

Search, download, convert, organize, and audit academic literature collections.

litellm

7
from Demerzels-lab/elsamultiskillagent

Call 100+ LLM providers through LiteLLM's unified API.

elevenlabs-cli

7
from Demerzels-lab/elsamultiskillagent

CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning.

socialite-guide

7
from Demerzels-lab/elsamultiskillagent

Expert guidance for generating "Socialite Style" (名媛风) images using AI art tools (Nano Banana Pro)

tweet-summarizer-lite

7
from Demerzels-lab/elsamultiskillagent

Fetch and summarize single tweets from Twitter/X.

api-credits-lite

7
from Demerzels-lab/elsamultiskillagent

Display API credit balances for 5 core providers (Anthropic, OpenAI, OpenRouter, Mistral, Groq) with video game.

aoi-triple-memory-lite

7
from Demerzels-lab/elsamultiskillagent

AOI Triple Memory (Lite) — file search + decision notes templates (no plugins).

aoi-hackathon-scout-lite

7
from Demerzels-lab/elsamultiskillagent

Public-safe hackathon source registry + filtering output (no crawling, no submissions).