Skip to contentSkip to navigationSkip to topbar
Page toolsOn this page
Looking for more inspiration?Visit the

Twilio Skills for AI coding agents


(new)

Public Beta

Twilio MCP and Twilio Skills are available as Public Beta products, and the information contained in this document is subject to change. This means that some features are not yet implemented and others may be changed before the products are declared as Generally Available. Public Beta products are not covered by the Twilio Support Terms or Twilio Service Level Agreement.

Twilio Skills provide structured packages of product knowledge that help you use AI coding agents to build with Twilio.

When you install Twilio Skills, your agent gains the following abilities:

  • Choose the right product for your use case before writing code.
  • Follow proven architecture patterns across multi-product implementations.
  • Avoid common mistakes with explicit constraints and edge-case documentation.
  • Stay current with products released after your model's training data cutoff.

Skills use a progressive disclosure architecture: your agent sees lightweight metadata for all skills at startup, loads the full skill only when your task matches, and can drill into detailed reference material on demand. This architecture keeps your context lean while providing depth exactly when needed.


Where to find Twilio Skills

where-to-find-twilio-skills page anchor

Twilio Skills are published at the Twilio AI repository on GitHub(link takes you to an external page) and registered in the Claude Connectors page for Twilio(link takes you to an external page).


Claude

claude page anchor

Claude Plugins

claude-plugins page anchor

Twilio Skills are available as a Claude plugin(link takes you to an external page). To install in Claude Code:

claude plugin install twilio-developer-kit@twilio

You can also install Twilio Skills from within a Claude Code session:

1
/plugin marketplace add https://github.com/twilio/ai
2
/plugin install twilio-developer-kit@twilio
3
/reload-plugins

Skills activate automatically when your prompt matches a covered use case. You can also invoke a specific skill directly:

1
/twilio-verify-send-otp
2
/twilio-sms-send-message
3
/twilio-sendgrid-email-send

The Claude plugin also includes MCP server access. For MCP-only installation, see the MCP server documentation.

Twilio Skills are available in the Cursor marketplace page for Twilio(link takes you to an external page). Note that the marketplace listing shows "Twilio" but the plugin ID is twilio-developer-kit. To install, open Composer (Command+I or Control+I):

/add-plugin twilio-developer-kit

This installs Twilio Skills and the MCP server, making them available in your current project. Type /skills in Composer to browse available Twilio Skills.

Open Plugins in the Codex app, search for "Twilio developer kit", and install the plugin.

You can also install Twilio Skills in Codex CLI by running the following command to open the plugins list:

/plugins

Search for "Twilio developer kit" and install.

For all platforms following the Agent Skills standard(link takes you to an external page), install Twilio Skills by copying the skills directory:

1
git clone https://github.com/twilio/ai.git
2
cp -r ai/skills/ ~/.agents/skills/

User-level installation (~/.agents/skills/) makes skills available across all your projects. Compatible tools include GitHub Copilot, Gemini CLI, JetBrains Junie, and 30+ other platforms.


Get your Twilio environment configured correctly from the start.

SkillWhat it covers
twilio-account-setupAccount structure, project organization, API credentials.
twilio-iam-auth-setupAPI keys, auth tokens, restricted keys, credential rotation.
twilio-numbers-sendersNumber types, sender selection, regulatory bundles.
twilio-webhook-architectureStatusCallbacks, event webhooks, ngrok for local dev.

Qualify your use case and get product recommendations before you build.

SkillWhat it covers
twilio-identity-verification-advisorOTP vs. document verification vs. silent network auth.
twilio-marketing-promotions-advisorCampaign architecture across SMS, WhatsApp, email, RCS.
twilio-notifications-alerts-advisorTransactional notifications with urgency-based channel routing.
twilio-voice-ai-agent-advisorAI voice agent architecture (Conversation Relay, Memory, Intelligence).

Deep implementation guidance for individual Twilio products.

SkillWhat it covers
twilio-sms-send-messageSMS/MMS through Messages API, encoding, media, error handling.
twilio-whatsapp-send-messageWhatsApp Business API, templates, 24-hour service window.
twilio-verify-send-otpOTP delivery, channel selection, Fraud Guard, silent network auth.
twilio-sendgrid-email-sendTransactional/bulk email, dynamic templates, scheduled sends.

Operational patterns that prevent production failures.

SkillWhat it covers
twilio-security-hardeningRequest validation, credential management, webhook signatures.
twilio-compliance-trafficTCPA, opt-in/opt-out, quiet hours, consent management.
twilio-compliance-onboardingA2P 10DLC registration, toll-free verification, STIR/SHAKEN.

Twilio also provides a Model Context Protocol (MCP) server for API documentation access. Skills and MCP are complementary:

SkillsMCP Server
Answers"Which product should I use?""What parameters does this endpoint accept?"
SourceCurated procedural knowledgeLive OpenAPI specs and documentation
When it loadsOn task match (progressive disclosure)On tool call
UpdatesWith repo releasesAlways current (server-side)

Install both for the best experience. Skills guide your agent to the right approach; MCP provides the precise API details to implement it.

MCP Server URL: https://mcp.twilio.com/docs


Skills follow the open Agent Skills standard(link takes you to an external page):

  1. Metadata scan — At session start, your agent reads skill names and descriptions (a few tokens each)
  2. Match — When your prompt matches a skill's description, the full skill loads into context
  3. Progressive detail — Skills reference other skills for deeper topics, loading only what's needed
  4. Explicit boundaries — Every skill includes a CANNOT section documenting what it cannot do, reducing hallucination

Each skill is a single SKILL.md file with YAML frontmatter:

1
---
2
name: twilio-verify-send-otp
3
description: >
4
Send and check one-time passwords via SMS, Voice, email,
5
WhatsApp, or Silent Network Auth using Twilio Verify.
6
---

The format is compatible with Claude Code, Cursor, Codex, GitHub Copilot, Gemini CLI, JetBrains Junie, and any tool supporting the Agent Skills standard.


We'd love to hear how Twilio Skills are working for you and what products or use cases you'd like covered next.