Agent Telephony Layer Goes Open Source: Give Your AI a Phone Number

One developer got tired of wiring Twilio directly into OpenClaw and built an open-source telephony layer that gives AI agents a real phone number. It's a REST API and MCP server under the hood, so it's compatible with any agent framework — not just OpenClaw. People have already hooked it up to Hermes, LangChain agents, Claude Code, and Codex.
What it is
The project is a self-hostable service that abstracts away SMS and voice calling. Instead of dealing with auth headers and webhook config, you spin up the server with your own keys, and get a simple API to send texts and make calls. The author also mentions a hosted version for those who don't want to self-host.
Integration specifics
For OpenClaw users, there's a dedicated skill. The agent reads a setup document and configures itself — no manual setup. That skill likely wraps the REST API, so the agent can trigger calls/texts as part of its toolset.
Why this matters
Most agent frameworks handle text and web APIs well, but the telephony gap is real. This fills that corner. It's a straightforward solution: framework-agnostic, since it's just HTTP + MCP.
If you're building agents that need to reach people via phone — whether for notifications, voice interactions, or full conversations — this project removes the usual friction. The source is on GitHub, and the OP is curious about use cases. Worth a look if you've hit the same wall.
📖 Read the full source: r/openclaw
👀 See Also

Ink: A Deployment Platform Where Claude AI Agents Are the Primary Users
Ink (ml.ink) is a deployment platform designed for AI agents like Claude, featuring one tool call deployment, auto-detection of frameworks, and integrated services including compute, databases, DNS, secrets, domains, metrics, and logs.

Claude Proposal: Scope Memory & Hermetic Instance Isolation
A formal proposal to Anthropic from a power user: global/local memory scoping and hermetic instance isolation for Claude, enabling deterministic, auditable sessions.

Rival-Review: A Cross-Model Review Loop for AI Agent Plans
Rival-review is an MIT-licensed tool that uses a second AI model to audit plans from a primary AI coding agent before execution, catching issues like flawed rollback plans, security holes, and stale-state decisions.

LLM Circuit Finder: Duplicate 3 layers to boost reasoning without training
A new toolkit finds 'reasoning circuits' in transformer models - contiguous blocks of 3-4 layers that act as indivisible cognitive units. Duplicating these blocks (layers 12-14 in Devstral-24B) improves logical deduction from 0.22 to 0.76 on BBH benchmarks with no weight changes or training.