Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install elevenlabs-phone-reminder-lite或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install elevenlabs-phone-reminder-lite⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/elevenlabs-phone-reminder-lite/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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 ---
Build an AI assistant that can call you on the phone with natural voice conversations!
- 👉 Sign up for ElevenLabs — free tier includes 10,000 characters/month! - Paid plans include 250+ minutes/month of Conversational AI
- Sign up: https://twilio.com - Need: Account SID, Auth Token, Phone Number (~$1.15/month for US)
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Your App │────▶│ ElevenLabs │────▶│ Twilio │
│ (trigger) │ │ Conv. AI │ │ (call) │
└─────────────┘ └─────────────┘ └─────────────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ AI Agent │ │ Phone │
│ (voice) │◀───▶│ Network │
└─────────────┘ └─────────────┘
# ElevenLabs
ELEVENLABS_API_KEY="your_api_key_here"
# Twilio (from console.twilio.com)
TWILIO_ACCOUNT_SID="ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
TWILIO_AUTH_TOKEN="your_auth_token_here"
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"
}
}
}'
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'"
}'
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"
}'
> 💡 Tip: Start free with ElevenLabs 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 |
Premium Version includes:
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
安装 ElevenLabs Phone Reminder (Lite) 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/elevenlabs-phone-reminder-lite/ 目录(个人级,所有项目可用),或 .claude/skills/elevenlabs-phone-reminder-lite/(项目级)。重启 AI 客户端后,用 /elevenlabs-phone-reminder-lite 主动调用,或让 AI 根据上下文自动发现并使用。
ElevenLabs Phone Reminder (Lite) 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
ElevenLabs Phone Reminder (Lite) 可免费安装使用。请查阅仓库了解许可证信息。
Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.
ElevenLabs Phone Reminder (Lite) 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。