skills$openclaw/elevenlabs-phone-reminder-lite
daaab3.7kβ˜…

by daaab

elevenlabs-phone-reminder-lite – OpenClaw Skill

elevenlabs-phone-reminder-lite is an OpenClaw Skills integration for ai ml workflows. Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.

3.7k stars2.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameelevenlabs-phone-reminder-lite
descriptionBuild AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide. OpenClaw Skills integration.
ownerdaaab
repositorydaaab/elevenlabs-phone-reminder-lite
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @daaab/elevenlabs-phone-reminder-lite
last updatedFeb 7, 2026

Maintainer

daaab

daaab

Maintains elevenlabs-phone-reminder-lite in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
313 B
SKILL.md
4.4 KB
SKILL.md

name: elevenlabs-phone-reminder-lite description: Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide. version: 1.0.0 author: LittleLobster license: MIT

πŸ“ž 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)

  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

# 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

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

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!

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

ItemCost
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

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install elevenlabs-phone-reminder-lite?

Run openclaw add @daaab/elevenlabs-phone-reminder-lite in your terminal. This installs elevenlabs-phone-reminder-lite into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/daaab/elevenlabs-phone-reminder-lite. Review commits and README documentation before installing.