← All skills
Tencent SkillHub Β· Developer Tools

ElevenLabs Phone Reminder (Lite)

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

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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

ElevenLabs Account (Creator plan or above) πŸ‘‰ Sign up for ElevenLabs β€” free tier includes 10,000 characters/month! Paid plans include 250+ minutes/month of Conversational AI 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 β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

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

Go to Twilio Console β†’ Phone Numbers β†’ Buy a Number Select a US number with Voice capability (~$1.15/month) 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 to test voice quality before upgrading! ItemCostElevenLabs Creator$22/month (250 min included)Twilio US Number~$1.15/monthOutbound call (US)~$0.013/minOutbound call (international)~$0.15-0.30/minPer 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 β†’ 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 Β· littl3lobst3r.base.eth

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc