twilio-cli-reference
Twilio CLI reference for managing Twilio resources from the terminal. Covers installation, credential profiles, phone number provisioning, sending SMS and email, webhook configuration, local development with a tunneling service, debugging with watch and logs, serverless deployment, and plugin ecosystem. Use when the developer asks to "just do it", "set this up", "run a command", mentions "CLI", "command line", or "terminal", or when an AI agent can execute a task directly instead of writing application code.
What this skill does
## Overview The Twilio CLI lets you manage Twilio resources, send messages, configure webhooks, and deploy serverless functions directly from the terminal. AI coding agents can use CLI commands to provision resources and test integrations without writing application code. **Install:** | Platform | Command | |----------|---------| | macOS | `brew tap twilio/brew && brew install twilio` | | Windows | `scoop bucket add twilio-scoop https://github.com/twilio/scoop-twilio-cli && scoop install twilio-cli` | | Linux (apt) | See `twilio-cli/getting-started/install` for repo setup, then `apt install twilio` | | npm | `npm install -g twilio-cli` | **Update:** `brew upgrade twilio` / `scoop update twilio-cli` / `npm install -g twilio-cli@latest` --- ## Authentication & Profiles ```bash # First-time login — creates a local API key stored as a profile twilio login # Named profiles for multiple accounts twilio profiles:create --account-sid ACxxx --auth-token xxx --profile staging # Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead. twilio profiles:list twilio profiles:use staging # Run a single command against a different profile twilio api:core:messages:list -p production # Subaccount access twilio api:core:messages:list --account-sid ACxxx_SUBACCOUNT ``` **Credential priority:** explicit `-p`/`--account-sid` flag > env vars (`TWILIO_ACCOUNT_SID`, `TWILIO_AUTH_TOKEN`) > active profile. --- ## Phone Numbers ```bash # Search available numbers (US local, area code 415) twilio api:core:available-phone-numbers:local:list --country-code US --area-code 415 # Purchase a number twilio api:core:incoming-phone-numbers:create --phone-number "+14155551234" # List owned numbers twilio phone-numbers:list # Set webhooks on a number twilio phone-numbers:update +14155551234 \ --sms-url "https://example.com/sms" \ --voice-url "https://example.com/voice" ``` --- ## Send SMS ```bash twilio api:core:messages:create \ --from "+14155551234" \ --to "+14155556789" \ --body "Your order has shipped." # List recent messages twilio api:core:messages:list --to "+14155556789" --limit 10 ``` --- ## Send Email (SendGrid) Requires `SENDGRID_API_KEY` environment variable. ```bash # Configure defaults twilio email:set --from "[email protected]" --subject "Default Subject" # Send email twilio email:send \ --to "[email protected]" \ --subject "Invoice attached" \ --text "Please find your invoice." \ --attachment ./invoice.pdf # Pipe output as email body ps aux | twilio email:send --to "[email protected]" --subject "Process list" ``` --- ## Webhook Development ```bash # Set webhook URLs on a number twilio phone-numbers:update +14155551234 --sms-url "https://your-tunnel-url.example.com/sms" # Emulate webhook events locally (requires plugin) twilio plugins:install @twilio-labs/plugin-webhook twilio webhook:invoke http://localhost:3000/sms --type sms ``` **Local development:** The CLI rejects `localhost` URLs directly. Tunneling services such as ngrok are not bundled with twilio-cli. install one separately, then set the public tunnel URL as your webhook. ** ngrok is NOT included in the CLI — install separately: npm install -g ngrok or via https://ngrok.com - Start tunnel: ngrok http 3000, then use the provided URL for webhook configuration --- ## Debugging & Monitoring ```bash # Debug logging on any command (logs to stderr) twilio api:core:messages:create --from +14155551234 --to +14155556789 --body "test" -l debug # Real-time monitoring (requires plugin) twilio plugins:install @twilio-labs/plugin-watch twilio watch # stream debugger alerts, calls, messages in real time # Output formatting twilio api:core:messages:list -o json # JSON output twilio api:core:messages:list -o tsv # tab-separated twilio api:core:messages:list --properties sid,status,direction # select columns twilio api:core:messages:list --limit 200 # override default 50-record cap ``` --- ## Serverless Deployment ```bash twilio plugins:install @twilio-labs/plugin-serverless # Create a new Functions project twilio serverless:init my-project --template blank cd my-project # Local development twilio serverless:start # serves functions at localhost:3000 # Deploy to Twilio twilio serverless:deploy ``` --- ## Plugins ```bash twilio plugins:install <package> twilio plugins:list twilio plugins:remove <package> ``` | Plugin | What it does | |--------|-------------| | `@twilio-labs/plugin-serverless` | Develop and deploy Twilio Functions and Assets | | `@twilio-labs/plugin-dev-phone` | Test SMS/Voice without a real phone | | `@twilio-labs/plugin-watch` | Real-time monitoring of debugger alerts, calls, messages | | `@twilio-labs/plugin-token` | Generate client-side SDK tokens (Voice, Chat, Video) | | `@twilio-labs/plugin-assets` | Upload static resources | | `@twilio-labs/plugin-webhook` | Emulate webhook events for local testing | | `@twilio-labs/plugin-flex` | Create, build, deploy Flex plugins | --- ## Regional & Edge Routing ```bash # Login to a specific region twilio login --region au1 --edge sydney # Set edge globally twilio config:set --edge=sydney # Or via env vars export TWILIO_REGION=au1 export TWILIO_EDGE=sydney ``` Supported: `au1`/`sydney`, `ie1`/`dublin`, `jp1`/`tokyo`. Each region uses a different Auth Token from your US1 credentials. Find yours in the Twilio Console under API keys & tokens, selecting your target region. --- ## Configuration ```bash twilio config:list # show all settings twilio config:set --edge=sydney # set default edge twilio config:set --require-profile-input # prompt before using active profile ``` Config stored at `~/.twilio-cli/config.json`. **Syntax notes:** - Commands use spaces by default, using colon also works: `twilio api core messages create` = `twilio api:core:messages:create` - `twilio [COMMAND] --help` for any command's options - Multi-line: use `\` for line continuation --- ## CANNOT - **Default list limit is 50 records** — always pass `--limit` for larger result sets. - **API timeout is 30 seconds** — long-running operations may fail silently. - **Cannot use localhost URLs for webhooks** — use a tunneling service, such as ngrok, installed separately. - **No autocomplete on Windows** — only bash/zsh supported. - ** ngrok is not bundled with twilio-cli**, install separately - **Cannot send Twilio Email (comms API) via CLI** — `twilio email:send` uses SendGrid only. For Twilio Email, use the REST API directly. --- ## Next Steps - **Account setup and API keys:** `twilio-account-setup`, `twilio-iam-auth-setup` - **Webhook architecture and signature validation:** `twilio-webhook-architecture` - **Debugging and observability:** `twilio-debugging-observability` - **Send SMS via API/SDK:** `twilio-send-message` - **SendGrid email setup:** `twilio-sendgrid-account-setup`
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.