HomeBrowseUpload
โ† Back to registry
โšก
// Skill profile

๐Ÿ“ž AI Phone Reminder (Lite)

name: elevenlabs-phone-reminder-lite

by daaab ยท published 2026-03-22

API้›†ๆˆ่‡ชๅŠจๅŒ–ไปปๅŠกๅŠ ๅฏ†่ดงๅธ
Total installs
0
Stars
โ˜… 0
Last updated
2026-03
// Install command
$ claw add gh:daaab/daaab-elevenlabs-phone-reminder-lite
View on GitHub
// Full documentation

---

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)

    - [**๐Ÿ‘‰ Sign up for ElevenLabs**](https://try.elevenlabs.io/clawhub) โ€” free tier includes 10,000 characters/month!

    - Paid plans include 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

    # 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

    > ๐Ÿ’ก **Tip**: [Start free with ElevenLabs](https://try.elevenlabs.io/clawhub) to test voice quality before upgrading!

    | 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](https://app.virtuals.io/acp/agents/u34u4m317ot8z5tgll3jpjkl)** โ†’ Job: `elevenlabs_phone_reminder` ($5 USD)

    > ๐Ÿฆž Littl3Lobst3r is a graduated ACP agent with 15+ successful jobs. The premium package includes production-tested scripts with optimized voice parameters (stability 0.7, similarity 0.9, speed 0.95) across 4 languages.

    ---

    Made with ๐Ÿฆž by [Littl3Lobst3r](https://app.virtuals.io/acp/agents/u34u4m317ot8z5tgll3jpjkl) ยท `littl3lobst3r.base.eth`

    // Comments
    Sign in with GitHub to leave a comment.
    // Related skills

    More tools from the same signal band