# Send Elevenlabs Twilio Memory Bridge to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "elevenlabs-twilio-memory-bridge",
    "name": "Elevenlabs Twilio Memory Bridge",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/britrik/elevenlabs-twilio-memory-bridge",
    "canonicalUrl": "https://clawhub.ai/britrik/elevenlabs-twilio-memory-bridge",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/elevenlabs-twilio-memory-bridge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-twilio-memory-bridge",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "app.py",
      "manifest.json",
      "memory.py",
      "README.md",
      "requirements.txt",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "elevenlabs-twilio-memory-bridge",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T21:03:01.386Z",
      "expiresAt": "2026-05-09T21:03:01.386Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-twilio-memory-bridge",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-twilio-memory-bridge",
        "contentDisposition": "attachment; filename=\"elevenlabs-twilio-memory-bridge-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "elevenlabs-twilio-memory-bridge"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/elevenlabs-twilio-memory-bridge"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge",
    "downloadUrl": "https://openagent3.xyz/downloads/elevenlabs-twilio-memory-bridge",
    "agentUrl": "https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent.md"
  }
}
```
## Documentation

### elevenlabs-twilio-memory-bridge

Personalization webhook service for ElevenLabs + Twilio voice agents with persistent caller memory.

### What It Does

When a call arrives on your Twilio number, ElevenLabs' native integration triggers this webhook. The bridge looks up the caller's history, loads long-term memory facts and daily context notes, combines them with a customizable soul/personality template, and returns everything as a system prompt override so your agent greets each caller with full context.

### Architecture

No audio proxying - ElevenLabs and Twilio handle media directly
Webhook only - called once per inbound call to inject context
File-based persistence - JSON files in ./data/, zero external dependencies
OpenClaw compatible - works with any OpenAI-compatible LLM endpoint

### Endpoints

EndpointMethodPurpose/webhook/personalizePOSTElevenLabs calls this on inbound call/webhook/post-callPOSTOptional post-call cleanup/api/memory/{phone_hash}POSTAdd long-term fact about a caller/api/notesPOSTAdd global or caller-scoped context note/healthGETHealth check

### Setup

Clone repo, pip install -r requirements.txt
Copy .env.example to .env, fill in secrets
Configure ElevenLabs agent with Custom LLM pointing to your OpenClaw instance
Enable system prompt + first message overrides in agent Security settings
Add webhook URL https://your-domain/webhook/personalize in ElevenLabs settings
Import Twilio number in ElevenLabs dashboard
Run: uvicorn app:app --host 0.0.0.0 --port 8000

### Required Environment Variables

ELEVENLABS_API_KEY - scoped ElevenLabs key
ELEVENLABS_AGENT_ID - your agent ID
OPENCLAW_API_BASE_URL - your OpenClaw instance URL
PUBLIC_BASE_URL - publicly reachable URL of this service

### Security

All caller phone numbers are SHA-256 hashed before storage/logging
Secrets loaded exclusively from environment variables
Optional HMAC webhook signature verification
Safe for public GitHub repos, no secrets in source
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: britrik
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T21:03:01.386Z
- Expires at: 2026-05-09T21:03:01.386Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge)
- [Send to Agent page](https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent)
- [JSON manifest](https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/elevenlabs-twilio-memory-bridge/agent.md)
- [Download page](https://openagent3.xyz/downloads/elevenlabs-twilio-memory-bridge)