TopRank Skills

Home / Claw Skills / Autres / phone-voice
Official OpenClaw rules 15%

phone-voice

Connect ElevenLabs Agents to your OpenClaw via phone with Twilio. Includes caller ID auth, voice PIN security, call screening, memory injection, and cost tracking.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 phone-voice 技能。 若已安装,则直接安装 phone-voice 技能。

Overview

Skill Key
cortexuvula/phone-voice
Author
Fred (@FredMolty)
Source Repo
openclaw/skills
Version
2.0.0
Source Path
skills/cortexuvula/phone-voice
Latest Commit SHA
a81aa96c7b8d0b8733a7bba18ec886e86bc02164

Extracted Content

SKILL.md excerpt

# Phone Voice Integration

Turn your OpenClaw into a phone-callable assistant with ElevenLabs Agents + Twilio.

**What you get:**
- 📞 Call your bot from any phone
- 🔐 Caller ID authentication + voice PIN security
- 🛡️ Call screening (whitelist-based)
- 🧠 Full memory context (loads MEMORY.md, USER.md)
- 💰 Cost tracking per call
- 📝 Call transcripts with summaries
- ⏱️ Rate limiting
- 🌐 Permanent tunnel (Cloudflare) or temporary (ngrok)

## Architecture

```
Phone → Twilio → ElevenLabs Agent → Your Bridge → Anthropic Claude → OpenClaw Tools
                                          ↓
                                    Memory Context
                                    (MEMORY.md, USER.md)
```

**Flow:**
1. Caller dials your Twilio number
2. Twilio routes to ElevenLabs Agent
3. Agent sends chat completions to your bridge (mimics OpenAI API)
4. Bridge translates to Anthropic, injects context from memory files
5. Claude response → ElevenLabs TTS → caller hears it

## Prerequisites

- OpenClaw installed and running
- ElevenLabs account + API key
- Twilio account + phone number
- Anthropic API key
- Cloudflare tunnel **or** ngrok (for exposing localhost)

## Setup

### 1. Enable Chat Completions in OpenClaw

Not needed for this skill — the bridge bypasses OpenClaw and calls Claude directly. This gives you more control over memory injection and cost tracking.

### 2. Create the Bridge Server

The bridge is a FastAPI server that:
- Accepts OpenAI-compatible `/v1/chat/completions` requests from ElevenLabs
- Injects memory context (MEMORY.md, USER.md, live data)
- Calls Anthropic Claude API
- Streams responses back in OpenAI format
- Logs costs and transcripts

**Key files:**
- `server.py` — FastAPI app with /v1/chat/completions endpoint
- `fred_prompt.py` — System prompt builder (loads memory files)
- `.env` — Secrets (API keys, tokens, whitelist)
- `contacts.json` — Caller whitelist for screening

### 3. Set Up Cloudflare Tunnel (Recommended)

Permanent, secure altern...

Related Claw Skills