← 返回 Skills 市场
daaab

ElevenLabs Phone Reminder (Lite)

作者 Ju Chun Ko · GitHub ↗ · v1.1.1
cross-platform ⚠ suspicious
2237
总下载
4
收藏
2
当前安装
3
版本数
在 OpenClaw 中安装
/install elevenlabs-phone-reminder-lite
功能描述
Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide.
使用说明 (SKILL.md)

📞 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 — 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 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 → 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

安全使用建议
This guide appears to do what it says — wire ElevenLabs Conversational AI to Twilio — but be cautious before using it: - The SKILL.md demonstrates sending your Twilio Account SID and Auth Token to an ElevenLabs API endpoint. The Twilio Auth Token is effectively a full-control secret for your Twilio account. Only proceed if you trust ElevenLabs (or whichever service you send it to). - Prefer safer credential practices: use Twilio API Keys (not your main Auth Token), create a limited subaccount for the integration, or apply the least privilege possible and limit phone/calling quotas. If ElevenLabs supports token-scoped access or delegated credentials, use those instead. - The skill manifest does not declare these required env vars; that mismatch is a red flag for process/permissions. Confirm where and how you store/provide the credentials before following the curl examples. - Because this is instruction-only with no install, the risk comes from you copying the example commands and pasting secrets into cloud services. Review the ElevenLabs and Twilio consoles and documentation to ensure you understand what you’re sharing. If you want to proceed: create a throwaway/test Twilio subaccount or test credentials first, verify the ElevenLabs endpoint is legitimate (api.elevenlabs.io), and consider rotating any primary credentials used for testing.
功能分析
Type: OpenClaw Skill Name: elevenlabs-phone-reminder-lite Version: 1.1.1 The skill bundle is a legitimate instructional guide for setting up an AI phone reminder system using ElevenLabs and Twilio APIs. It contains standard API interaction examples (curl commands) and documentation consistent with its stated purpose. While it includes affiliate links and promotes a premium version of the service, there is no evidence of malicious intent, data exfiltration, or unauthorized execution logic in SKILL.md or _meta.json.
能力评估
Purpose & Capability
The name and description promise an ElevenLabs + Twilio phone reminder and the SKILL.md only contains instructions to create an ElevenLabs conversational agent and wire a Twilio number. The requested capabilities (outbound calls, TTS, conversational agent) match the stated purpose.
Instruction Scope
The instructions explicitly show curl examples that use ELEVENLABS_API_KEY, TWILIO_ACCOUNT_SID, and TWILIO_AUTH_TOKEN. The manifest, however, declares no required env vars. The SKILL.md instructs the user to POST Twilio SID/Auth Token to an ElevenLabs endpoint — which is expected for this integration but is sensitive (the Twilio Auth Token grants full API access). The guide does not recommend safer alternatives (e.g., Twilio API Keys, subaccounts, or scoped credentials) or warn about the risks of sharing the Auth Token.
Install Mechanism
This is an instruction-only skill with no install spec and no code files. Nothing is written to disk by the skill itself, so there is no installation-time code execution risk from this package.
Credentials
Although the guide requires sensitive credentials (ElevenLabs API key and Twilio account credentials), the registry metadata lists no required environment variables or primary credential. The omission is a mismatch: sensitive tokens are necessary for the functionality but are not declared in the manifest, which could mislead users or automated permission gating.
Persistence & Privilege
The skill does not request always:true, does not attempt to modify other skills, and has no install behavior. It does not ask for persistent platform privileges in the manifest.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install elevenlabs-phone-reminder-lite
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /elevenlabs-phone-reminder-lite 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
Add ElevenLabs affiliate links, improve signup CTAs for conversion
v1.1.0
Add direct Virtuals ACP link for premium version (elevenlabs_phone_reminder $5)
v1.0.0
Initial release - Free starter guide for AI phone reminders
元数据
Slug elevenlabs-phone-reminder-lite
版本 1.1.1
许可证
累计安装 4
当前安装数 2
历史版本数 3
常见问题

ElevenLabs Phone Reminder (Lite) 是什么?

Build AI phone call reminders with ElevenLabs Conversational AI + Twilio. Free starter guide. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2237 次。

如何安装 ElevenLabs Phone Reminder (Lite)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install elevenlabs-phone-reminder-lite」即可一键安装,无需额外配置。

ElevenLabs Phone Reminder (Lite) 是免费的吗?

是的,ElevenLabs Phone Reminder (Lite) 完全免费(开源免费),可自由下载、安装和使用。

ElevenLabs Phone Reminder (Lite) 支持哪些平台?

ElevenLabs Phone Reminder (Lite) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ElevenLabs Phone Reminder (Lite)?

由 Ju Chun Ko(@daaab)开发并维护,当前版本 v1.1.1。

💬 留言讨论