[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-cli-reference":3,"mdc--1wnwpg-key":36,"related-repo-openai-twilio-cli-reference":2427,"related-org-openai-twilio-cli-reference":2550},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"twilio-cli-reference","manage Twilio resources via CLI","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.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Webhooks","webhooks",{"name":23,"slug":24,"type":15},"Twilio","twilio",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-cli-reference","---\nname: twilio-cli-reference\ndescription: >\n  Twilio CLI reference for managing Twilio resources from the terminal.\n  Covers installation, credential profiles, phone number provisioning,\n  sending SMS and email, webhook configuration, local development with\n  a tunneling service, debugging with watch and logs, serverless deployment, and\n  plugin ecosystem. Use when the developer asks to \"just do it\",\n  \"set this up\", \"run a command\", mentions \"CLI\", \"command line\", or\n  \"terminal\", or when an AI agent can execute a task directly instead\n  of writing application code.\n---\n\n## Overview\n\nThe 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.\n\n**Install:**\n\n| Platform | Command |\n|----------|---------|\n| macOS | `brew tap twilio\u002Fbrew && brew install twilio` |\n| Windows | `scoop bucket add twilio-scoop https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fscoop-twilio-cli && scoop install twilio-cli` |\n| Linux (apt) | See `twilio-cli\u002Fgetting-started\u002Finstall` for repo setup, then `apt install twilio` |\n| npm | `npm install -g twilio-cli` |\n\n**Update:** `brew upgrade twilio` \u002F `scoop update twilio-cli` \u002F `npm install -g twilio-cli@latest`\n\n---\n\n## Authentication & Profiles\n\n```bash\n# First-time login — creates a local API key stored as a profile\ntwilio login\n\n# Named profiles for multiple accounts\ntwilio profiles:create --account-sid ACxxx --auth-token xxx --profile staging\n# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\ntwilio profiles:list\ntwilio profiles:use staging\n\n# Run a single command against a different profile\ntwilio api:core:messages:list -p production\n\n# Subaccount access\ntwilio api:core:messages:list --account-sid ACxxx_SUBACCOUNT\n```\n\n**Credential priority:** explicit `-p`\u002F`--account-sid` flag > env vars (`TWILIO_ACCOUNT_SID`, `TWILIO_AUTH_TOKEN`) > active profile.\n\n---\n\n## Phone Numbers\n\n```bash\n# Search available numbers (US local, area code 415)\ntwilio api:core:available-phone-numbers:local:list --country-code US --area-code 415\n\n# Purchase a number\ntwilio api:core:incoming-phone-numbers:create --phone-number \"+14155551234\"\n\n# List owned numbers\ntwilio phone-numbers:list\n\n# Set webhooks on a number\ntwilio phone-numbers:update +14155551234 \\\n  --sms-url \"https:\u002F\u002Fexample.com\u002Fsms\" \\\n  --voice-url \"https:\u002F\u002Fexample.com\u002Fvoice\"\n```\n\n---\n\n## Send SMS\n\n```bash\ntwilio api:core:messages:create \\\n  --from \"+14155551234\" \\\n  --to \"+14155556789\" \\\n  --body \"Your order has shipped.\"\n\n# List recent messages\ntwilio api:core:messages:list --to \"+14155556789\" --limit 10\n```\n\n---\n\n## Send Email (SendGrid)\n\nRequires `SENDGRID_API_KEY` environment variable.\n\n```bash\n# Configure defaults\ntwilio email:set --from \"noreply@example.com\" --subject \"Default Subject\"\n\n# Send email\ntwilio email:send \\\n  --to \"user@example.com\" \\\n  --subject \"Invoice attached\" \\\n  --text \"Please find your invoice.\" \\\n  --attachment .\u002Finvoice.pdf\n\n# Pipe output as email body\nps aux | twilio email:send --to \"ops@example.com\" --subject \"Process list\"\n```\n\n---\n\n## Webhook Development\n\n```bash\n# Set webhook URLs on a number\ntwilio phone-numbers:update +14155551234 --sms-url \"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms\"\n\n# Emulate webhook events locally (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-webhook\ntwilio webhook:invoke http:\u002F\u002Flocalhost:3000\u002Fsms --type sms\n```\n\n**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. \n\n** ngrok is NOT included in the CLI — install separately: npm install -g ngrok\n  or via https:\u002F\u002Fngrok.com                                                      \n  - Start tunnel: ngrok http 3000, then use the provided URL for webhook        \n  configuration   \n---\n\n## Debugging & Monitoring\n\n```bash\n# Debug logging on any command (logs to stderr)\ntwilio api:core:messages:create --from +14155551234 --to +14155556789 --body \"test\" -l debug\n\n# Real-time monitoring (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-watch\ntwilio watch                    # stream debugger alerts, calls, messages in real time\n\n# Output formatting\ntwilio api:core:messages:list -o json             # JSON output\ntwilio api:core:messages:list -o tsv              # tab-separated\ntwilio api:core:messages:list --properties sid,status,direction  # select columns\ntwilio api:core:messages:list --limit 200         # override default 50-record cap\n```\n\n---\n\n## Serverless Deployment\n\n```bash\ntwilio plugins:install @twilio-labs\u002Fplugin-serverless\n\n# Create a new Functions project\ntwilio serverless:init my-project --template blank\ncd my-project\n\n# Local development\ntwilio serverless:start          # serves functions at localhost:3000\n\n# Deploy to Twilio\ntwilio serverless:deploy\n```\n\n---\n\n## Plugins\n\n```bash\ntwilio plugins:install \u003Cpackage>\ntwilio plugins:list\ntwilio plugins:remove \u003Cpackage>\n```\n\n| Plugin | What it does |\n|--------|-------------|\n| `@twilio-labs\u002Fplugin-serverless` | Develop and deploy Twilio Functions and Assets |\n| `@twilio-labs\u002Fplugin-dev-phone` | Test SMS\u002FVoice without a real phone |\n| `@twilio-labs\u002Fplugin-watch` | Real-time monitoring of debugger alerts, calls, messages |\n| `@twilio-labs\u002Fplugin-token` | Generate client-side SDK tokens (Voice, Chat, Video) |\n| `@twilio-labs\u002Fplugin-assets` | Upload static resources |\n| `@twilio-labs\u002Fplugin-webhook` | Emulate webhook events for local testing |\n| `@twilio-labs\u002Fplugin-flex` | Create, build, deploy Flex plugins |\n\n---\n\n## Regional & Edge Routing\n\n```bash\n# Login to a specific region\ntwilio login --region au1 --edge sydney\n\n# Set edge globally\ntwilio config:set --edge=sydney\n\n# Or via env vars\nexport TWILIO_REGION=au1\nexport TWILIO_EDGE=sydney\n```\n\nSupported: `au1`\u002F`sydney`, `ie1`\u002F`dublin`, `jp1`\u002F`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.\n\n---\n\n## Configuration\n\n```bash\ntwilio config:list                          # show all settings\ntwilio config:set --edge=sydney             # set default edge\ntwilio config:set --require-profile-input   # prompt before using active profile\n```\n\nConfig stored at `~\u002F.twilio-cli\u002Fconfig.json`.\n\n**Syntax notes:**\n- Commands use spaces by default, using colon also works: `twilio api core messages create` = `twilio api:core:messages:create`\n- `twilio [COMMAND] --help` for any command's options\n- Multi-line: use `\\` for line continuation\n\n---\n\n## CANNOT\n\n- **Default list limit is 50 records** — always pass `--limit` for larger result sets.\n- **API timeout is 30 seconds** — long-running operations may fail silently.\n- **Cannot use localhost URLs for webhooks** — use a tunneling service, such as ngrok, installed separately.\n- **No autocomplete on Windows** — only bash\u002Fzsh supported.\n- ** ngrok is not bundled with twilio-cli**, install separately\n- **Cannot send Twilio Email (comms API) via CLI** — `twilio email:send` uses SendGrid only. For Twilio Email, use the REST API directly.\n\n---\n\n## Next Steps\n\n- **Account setup and API keys:** `twilio-account-setup`, `twilio-iam-auth-setup`\n- **Webhook architecture and signature validation:** `twilio-webhook-architecture`\n- **Debugging and observability:** `twilio-debugging-observability`\n- **Send SMS via API\u002FSDK:** `twilio-send-message`\n- **SendGrid email setup:** `twilio-sendgrid-account-setup`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,65,172,203,207,213,430,472,475,481,689,692,698,844,847,853,866,1123,1126,1132,1239,1257,1270,1286,1289,1295,1531,1534,1540,1678,1681,1687,1765,1906,1909,1915,2054,2102,2105,2111,2177,2190,2198,2244,2247,2253,2327,2330,2336,2421],{"type":42,"tag":43,"props":44,"children":46},"element","h2",{"id":45},"overview",[47],{"type":48,"value":49},"text","Overview",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"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.",{"type":42,"tag":51,"props":57,"children":58},{},[59],{"type":42,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":48,"value":64},"Install:",{"type":42,"tag":66,"props":67,"children":68},"table",{},[69,88],{"type":42,"tag":70,"props":71,"children":72},"thead",{},[73],{"type":42,"tag":74,"props":75,"children":76},"tr",{},[77,83],{"type":42,"tag":78,"props":79,"children":80},"th",{},[81],{"type":48,"value":82},"Platform",{"type":42,"tag":78,"props":84,"children":85},{},[86],{"type":48,"value":87},"Command",{"type":42,"tag":89,"props":90,"children":91},"tbody",{},[92,111,128,155],{"type":42,"tag":74,"props":93,"children":94},{},[95,101],{"type":42,"tag":96,"props":97,"children":98},"td",{},[99],{"type":48,"value":100},"macOS",{"type":42,"tag":96,"props":102,"children":103},{},[104],{"type":42,"tag":105,"props":106,"children":108},"code",{"className":107},[],[109],{"type":48,"value":110},"brew tap twilio\u002Fbrew && brew install twilio",{"type":42,"tag":74,"props":112,"children":113},{},[114,119],{"type":42,"tag":96,"props":115,"children":116},{},[117],{"type":48,"value":118},"Windows",{"type":42,"tag":96,"props":120,"children":121},{},[122],{"type":42,"tag":105,"props":123,"children":125},{"className":124},[],[126],{"type":48,"value":127},"scoop bucket add twilio-scoop https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fscoop-twilio-cli && scoop install twilio-cli",{"type":42,"tag":74,"props":129,"children":130},{},[131,136],{"type":42,"tag":96,"props":132,"children":133},{},[134],{"type":48,"value":135},"Linux (apt)",{"type":42,"tag":96,"props":137,"children":138},{},[139,141,147,149],{"type":48,"value":140},"See ",{"type":42,"tag":105,"props":142,"children":144},{"className":143},[],[145],{"type":48,"value":146},"twilio-cli\u002Fgetting-started\u002Finstall",{"type":48,"value":148}," for repo setup, then ",{"type":42,"tag":105,"props":150,"children":152},{"className":151},[],[153],{"type":48,"value":154},"apt install twilio",{"type":42,"tag":74,"props":156,"children":157},{},[158,163],{"type":42,"tag":96,"props":159,"children":160},{},[161],{"type":48,"value":162},"npm",{"type":42,"tag":96,"props":164,"children":165},{},[166],{"type":42,"tag":105,"props":167,"children":169},{"className":168},[],[170],{"type":48,"value":171},"npm install -g twilio-cli",{"type":42,"tag":51,"props":173,"children":174},{},[175,180,182,188,190,196,197],{"type":42,"tag":60,"props":176,"children":177},{},[178],{"type":48,"value":179},"Update:",{"type":48,"value":181}," ",{"type":42,"tag":105,"props":183,"children":185},{"className":184},[],[186],{"type":48,"value":187},"brew upgrade twilio",{"type":48,"value":189}," \u002F ",{"type":42,"tag":105,"props":191,"children":193},{"className":192},[],[194],{"type":48,"value":195},"scoop update twilio-cli",{"type":48,"value":189},{"type":42,"tag":105,"props":198,"children":200},{"className":199},[],[201],{"type":48,"value":202},"npm install -g twilio-cli@latest",{"type":42,"tag":204,"props":205,"children":206},"hr",{},[],{"type":42,"tag":43,"props":208,"children":210},{"id":209},"authentication-profiles",[211],{"type":48,"value":212},"Authentication & Profiles",{"type":42,"tag":214,"props":215,"children":220},"pre",{"className":216,"code":217,"language":218,"meta":219,"style":219},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# First-time login — creates a local API key stored as a profile\ntwilio login\n\n# Named profiles for multiple accounts\ntwilio profiles:create --account-sid ACxxx --auth-token xxx --profile staging\n# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\ntwilio profiles:list\ntwilio profiles:use staging\n\n# Run a single command against a different profile\ntwilio api:core:messages:list -p production\n\n# Subaccount access\ntwilio api:core:messages:list --account-sid ACxxx_SUBACCOUNT\n","bash","",[221],{"type":42,"tag":105,"props":222,"children":223},{"__ignoreMap":219},[224,236,251,261,270,313,322,335,352,360,369,392,400,409],{"type":42,"tag":225,"props":226,"children":229},"span",{"class":227,"line":228},"line",1,[230],{"type":42,"tag":225,"props":231,"children":233},{"style":232},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[234],{"type":48,"value":235},"# First-time login — creates a local API key stored as a profile\n",{"type":42,"tag":225,"props":237,"children":239},{"class":227,"line":238},2,[240,245],{"type":42,"tag":225,"props":241,"children":243},{"style":242},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[244],{"type":48,"value":24},{"type":42,"tag":225,"props":246,"children":248},{"style":247},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[249],{"type":48,"value":250}," login\n",{"type":42,"tag":225,"props":252,"children":254},{"class":227,"line":253},3,[255],{"type":42,"tag":225,"props":256,"children":258},{"emptyLinePlaceholder":257},true,[259],{"type":48,"value":260},"\n",{"type":42,"tag":225,"props":262,"children":264},{"class":227,"line":263},4,[265],{"type":42,"tag":225,"props":266,"children":267},{"style":232},[268],{"type":48,"value":269},"# Named profiles for multiple accounts\n",{"type":42,"tag":225,"props":271,"children":273},{"class":227,"line":272},5,[274,278,283,288,293,298,303,308],{"type":42,"tag":225,"props":275,"children":276},{"style":242},[277],{"type":48,"value":24},{"type":42,"tag":225,"props":279,"children":280},{"style":247},[281],{"type":48,"value":282}," profiles:create",{"type":42,"tag":225,"props":284,"children":285},{"style":247},[286],{"type":48,"value":287}," --account-sid",{"type":42,"tag":225,"props":289,"children":290},{"style":247},[291],{"type":48,"value":292}," ACxxx",{"type":42,"tag":225,"props":294,"children":295},{"style":247},[296],{"type":48,"value":297}," --auth-token",{"type":42,"tag":225,"props":299,"children":300},{"style":247},[301],{"type":48,"value":302}," xxx",{"type":42,"tag":225,"props":304,"children":305},{"style":247},[306],{"type":48,"value":307}," --profile",{"type":42,"tag":225,"props":309,"children":310},{"style":247},[311],{"type":48,"value":312}," staging\n",{"type":42,"tag":225,"props":314,"children":316},{"class":227,"line":315},6,[317],{"type":42,"tag":225,"props":318,"children":319},{"style":232},[320],{"type":48,"value":321},"# Avoid --auth-token as a plain argument — it will be stored in shell history. Use TWILIO_AUTH_TOKEN env var instead.\n",{"type":42,"tag":225,"props":323,"children":325},{"class":227,"line":324},7,[326,330],{"type":42,"tag":225,"props":327,"children":328},{"style":242},[329],{"type":48,"value":24},{"type":42,"tag":225,"props":331,"children":332},{"style":247},[333],{"type":48,"value":334}," profiles:list\n",{"type":42,"tag":225,"props":336,"children":338},{"class":227,"line":337},8,[339,343,348],{"type":42,"tag":225,"props":340,"children":341},{"style":242},[342],{"type":48,"value":24},{"type":42,"tag":225,"props":344,"children":345},{"style":247},[346],{"type":48,"value":347}," profiles:use",{"type":42,"tag":225,"props":349,"children":350},{"style":247},[351],{"type":48,"value":312},{"type":42,"tag":225,"props":353,"children":355},{"class":227,"line":354},9,[356],{"type":42,"tag":225,"props":357,"children":358},{"emptyLinePlaceholder":257},[359],{"type":48,"value":260},{"type":42,"tag":225,"props":361,"children":363},{"class":227,"line":362},10,[364],{"type":42,"tag":225,"props":365,"children":366},{"style":232},[367],{"type":48,"value":368},"# Run a single command against a different profile\n",{"type":42,"tag":225,"props":370,"children":372},{"class":227,"line":371},11,[373,377,382,387],{"type":42,"tag":225,"props":374,"children":375},{"style":242},[376],{"type":48,"value":24},{"type":42,"tag":225,"props":378,"children":379},{"style":247},[380],{"type":48,"value":381}," api:core:messages:list",{"type":42,"tag":225,"props":383,"children":384},{"style":247},[385],{"type":48,"value":386}," -p",{"type":42,"tag":225,"props":388,"children":389},{"style":247},[390],{"type":48,"value":391}," production\n",{"type":42,"tag":225,"props":393,"children":395},{"class":227,"line":394},12,[396],{"type":42,"tag":225,"props":397,"children":398},{"emptyLinePlaceholder":257},[399],{"type":48,"value":260},{"type":42,"tag":225,"props":401,"children":403},{"class":227,"line":402},13,[404],{"type":42,"tag":225,"props":405,"children":406},{"style":232},[407],{"type":48,"value":408},"# Subaccount access\n",{"type":42,"tag":225,"props":410,"children":412},{"class":227,"line":411},14,[413,417,421,425],{"type":42,"tag":225,"props":414,"children":415},{"style":242},[416],{"type":48,"value":24},{"type":42,"tag":225,"props":418,"children":419},{"style":247},[420],{"type":48,"value":381},{"type":42,"tag":225,"props":422,"children":423},{"style":247},[424],{"type":48,"value":287},{"type":42,"tag":225,"props":426,"children":427},{"style":247},[428],{"type":48,"value":429}," ACxxx_SUBACCOUNT\n",{"type":42,"tag":51,"props":431,"children":432},{},[433,438,440,446,448,454,456,462,464,470],{"type":42,"tag":60,"props":434,"children":435},{},[436],{"type":48,"value":437},"Credential priority:",{"type":48,"value":439}," explicit ",{"type":42,"tag":105,"props":441,"children":443},{"className":442},[],[444],{"type":48,"value":445},"-p",{"type":48,"value":447},"\u002F",{"type":42,"tag":105,"props":449,"children":451},{"className":450},[],[452],{"type":48,"value":453},"--account-sid",{"type":48,"value":455}," flag > env vars (",{"type":42,"tag":105,"props":457,"children":459},{"className":458},[],[460],{"type":48,"value":461},"TWILIO_ACCOUNT_SID",{"type":48,"value":463},", ",{"type":42,"tag":105,"props":465,"children":467},{"className":466},[],[468],{"type":48,"value":469},"TWILIO_AUTH_TOKEN",{"type":48,"value":471},") > active profile.",{"type":42,"tag":204,"props":473,"children":474},{},[],{"type":42,"tag":43,"props":476,"children":478},{"id":477},"phone-numbers",[479],{"type":48,"value":480},"Phone Numbers",{"type":42,"tag":214,"props":482,"children":484},{"className":216,"code":483,"language":218,"meta":219,"style":219},"# Search available numbers (US local, area code 415)\ntwilio api:core:available-phone-numbers:local:list --country-code US --area-code 415\n\n# Purchase a number\ntwilio api:core:incoming-phone-numbers:create --phone-number \"+14155551234\"\n\n# List owned numbers\ntwilio phone-numbers:list\n\n# Set webhooks on a number\ntwilio phone-numbers:update +14155551234 \\\n  --sms-url \"https:\u002F\u002Fexample.com\u002Fsms\" \\\n  --voice-url \"https:\u002F\u002Fexample.com\u002Fvoice\"\n",[485],{"type":42,"tag":105,"props":486,"children":487},{"__ignoreMap":219},[488,496,529,536,544,577,584,592,604,611,619,642,668],{"type":42,"tag":225,"props":489,"children":490},{"class":227,"line":228},[491],{"type":42,"tag":225,"props":492,"children":493},{"style":232},[494],{"type":48,"value":495},"# Search available numbers (US local, area code 415)\n",{"type":42,"tag":225,"props":497,"children":498},{"class":227,"line":238},[499,503,508,513,518,523],{"type":42,"tag":225,"props":500,"children":501},{"style":242},[502],{"type":48,"value":24},{"type":42,"tag":225,"props":504,"children":505},{"style":247},[506],{"type":48,"value":507}," api:core:available-phone-numbers:local:list",{"type":42,"tag":225,"props":509,"children":510},{"style":247},[511],{"type":48,"value":512}," --country-code",{"type":42,"tag":225,"props":514,"children":515},{"style":247},[516],{"type":48,"value":517}," US",{"type":42,"tag":225,"props":519,"children":520},{"style":247},[521],{"type":48,"value":522}," --area-code",{"type":42,"tag":225,"props":524,"children":526},{"style":525},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[527],{"type":48,"value":528}," 415\n",{"type":42,"tag":225,"props":530,"children":531},{"class":227,"line":253},[532],{"type":42,"tag":225,"props":533,"children":534},{"emptyLinePlaceholder":257},[535],{"type":48,"value":260},{"type":42,"tag":225,"props":537,"children":538},{"class":227,"line":263},[539],{"type":42,"tag":225,"props":540,"children":541},{"style":232},[542],{"type":48,"value":543},"# Purchase a number\n",{"type":42,"tag":225,"props":545,"children":546},{"class":227,"line":272},[547,551,556,561,567,572],{"type":42,"tag":225,"props":548,"children":549},{"style":242},[550],{"type":48,"value":24},{"type":42,"tag":225,"props":552,"children":553},{"style":247},[554],{"type":48,"value":555}," api:core:incoming-phone-numbers:create",{"type":42,"tag":225,"props":557,"children":558},{"style":247},[559],{"type":48,"value":560}," --phone-number",{"type":42,"tag":225,"props":562,"children":564},{"style":563},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[565],{"type":48,"value":566}," \"",{"type":42,"tag":225,"props":568,"children":569},{"style":247},[570],{"type":48,"value":571},"+14155551234",{"type":42,"tag":225,"props":573,"children":574},{"style":563},[575],{"type":48,"value":576},"\"\n",{"type":42,"tag":225,"props":578,"children":579},{"class":227,"line":315},[580],{"type":42,"tag":225,"props":581,"children":582},{"emptyLinePlaceholder":257},[583],{"type":48,"value":260},{"type":42,"tag":225,"props":585,"children":586},{"class":227,"line":324},[587],{"type":42,"tag":225,"props":588,"children":589},{"style":232},[590],{"type":48,"value":591},"# List owned numbers\n",{"type":42,"tag":225,"props":593,"children":594},{"class":227,"line":337},[595,599],{"type":42,"tag":225,"props":596,"children":597},{"style":242},[598],{"type":48,"value":24},{"type":42,"tag":225,"props":600,"children":601},{"style":247},[602],{"type":48,"value":603}," phone-numbers:list\n",{"type":42,"tag":225,"props":605,"children":606},{"class":227,"line":354},[607],{"type":42,"tag":225,"props":608,"children":609},{"emptyLinePlaceholder":257},[610],{"type":48,"value":260},{"type":42,"tag":225,"props":612,"children":613},{"class":227,"line":362},[614],{"type":42,"tag":225,"props":615,"children":616},{"style":232},[617],{"type":48,"value":618},"# Set webhooks on a number\n",{"type":42,"tag":225,"props":620,"children":621},{"class":227,"line":371},[622,626,631,636],{"type":42,"tag":225,"props":623,"children":624},{"style":242},[625],{"type":48,"value":24},{"type":42,"tag":225,"props":627,"children":628},{"style":247},[629],{"type":48,"value":630}," phone-numbers:update",{"type":42,"tag":225,"props":632,"children":633},{"style":247},[634],{"type":48,"value":635}," +14155551234",{"type":42,"tag":225,"props":637,"children":639},{"style":638},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[640],{"type":48,"value":641}," \\\n",{"type":42,"tag":225,"props":643,"children":644},{"class":227,"line":394},[645,650,654,659,664],{"type":42,"tag":225,"props":646,"children":647},{"style":247},[648],{"type":48,"value":649},"  --sms-url",{"type":42,"tag":225,"props":651,"children":652},{"style":563},[653],{"type":48,"value":566},{"type":42,"tag":225,"props":655,"children":656},{"style":247},[657],{"type":48,"value":658},"https:\u002F\u002Fexample.com\u002Fsms",{"type":42,"tag":225,"props":660,"children":661},{"style":563},[662],{"type":48,"value":663},"\"",{"type":42,"tag":225,"props":665,"children":666},{"style":638},[667],{"type":48,"value":641},{"type":42,"tag":225,"props":669,"children":670},{"class":227,"line":402},[671,676,680,685],{"type":42,"tag":225,"props":672,"children":673},{"style":247},[674],{"type":48,"value":675},"  --voice-url",{"type":42,"tag":225,"props":677,"children":678},{"style":563},[679],{"type":48,"value":566},{"type":42,"tag":225,"props":681,"children":682},{"style":247},[683],{"type":48,"value":684},"https:\u002F\u002Fexample.com\u002Fvoice",{"type":42,"tag":225,"props":686,"children":687},{"style":563},[688],{"type":48,"value":576},{"type":42,"tag":204,"props":690,"children":691},{},[],{"type":42,"tag":43,"props":693,"children":695},{"id":694},"send-sms",[696],{"type":48,"value":697},"Send SMS",{"type":42,"tag":214,"props":699,"children":701},{"className":216,"code":700,"language":218,"meta":219,"style":219},"twilio api:core:messages:create \\\n  --from \"+14155551234\" \\\n  --to \"+14155556789\" \\\n  --body \"Your order has shipped.\"\n\n# List recent messages\ntwilio api:core:messages:list --to \"+14155556789\" --limit 10\n",[702],{"type":42,"tag":105,"props":703,"children":704},{"__ignoreMap":219},[705,721,745,770,791,798,806],{"type":42,"tag":225,"props":706,"children":707},{"class":227,"line":228},[708,712,717],{"type":42,"tag":225,"props":709,"children":710},{"style":242},[711],{"type":48,"value":24},{"type":42,"tag":225,"props":713,"children":714},{"style":247},[715],{"type":48,"value":716}," api:core:messages:create",{"type":42,"tag":225,"props":718,"children":719},{"style":638},[720],{"type":48,"value":641},{"type":42,"tag":225,"props":722,"children":723},{"class":227,"line":238},[724,729,733,737,741],{"type":42,"tag":225,"props":725,"children":726},{"style":247},[727],{"type":48,"value":728},"  --from",{"type":42,"tag":225,"props":730,"children":731},{"style":563},[732],{"type":48,"value":566},{"type":42,"tag":225,"props":734,"children":735},{"style":247},[736],{"type":48,"value":571},{"type":42,"tag":225,"props":738,"children":739},{"style":563},[740],{"type":48,"value":663},{"type":42,"tag":225,"props":742,"children":743},{"style":638},[744],{"type":48,"value":641},{"type":42,"tag":225,"props":746,"children":747},{"class":227,"line":253},[748,753,757,762,766],{"type":42,"tag":225,"props":749,"children":750},{"style":247},[751],{"type":48,"value":752},"  --to",{"type":42,"tag":225,"props":754,"children":755},{"style":563},[756],{"type":48,"value":566},{"type":42,"tag":225,"props":758,"children":759},{"style":247},[760],{"type":48,"value":761},"+14155556789",{"type":42,"tag":225,"props":763,"children":764},{"style":563},[765],{"type":48,"value":663},{"type":42,"tag":225,"props":767,"children":768},{"style":638},[769],{"type":48,"value":641},{"type":42,"tag":225,"props":771,"children":772},{"class":227,"line":263},[773,778,782,787],{"type":42,"tag":225,"props":774,"children":775},{"style":247},[776],{"type":48,"value":777},"  --body",{"type":42,"tag":225,"props":779,"children":780},{"style":563},[781],{"type":48,"value":566},{"type":42,"tag":225,"props":783,"children":784},{"style":247},[785],{"type":48,"value":786},"Your order has shipped.",{"type":42,"tag":225,"props":788,"children":789},{"style":563},[790],{"type":48,"value":576},{"type":42,"tag":225,"props":792,"children":793},{"class":227,"line":272},[794],{"type":42,"tag":225,"props":795,"children":796},{"emptyLinePlaceholder":257},[797],{"type":48,"value":260},{"type":42,"tag":225,"props":799,"children":800},{"class":227,"line":315},[801],{"type":42,"tag":225,"props":802,"children":803},{"style":232},[804],{"type":48,"value":805},"# List recent messages\n",{"type":42,"tag":225,"props":807,"children":808},{"class":227,"line":324},[809,813,817,822,826,830,834,839],{"type":42,"tag":225,"props":810,"children":811},{"style":242},[812],{"type":48,"value":24},{"type":42,"tag":225,"props":814,"children":815},{"style":247},[816],{"type":48,"value":381},{"type":42,"tag":225,"props":818,"children":819},{"style":247},[820],{"type":48,"value":821}," --to",{"type":42,"tag":225,"props":823,"children":824},{"style":563},[825],{"type":48,"value":566},{"type":42,"tag":225,"props":827,"children":828},{"style":247},[829],{"type":48,"value":761},{"type":42,"tag":225,"props":831,"children":832},{"style":563},[833],{"type":48,"value":663},{"type":42,"tag":225,"props":835,"children":836},{"style":247},[837],{"type":48,"value":838}," --limit",{"type":42,"tag":225,"props":840,"children":841},{"style":525},[842],{"type":48,"value":843}," 10\n",{"type":42,"tag":204,"props":845,"children":846},{},[],{"type":42,"tag":43,"props":848,"children":850},{"id":849},"send-email-sendgrid",[851],{"type":48,"value":852},"Send Email (SendGrid)",{"type":42,"tag":51,"props":854,"children":855},{},[856,858,864],{"type":48,"value":857},"Requires ",{"type":42,"tag":105,"props":859,"children":861},{"className":860},[],[862],{"type":48,"value":863},"SENDGRID_API_KEY",{"type":48,"value":865}," environment variable.",{"type":42,"tag":214,"props":867,"children":869},{"className":216,"code":868,"language":218,"meta":219,"style":219},"# Configure defaults\ntwilio email:set --from \"noreply@example.com\" --subject \"Default Subject\"\n\n# Send email\ntwilio email:send \\\n  --to \"user@example.com\" \\\n  --subject \"Invoice attached\" \\\n  --text \"Please find your invoice.\" \\\n  --attachment .\u002Finvoice.pdf\n\n# Pipe output as email body\nps aux | twilio email:send --to \"ops@example.com\" --subject \"Process list\"\n",[870],{"type":42,"tag":105,"props":871,"children":872},{"__ignoreMap":219},[873,881,929,936,944,960,984,1009,1034,1047,1054,1062],{"type":42,"tag":225,"props":874,"children":875},{"class":227,"line":228},[876],{"type":42,"tag":225,"props":877,"children":878},{"style":232},[879],{"type":48,"value":880},"# Configure defaults\n",{"type":42,"tag":225,"props":882,"children":883},{"class":227,"line":238},[884,888,893,898,902,907,911,916,920,925],{"type":42,"tag":225,"props":885,"children":886},{"style":242},[887],{"type":48,"value":24},{"type":42,"tag":225,"props":889,"children":890},{"style":247},[891],{"type":48,"value":892}," email:set",{"type":42,"tag":225,"props":894,"children":895},{"style":247},[896],{"type":48,"value":897}," --from",{"type":42,"tag":225,"props":899,"children":900},{"style":563},[901],{"type":48,"value":566},{"type":42,"tag":225,"props":903,"children":904},{"style":247},[905],{"type":48,"value":906},"noreply@example.com",{"type":42,"tag":225,"props":908,"children":909},{"style":563},[910],{"type":48,"value":663},{"type":42,"tag":225,"props":912,"children":913},{"style":247},[914],{"type":48,"value":915}," --subject",{"type":42,"tag":225,"props":917,"children":918},{"style":563},[919],{"type":48,"value":566},{"type":42,"tag":225,"props":921,"children":922},{"style":247},[923],{"type":48,"value":924},"Default Subject",{"type":42,"tag":225,"props":926,"children":927},{"style":563},[928],{"type":48,"value":576},{"type":42,"tag":225,"props":930,"children":931},{"class":227,"line":253},[932],{"type":42,"tag":225,"props":933,"children":934},{"emptyLinePlaceholder":257},[935],{"type":48,"value":260},{"type":42,"tag":225,"props":937,"children":938},{"class":227,"line":263},[939],{"type":42,"tag":225,"props":940,"children":941},{"style":232},[942],{"type":48,"value":943},"# Send email\n",{"type":42,"tag":225,"props":945,"children":946},{"class":227,"line":272},[947,951,956],{"type":42,"tag":225,"props":948,"children":949},{"style":242},[950],{"type":48,"value":24},{"type":42,"tag":225,"props":952,"children":953},{"style":247},[954],{"type":48,"value":955}," email:send",{"type":42,"tag":225,"props":957,"children":958},{"style":638},[959],{"type":48,"value":641},{"type":42,"tag":225,"props":961,"children":962},{"class":227,"line":315},[963,967,971,976,980],{"type":42,"tag":225,"props":964,"children":965},{"style":247},[966],{"type":48,"value":752},{"type":42,"tag":225,"props":968,"children":969},{"style":563},[970],{"type":48,"value":566},{"type":42,"tag":225,"props":972,"children":973},{"style":247},[974],{"type":48,"value":975},"user@example.com",{"type":42,"tag":225,"props":977,"children":978},{"style":563},[979],{"type":48,"value":663},{"type":42,"tag":225,"props":981,"children":982},{"style":638},[983],{"type":48,"value":641},{"type":42,"tag":225,"props":985,"children":986},{"class":227,"line":324},[987,992,996,1001,1005],{"type":42,"tag":225,"props":988,"children":989},{"style":247},[990],{"type":48,"value":991},"  --subject",{"type":42,"tag":225,"props":993,"children":994},{"style":563},[995],{"type":48,"value":566},{"type":42,"tag":225,"props":997,"children":998},{"style":247},[999],{"type":48,"value":1000},"Invoice attached",{"type":42,"tag":225,"props":1002,"children":1003},{"style":563},[1004],{"type":48,"value":663},{"type":42,"tag":225,"props":1006,"children":1007},{"style":638},[1008],{"type":48,"value":641},{"type":42,"tag":225,"props":1010,"children":1011},{"class":227,"line":337},[1012,1017,1021,1026,1030],{"type":42,"tag":225,"props":1013,"children":1014},{"style":247},[1015],{"type":48,"value":1016},"  --text",{"type":42,"tag":225,"props":1018,"children":1019},{"style":563},[1020],{"type":48,"value":566},{"type":42,"tag":225,"props":1022,"children":1023},{"style":247},[1024],{"type":48,"value":1025},"Please find your invoice.",{"type":42,"tag":225,"props":1027,"children":1028},{"style":563},[1029],{"type":48,"value":663},{"type":42,"tag":225,"props":1031,"children":1032},{"style":638},[1033],{"type":48,"value":641},{"type":42,"tag":225,"props":1035,"children":1036},{"class":227,"line":354},[1037,1042],{"type":42,"tag":225,"props":1038,"children":1039},{"style":247},[1040],{"type":48,"value":1041},"  --attachment",{"type":42,"tag":225,"props":1043,"children":1044},{"style":247},[1045],{"type":48,"value":1046}," .\u002Finvoice.pdf\n",{"type":42,"tag":225,"props":1048,"children":1049},{"class":227,"line":362},[1050],{"type":42,"tag":225,"props":1051,"children":1052},{"emptyLinePlaceholder":257},[1053],{"type":48,"value":260},{"type":42,"tag":225,"props":1055,"children":1056},{"class":227,"line":371},[1057],{"type":42,"tag":225,"props":1058,"children":1059},{"style":232},[1060],{"type":48,"value":1061},"# Pipe output as email body\n",{"type":42,"tag":225,"props":1063,"children":1064},{"class":227,"line":394},[1065,1070,1075,1080,1085,1089,1093,1097,1102,1106,1110,1114,1119],{"type":42,"tag":225,"props":1066,"children":1067},{"style":242},[1068],{"type":48,"value":1069},"ps",{"type":42,"tag":225,"props":1071,"children":1072},{"style":247},[1073],{"type":48,"value":1074}," aux",{"type":42,"tag":225,"props":1076,"children":1077},{"style":563},[1078],{"type":48,"value":1079}," |",{"type":42,"tag":225,"props":1081,"children":1082},{"style":242},[1083],{"type":48,"value":1084}," twilio",{"type":42,"tag":225,"props":1086,"children":1087},{"style":247},[1088],{"type":48,"value":955},{"type":42,"tag":225,"props":1090,"children":1091},{"style":247},[1092],{"type":48,"value":821},{"type":42,"tag":225,"props":1094,"children":1095},{"style":563},[1096],{"type":48,"value":566},{"type":42,"tag":225,"props":1098,"children":1099},{"style":247},[1100],{"type":48,"value":1101},"ops@example.com",{"type":42,"tag":225,"props":1103,"children":1104},{"style":563},[1105],{"type":48,"value":663},{"type":42,"tag":225,"props":1107,"children":1108},{"style":247},[1109],{"type":48,"value":915},{"type":42,"tag":225,"props":1111,"children":1112},{"style":563},[1113],{"type":48,"value":566},{"type":42,"tag":225,"props":1115,"children":1116},{"style":247},[1117],{"type":48,"value":1118},"Process list",{"type":42,"tag":225,"props":1120,"children":1121},{"style":563},[1122],{"type":48,"value":576},{"type":42,"tag":204,"props":1124,"children":1125},{},[],{"type":42,"tag":43,"props":1127,"children":1129},{"id":1128},"webhook-development",[1130],{"type":48,"value":1131},"Webhook Development",{"type":42,"tag":214,"props":1133,"children":1135},{"className":216,"code":1134,"language":218,"meta":219,"style":219},"# Set webhook URLs on a number\ntwilio phone-numbers:update +14155551234 --sms-url \"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms\"\n\n# Emulate webhook events locally (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-webhook\ntwilio webhook:invoke http:\u002F\u002Flocalhost:3000\u002Fsms --type sms\n",[1136],{"type":42,"tag":105,"props":1137,"children":1138},{"__ignoreMap":219},[1139,1147,1180,1187,1195,1212],{"type":42,"tag":225,"props":1140,"children":1141},{"class":227,"line":228},[1142],{"type":42,"tag":225,"props":1143,"children":1144},{"style":232},[1145],{"type":48,"value":1146},"# Set webhook URLs on a number\n",{"type":42,"tag":225,"props":1148,"children":1149},{"class":227,"line":238},[1150,1154,1158,1162,1167,1171,1176],{"type":42,"tag":225,"props":1151,"children":1152},{"style":242},[1153],{"type":48,"value":24},{"type":42,"tag":225,"props":1155,"children":1156},{"style":247},[1157],{"type":48,"value":630},{"type":42,"tag":225,"props":1159,"children":1160},{"style":247},[1161],{"type":48,"value":635},{"type":42,"tag":225,"props":1163,"children":1164},{"style":247},[1165],{"type":48,"value":1166}," --sms-url",{"type":42,"tag":225,"props":1168,"children":1169},{"style":563},[1170],{"type":48,"value":566},{"type":42,"tag":225,"props":1172,"children":1173},{"style":247},[1174],{"type":48,"value":1175},"https:\u002F\u002Fyour-tunnel-url.example.com\u002Fsms",{"type":42,"tag":225,"props":1177,"children":1178},{"style":563},[1179],{"type":48,"value":576},{"type":42,"tag":225,"props":1181,"children":1182},{"class":227,"line":253},[1183],{"type":42,"tag":225,"props":1184,"children":1185},{"emptyLinePlaceholder":257},[1186],{"type":48,"value":260},{"type":42,"tag":225,"props":1188,"children":1189},{"class":227,"line":263},[1190],{"type":42,"tag":225,"props":1191,"children":1192},{"style":232},[1193],{"type":48,"value":1194},"# Emulate webhook events locally (requires plugin)\n",{"type":42,"tag":225,"props":1196,"children":1197},{"class":227,"line":272},[1198,1202,1207],{"type":42,"tag":225,"props":1199,"children":1200},{"style":242},[1201],{"type":48,"value":24},{"type":42,"tag":225,"props":1203,"children":1204},{"style":247},[1205],{"type":48,"value":1206}," plugins:install",{"type":42,"tag":225,"props":1208,"children":1209},{"style":247},[1210],{"type":48,"value":1211}," @twilio-labs\u002Fplugin-webhook\n",{"type":42,"tag":225,"props":1213,"children":1214},{"class":227,"line":315},[1215,1219,1224,1229,1234],{"type":42,"tag":225,"props":1216,"children":1217},{"style":242},[1218],{"type":48,"value":24},{"type":42,"tag":225,"props":1220,"children":1221},{"style":247},[1222],{"type":48,"value":1223}," webhook:invoke",{"type":42,"tag":225,"props":1225,"children":1226},{"style":247},[1227],{"type":48,"value":1228}," http:\u002F\u002Flocalhost:3000\u002Fsms",{"type":42,"tag":225,"props":1230,"children":1231},{"style":247},[1232],{"type":48,"value":1233}," --type",{"type":42,"tag":225,"props":1235,"children":1236},{"style":247},[1237],{"type":48,"value":1238}," sms\n",{"type":42,"tag":51,"props":1240,"children":1241},{},[1242,1247,1249,1255],{"type":42,"tag":60,"props":1243,"children":1244},{},[1245],{"type":48,"value":1246},"Local development:",{"type":48,"value":1248}," The CLI rejects ",{"type":42,"tag":105,"props":1250,"children":1252},{"className":1251},[],[1253],{"type":48,"value":1254},"localhost",{"type":48,"value":1256}," 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.",{"type":42,"tag":51,"props":1258,"children":1259},{},[1260,1262],{"type":48,"value":1261},"** ngrok is NOT included in the CLI — install separately: npm install -g ngrok\nor via ",{"type":42,"tag":1263,"props":1264,"children":1268},"a",{"href":1265,"rel":1266},"https:\u002F\u002Fngrok.com",[1267],"nofollow",[1269],{"type":48,"value":1265},{"type":42,"tag":1271,"props":1272,"children":1273},"ul",{},[1274],{"type":42,"tag":1275,"props":1276,"children":1277},"li",{},[1278,1280,1284],{"type":48,"value":1279},"Start tunnel: ngrok http 3000, then use the provided URL for webhook",{"type":42,"tag":1281,"props":1282,"children":1283},"br",{},[],{"type":48,"value":1285},"\nconfiguration",{"type":42,"tag":204,"props":1287,"children":1288},{},[],{"type":42,"tag":43,"props":1290,"children":1292},{"id":1291},"debugging-monitoring",[1293],{"type":48,"value":1294},"Debugging & Monitoring",{"type":42,"tag":214,"props":1296,"children":1298},{"className":216,"code":1297,"language":218,"meta":219,"style":219},"# Debug logging on any command (logs to stderr)\ntwilio api:core:messages:create --from +14155551234 --to +14155556789 --body \"test\" -l debug\n\n# Real-time monitoring (requires plugin)\ntwilio plugins:install @twilio-labs\u002Fplugin-watch\ntwilio watch                    # stream debugger alerts, calls, messages in real time\n\n# Output formatting\ntwilio api:core:messages:list -o json             # JSON output\ntwilio api:core:messages:list -o tsv              # tab-separated\ntwilio api:core:messages:list --properties sid,status,direction  # select columns\ntwilio api:core:messages:list --limit 200         # override default 50-record cap\n",[1299],{"type":42,"tag":105,"props":1300,"children":1301},{"__ignoreMap":219},[1302,1310,1366,1373,1381,1397,1414,1421,1429,1455,1480,1506],{"type":42,"tag":225,"props":1303,"children":1304},{"class":227,"line":228},[1305],{"type":42,"tag":225,"props":1306,"children":1307},{"style":232},[1308],{"type":48,"value":1309},"# Debug logging on any command (logs to stderr)\n",{"type":42,"tag":225,"props":1311,"children":1312},{"class":227,"line":238},[1313,1317,1321,1325,1329,1333,1338,1343,1347,1352,1356,1361],{"type":42,"tag":225,"props":1314,"children":1315},{"style":242},[1316],{"type":48,"value":24},{"type":42,"tag":225,"props":1318,"children":1319},{"style":247},[1320],{"type":48,"value":716},{"type":42,"tag":225,"props":1322,"children":1323},{"style":247},[1324],{"type":48,"value":897},{"type":42,"tag":225,"props":1326,"children":1327},{"style":247},[1328],{"type":48,"value":635},{"type":42,"tag":225,"props":1330,"children":1331},{"style":247},[1332],{"type":48,"value":821},{"type":42,"tag":225,"props":1334,"children":1335},{"style":247},[1336],{"type":48,"value":1337}," +14155556789",{"type":42,"tag":225,"props":1339,"children":1340},{"style":247},[1341],{"type":48,"value":1342}," --body",{"type":42,"tag":225,"props":1344,"children":1345},{"style":563},[1346],{"type":48,"value":566},{"type":42,"tag":225,"props":1348,"children":1349},{"style":247},[1350],{"type":48,"value":1351},"test",{"type":42,"tag":225,"props":1353,"children":1354},{"style":563},[1355],{"type":48,"value":663},{"type":42,"tag":225,"props":1357,"children":1358},{"style":247},[1359],{"type":48,"value":1360}," -l",{"type":42,"tag":225,"props":1362,"children":1363},{"style":247},[1364],{"type":48,"value":1365}," debug\n",{"type":42,"tag":225,"props":1367,"children":1368},{"class":227,"line":253},[1369],{"type":42,"tag":225,"props":1370,"children":1371},{"emptyLinePlaceholder":257},[1372],{"type":48,"value":260},{"type":42,"tag":225,"props":1374,"children":1375},{"class":227,"line":263},[1376],{"type":42,"tag":225,"props":1377,"children":1378},{"style":232},[1379],{"type":48,"value":1380},"# Real-time monitoring (requires plugin)\n",{"type":42,"tag":225,"props":1382,"children":1383},{"class":227,"line":272},[1384,1388,1392],{"type":42,"tag":225,"props":1385,"children":1386},{"style":242},[1387],{"type":48,"value":24},{"type":42,"tag":225,"props":1389,"children":1390},{"style":247},[1391],{"type":48,"value":1206},{"type":42,"tag":225,"props":1393,"children":1394},{"style":247},[1395],{"type":48,"value":1396}," @twilio-labs\u002Fplugin-watch\n",{"type":42,"tag":225,"props":1398,"children":1399},{"class":227,"line":315},[1400,1404,1409],{"type":42,"tag":225,"props":1401,"children":1402},{"style":242},[1403],{"type":48,"value":24},{"type":42,"tag":225,"props":1405,"children":1406},{"style":247},[1407],{"type":48,"value":1408}," watch",{"type":42,"tag":225,"props":1410,"children":1411},{"style":232},[1412],{"type":48,"value":1413},"                    # stream debugger alerts, calls, messages in real time\n",{"type":42,"tag":225,"props":1415,"children":1416},{"class":227,"line":324},[1417],{"type":42,"tag":225,"props":1418,"children":1419},{"emptyLinePlaceholder":257},[1420],{"type":48,"value":260},{"type":42,"tag":225,"props":1422,"children":1423},{"class":227,"line":337},[1424],{"type":42,"tag":225,"props":1425,"children":1426},{"style":232},[1427],{"type":48,"value":1428},"# Output formatting\n",{"type":42,"tag":225,"props":1430,"children":1431},{"class":227,"line":354},[1432,1436,1440,1445,1450],{"type":42,"tag":225,"props":1433,"children":1434},{"style":242},[1435],{"type":48,"value":24},{"type":42,"tag":225,"props":1437,"children":1438},{"style":247},[1439],{"type":48,"value":381},{"type":42,"tag":225,"props":1441,"children":1442},{"style":247},[1443],{"type":48,"value":1444}," -o",{"type":42,"tag":225,"props":1446,"children":1447},{"style":247},[1448],{"type":48,"value":1449}," json",{"type":42,"tag":225,"props":1451,"children":1452},{"style":232},[1453],{"type":48,"value":1454},"             # JSON output\n",{"type":42,"tag":225,"props":1456,"children":1457},{"class":227,"line":362},[1458,1462,1466,1470,1475],{"type":42,"tag":225,"props":1459,"children":1460},{"style":242},[1461],{"type":48,"value":24},{"type":42,"tag":225,"props":1463,"children":1464},{"style":247},[1465],{"type":48,"value":381},{"type":42,"tag":225,"props":1467,"children":1468},{"style":247},[1469],{"type":48,"value":1444},{"type":42,"tag":225,"props":1471,"children":1472},{"style":247},[1473],{"type":48,"value":1474}," tsv",{"type":42,"tag":225,"props":1476,"children":1477},{"style":232},[1478],{"type":48,"value":1479},"              # tab-separated\n",{"type":42,"tag":225,"props":1481,"children":1482},{"class":227,"line":371},[1483,1487,1491,1496,1501],{"type":42,"tag":225,"props":1484,"children":1485},{"style":242},[1486],{"type":48,"value":24},{"type":42,"tag":225,"props":1488,"children":1489},{"style":247},[1490],{"type":48,"value":381},{"type":42,"tag":225,"props":1492,"children":1493},{"style":247},[1494],{"type":48,"value":1495}," --properties",{"type":42,"tag":225,"props":1497,"children":1498},{"style":247},[1499],{"type":48,"value":1500}," sid,status,direction",{"type":42,"tag":225,"props":1502,"children":1503},{"style":232},[1504],{"type":48,"value":1505},"  # select columns\n",{"type":42,"tag":225,"props":1507,"children":1508},{"class":227,"line":394},[1509,1513,1517,1521,1526],{"type":42,"tag":225,"props":1510,"children":1511},{"style":242},[1512],{"type":48,"value":24},{"type":42,"tag":225,"props":1514,"children":1515},{"style":247},[1516],{"type":48,"value":381},{"type":42,"tag":225,"props":1518,"children":1519},{"style":247},[1520],{"type":48,"value":838},{"type":42,"tag":225,"props":1522,"children":1523},{"style":525},[1524],{"type":48,"value":1525}," 200",{"type":42,"tag":225,"props":1527,"children":1528},{"style":232},[1529],{"type":48,"value":1530},"         # override default 50-record cap\n",{"type":42,"tag":204,"props":1532,"children":1533},{},[],{"type":42,"tag":43,"props":1535,"children":1537},{"id":1536},"serverless-deployment",[1538],{"type":48,"value":1539},"Serverless Deployment",{"type":42,"tag":214,"props":1541,"children":1543},{"className":216,"code":1542,"language":218,"meta":219,"style":219},"twilio plugins:install @twilio-labs\u002Fplugin-serverless\n\n# Create a new Functions project\ntwilio serverless:init my-project --template blank\ncd my-project\n\n# Local development\ntwilio serverless:start          # serves functions at localhost:3000\n\n# Deploy to Twilio\ntwilio serverless:deploy\n",[1544],{"type":42,"tag":105,"props":1545,"children":1546},{"__ignoreMap":219},[1547,1563,1570,1578,1605,1619,1626,1634,1651,1658,1666],{"type":42,"tag":225,"props":1548,"children":1549},{"class":227,"line":228},[1550,1554,1558],{"type":42,"tag":225,"props":1551,"children":1552},{"style":242},[1553],{"type":48,"value":24},{"type":42,"tag":225,"props":1555,"children":1556},{"style":247},[1557],{"type":48,"value":1206},{"type":42,"tag":225,"props":1559,"children":1560},{"style":247},[1561],{"type":48,"value":1562}," @twilio-labs\u002Fplugin-serverless\n",{"type":42,"tag":225,"props":1564,"children":1565},{"class":227,"line":238},[1566],{"type":42,"tag":225,"props":1567,"children":1568},{"emptyLinePlaceholder":257},[1569],{"type":48,"value":260},{"type":42,"tag":225,"props":1571,"children":1572},{"class":227,"line":253},[1573],{"type":42,"tag":225,"props":1574,"children":1575},{"style":232},[1576],{"type":48,"value":1577},"# Create a new Functions project\n",{"type":42,"tag":225,"props":1579,"children":1580},{"class":227,"line":263},[1581,1585,1590,1595,1600],{"type":42,"tag":225,"props":1582,"children":1583},{"style":242},[1584],{"type":48,"value":24},{"type":42,"tag":225,"props":1586,"children":1587},{"style":247},[1588],{"type":48,"value":1589}," serverless:init",{"type":42,"tag":225,"props":1591,"children":1592},{"style":247},[1593],{"type":48,"value":1594}," my-project",{"type":42,"tag":225,"props":1596,"children":1597},{"style":247},[1598],{"type":48,"value":1599}," --template",{"type":42,"tag":225,"props":1601,"children":1602},{"style":247},[1603],{"type":48,"value":1604}," blank\n",{"type":42,"tag":225,"props":1606,"children":1607},{"class":227,"line":272},[1608,1614],{"type":42,"tag":225,"props":1609,"children":1611},{"style":1610},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1612],{"type":48,"value":1613},"cd",{"type":42,"tag":225,"props":1615,"children":1616},{"style":247},[1617],{"type":48,"value":1618}," my-project\n",{"type":42,"tag":225,"props":1620,"children":1621},{"class":227,"line":315},[1622],{"type":42,"tag":225,"props":1623,"children":1624},{"emptyLinePlaceholder":257},[1625],{"type":48,"value":260},{"type":42,"tag":225,"props":1627,"children":1628},{"class":227,"line":324},[1629],{"type":42,"tag":225,"props":1630,"children":1631},{"style":232},[1632],{"type":48,"value":1633},"# Local development\n",{"type":42,"tag":225,"props":1635,"children":1636},{"class":227,"line":337},[1637,1641,1646],{"type":42,"tag":225,"props":1638,"children":1639},{"style":242},[1640],{"type":48,"value":24},{"type":42,"tag":225,"props":1642,"children":1643},{"style":247},[1644],{"type":48,"value":1645}," serverless:start",{"type":42,"tag":225,"props":1647,"children":1648},{"style":232},[1649],{"type":48,"value":1650},"          # serves functions at localhost:3000\n",{"type":42,"tag":225,"props":1652,"children":1653},{"class":227,"line":354},[1654],{"type":42,"tag":225,"props":1655,"children":1656},{"emptyLinePlaceholder":257},[1657],{"type":48,"value":260},{"type":42,"tag":225,"props":1659,"children":1660},{"class":227,"line":362},[1661],{"type":42,"tag":225,"props":1662,"children":1663},{"style":232},[1664],{"type":48,"value":1665},"# Deploy to Twilio\n",{"type":42,"tag":225,"props":1667,"children":1668},{"class":227,"line":371},[1669,1673],{"type":42,"tag":225,"props":1670,"children":1671},{"style":242},[1672],{"type":48,"value":24},{"type":42,"tag":225,"props":1674,"children":1675},{"style":247},[1676],{"type":48,"value":1677}," serverless:deploy\n",{"type":42,"tag":204,"props":1679,"children":1680},{},[],{"type":42,"tag":43,"props":1682,"children":1684},{"id":1683},"plugins",[1685],{"type":48,"value":1686},"Plugins",{"type":42,"tag":214,"props":1688,"children":1690},{"className":216,"code":1689,"language":218,"meta":219,"style":219},"twilio plugins:install \u003Cpackage>\ntwilio plugins:list\ntwilio plugins:remove \u003Cpackage>\n",[1691],{"type":42,"tag":105,"props":1692,"children":1693},{"__ignoreMap":219},[1694,1725,1737],{"type":42,"tag":225,"props":1695,"children":1696},{"class":227,"line":228},[1697,1701,1705,1710,1715,1720],{"type":42,"tag":225,"props":1698,"children":1699},{"style":242},[1700],{"type":48,"value":24},{"type":42,"tag":225,"props":1702,"children":1703},{"style":247},[1704],{"type":48,"value":1206},{"type":42,"tag":225,"props":1706,"children":1707},{"style":563},[1708],{"type":48,"value":1709}," \u003C",{"type":42,"tag":225,"props":1711,"children":1712},{"style":247},[1713],{"type":48,"value":1714},"packag",{"type":42,"tag":225,"props":1716,"children":1717},{"style":638},[1718],{"type":48,"value":1719},"e",{"type":42,"tag":225,"props":1721,"children":1722},{"style":563},[1723],{"type":48,"value":1724},">\n",{"type":42,"tag":225,"props":1726,"children":1727},{"class":227,"line":238},[1728,1732],{"type":42,"tag":225,"props":1729,"children":1730},{"style":242},[1731],{"type":48,"value":24},{"type":42,"tag":225,"props":1733,"children":1734},{"style":247},[1735],{"type":48,"value":1736}," plugins:list\n",{"type":42,"tag":225,"props":1738,"children":1739},{"class":227,"line":253},[1740,1744,1749,1753,1757,1761],{"type":42,"tag":225,"props":1741,"children":1742},{"style":242},[1743],{"type":48,"value":24},{"type":42,"tag":225,"props":1745,"children":1746},{"style":247},[1747],{"type":48,"value":1748}," plugins:remove",{"type":42,"tag":225,"props":1750,"children":1751},{"style":563},[1752],{"type":48,"value":1709},{"type":42,"tag":225,"props":1754,"children":1755},{"style":247},[1756],{"type":48,"value":1714},{"type":42,"tag":225,"props":1758,"children":1759},{"style":638},[1760],{"type":48,"value":1719},{"type":42,"tag":225,"props":1762,"children":1763},{"style":563},[1764],{"type":48,"value":1724},{"type":42,"tag":66,"props":1766,"children":1767},{},[1768,1784],{"type":42,"tag":70,"props":1769,"children":1770},{},[1771],{"type":42,"tag":74,"props":1772,"children":1773},{},[1774,1779],{"type":42,"tag":78,"props":1775,"children":1776},{},[1777],{"type":48,"value":1778},"Plugin",{"type":42,"tag":78,"props":1780,"children":1781},{},[1782],{"type":48,"value":1783},"What it does",{"type":42,"tag":89,"props":1785,"children":1786},{},[1787,1804,1821,1838,1855,1872,1889],{"type":42,"tag":74,"props":1788,"children":1789},{},[1790,1799],{"type":42,"tag":96,"props":1791,"children":1792},{},[1793],{"type":42,"tag":105,"props":1794,"children":1796},{"className":1795},[],[1797],{"type":48,"value":1798},"@twilio-labs\u002Fplugin-serverless",{"type":42,"tag":96,"props":1800,"children":1801},{},[1802],{"type":48,"value":1803},"Develop and deploy Twilio Functions and Assets",{"type":42,"tag":74,"props":1805,"children":1806},{},[1807,1816],{"type":42,"tag":96,"props":1808,"children":1809},{},[1810],{"type":42,"tag":105,"props":1811,"children":1813},{"className":1812},[],[1814],{"type":48,"value":1815},"@twilio-labs\u002Fplugin-dev-phone",{"type":42,"tag":96,"props":1817,"children":1818},{},[1819],{"type":48,"value":1820},"Test SMS\u002FVoice without a real phone",{"type":42,"tag":74,"props":1822,"children":1823},{},[1824,1833],{"type":42,"tag":96,"props":1825,"children":1826},{},[1827],{"type":42,"tag":105,"props":1828,"children":1830},{"className":1829},[],[1831],{"type":48,"value":1832},"@twilio-labs\u002Fplugin-watch",{"type":42,"tag":96,"props":1834,"children":1835},{},[1836],{"type":48,"value":1837},"Real-time monitoring of debugger alerts, calls, messages",{"type":42,"tag":74,"props":1839,"children":1840},{},[1841,1850],{"type":42,"tag":96,"props":1842,"children":1843},{},[1844],{"type":42,"tag":105,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":48,"value":1849},"@twilio-labs\u002Fplugin-token",{"type":42,"tag":96,"props":1851,"children":1852},{},[1853],{"type":48,"value":1854},"Generate client-side SDK tokens (Voice, Chat, Video)",{"type":42,"tag":74,"props":1856,"children":1857},{},[1858,1867],{"type":42,"tag":96,"props":1859,"children":1860},{},[1861],{"type":42,"tag":105,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":48,"value":1866},"@twilio-labs\u002Fplugin-assets",{"type":42,"tag":96,"props":1868,"children":1869},{},[1870],{"type":48,"value":1871},"Upload static resources",{"type":42,"tag":74,"props":1873,"children":1874},{},[1875,1884],{"type":42,"tag":96,"props":1876,"children":1877},{},[1878],{"type":42,"tag":105,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":48,"value":1883},"@twilio-labs\u002Fplugin-webhook",{"type":42,"tag":96,"props":1885,"children":1886},{},[1887],{"type":48,"value":1888},"Emulate webhook events for local testing",{"type":42,"tag":74,"props":1890,"children":1891},{},[1892,1901],{"type":42,"tag":96,"props":1893,"children":1894},{},[1895],{"type":42,"tag":105,"props":1896,"children":1898},{"className":1897},[],[1899],{"type":48,"value":1900},"@twilio-labs\u002Fplugin-flex",{"type":42,"tag":96,"props":1902,"children":1903},{},[1904],{"type":48,"value":1905},"Create, build, deploy Flex plugins",{"type":42,"tag":204,"props":1907,"children":1908},{},[],{"type":42,"tag":43,"props":1910,"children":1912},{"id":1911},"regional-edge-routing",[1913],{"type":48,"value":1914},"Regional & Edge Routing",{"type":42,"tag":214,"props":1916,"children":1918},{"className":216,"code":1917,"language":218,"meta":219,"style":219},"# Login to a specific region\ntwilio login --region au1 --edge sydney\n\n# Set edge globally\ntwilio config:set --edge=sydney\n\n# Or via env vars\nexport TWILIO_REGION=au1\nexport TWILIO_EDGE=sydney\n",[1919],{"type":42,"tag":105,"props":1920,"children":1921},{"__ignoreMap":219},[1922,1930,1962,1969,1977,1994,2001,2009,2033],{"type":42,"tag":225,"props":1923,"children":1924},{"class":227,"line":228},[1925],{"type":42,"tag":225,"props":1926,"children":1927},{"style":232},[1928],{"type":48,"value":1929},"# Login to a specific region\n",{"type":42,"tag":225,"props":1931,"children":1932},{"class":227,"line":238},[1933,1937,1942,1947,1952,1957],{"type":42,"tag":225,"props":1934,"children":1935},{"style":242},[1936],{"type":48,"value":24},{"type":42,"tag":225,"props":1938,"children":1939},{"style":247},[1940],{"type":48,"value":1941}," login",{"type":42,"tag":225,"props":1943,"children":1944},{"style":247},[1945],{"type":48,"value":1946}," --region",{"type":42,"tag":225,"props":1948,"children":1949},{"style":247},[1950],{"type":48,"value":1951}," au1",{"type":42,"tag":225,"props":1953,"children":1954},{"style":247},[1955],{"type":48,"value":1956}," --edge",{"type":42,"tag":225,"props":1958,"children":1959},{"style":247},[1960],{"type":48,"value":1961}," sydney\n",{"type":42,"tag":225,"props":1963,"children":1964},{"class":227,"line":253},[1965],{"type":42,"tag":225,"props":1966,"children":1967},{"emptyLinePlaceholder":257},[1968],{"type":48,"value":260},{"type":42,"tag":225,"props":1970,"children":1971},{"class":227,"line":263},[1972],{"type":42,"tag":225,"props":1973,"children":1974},{"style":232},[1975],{"type":48,"value":1976},"# Set edge globally\n",{"type":42,"tag":225,"props":1978,"children":1979},{"class":227,"line":272},[1980,1984,1989],{"type":42,"tag":225,"props":1981,"children":1982},{"style":242},[1983],{"type":48,"value":24},{"type":42,"tag":225,"props":1985,"children":1986},{"style":247},[1987],{"type":48,"value":1988}," config:set",{"type":42,"tag":225,"props":1990,"children":1991},{"style":247},[1992],{"type":48,"value":1993}," --edge=sydney\n",{"type":42,"tag":225,"props":1995,"children":1996},{"class":227,"line":315},[1997],{"type":42,"tag":225,"props":1998,"children":1999},{"emptyLinePlaceholder":257},[2000],{"type":48,"value":260},{"type":42,"tag":225,"props":2002,"children":2003},{"class":227,"line":324},[2004],{"type":42,"tag":225,"props":2005,"children":2006},{"style":232},[2007],{"type":48,"value":2008},"# Or via env vars\n",{"type":42,"tag":225,"props":2010,"children":2011},{"class":227,"line":337},[2012,2018,2023,2028],{"type":42,"tag":225,"props":2013,"children":2015},{"style":2014},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[2016],{"type":48,"value":2017},"export",{"type":42,"tag":225,"props":2019,"children":2020},{"style":638},[2021],{"type":48,"value":2022}," TWILIO_REGION",{"type":42,"tag":225,"props":2024,"children":2025},{"style":563},[2026],{"type":48,"value":2027},"=",{"type":42,"tag":225,"props":2029,"children":2030},{"style":638},[2031],{"type":48,"value":2032},"au1\n",{"type":42,"tag":225,"props":2034,"children":2035},{"class":227,"line":354},[2036,2040,2045,2049],{"type":42,"tag":225,"props":2037,"children":2038},{"style":2014},[2039],{"type":48,"value":2017},{"type":42,"tag":225,"props":2041,"children":2042},{"style":638},[2043],{"type":48,"value":2044}," TWILIO_EDGE",{"type":42,"tag":225,"props":2046,"children":2047},{"style":563},[2048],{"type":48,"value":2027},{"type":42,"tag":225,"props":2050,"children":2051},{"style":638},[2052],{"type":48,"value":2053},"sydney\n",{"type":42,"tag":51,"props":2055,"children":2056},{},[2057,2059,2065,2066,2072,2073,2079,2080,2086,2087,2093,2094,2100],{"type":48,"value":2058},"Supported: ",{"type":42,"tag":105,"props":2060,"children":2062},{"className":2061},[],[2063],{"type":48,"value":2064},"au1",{"type":48,"value":447},{"type":42,"tag":105,"props":2067,"children":2069},{"className":2068},[],[2070],{"type":48,"value":2071},"sydney",{"type":48,"value":463},{"type":42,"tag":105,"props":2074,"children":2076},{"className":2075},[],[2077],{"type":48,"value":2078},"ie1",{"type":48,"value":447},{"type":42,"tag":105,"props":2081,"children":2083},{"className":2082},[],[2084],{"type":48,"value":2085},"dublin",{"type":48,"value":463},{"type":42,"tag":105,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":48,"value":2092},"jp1",{"type":48,"value":447},{"type":42,"tag":105,"props":2095,"children":2097},{"className":2096},[],[2098],{"type":48,"value":2099},"tokyo",{"type":48,"value":2101},". 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.",{"type":42,"tag":204,"props":2103,"children":2104},{},[],{"type":42,"tag":43,"props":2106,"children":2108},{"id":2107},"configuration",[2109],{"type":48,"value":2110},"Configuration",{"type":42,"tag":214,"props":2112,"children":2114},{"className":216,"code":2113,"language":218,"meta":219,"style":219},"twilio config:list                          # show all settings\ntwilio config:set --edge=sydney             # set default edge\ntwilio config:set --require-profile-input   # prompt before using active profile\n",[2115],{"type":42,"tag":105,"props":2116,"children":2117},{"__ignoreMap":219},[2118,2135,2156],{"type":42,"tag":225,"props":2119,"children":2120},{"class":227,"line":228},[2121,2125,2130],{"type":42,"tag":225,"props":2122,"children":2123},{"style":242},[2124],{"type":48,"value":24},{"type":42,"tag":225,"props":2126,"children":2127},{"style":247},[2128],{"type":48,"value":2129}," config:list",{"type":42,"tag":225,"props":2131,"children":2132},{"style":232},[2133],{"type":48,"value":2134},"                          # show all settings\n",{"type":42,"tag":225,"props":2136,"children":2137},{"class":227,"line":238},[2138,2142,2146,2151],{"type":42,"tag":225,"props":2139,"children":2140},{"style":242},[2141],{"type":48,"value":24},{"type":42,"tag":225,"props":2143,"children":2144},{"style":247},[2145],{"type":48,"value":1988},{"type":42,"tag":225,"props":2147,"children":2148},{"style":247},[2149],{"type":48,"value":2150}," --edge=sydney",{"type":42,"tag":225,"props":2152,"children":2153},{"style":232},[2154],{"type":48,"value":2155},"             # set default edge\n",{"type":42,"tag":225,"props":2157,"children":2158},{"class":227,"line":253},[2159,2163,2167,2172],{"type":42,"tag":225,"props":2160,"children":2161},{"style":242},[2162],{"type":48,"value":24},{"type":42,"tag":225,"props":2164,"children":2165},{"style":247},[2166],{"type":48,"value":1988},{"type":42,"tag":225,"props":2168,"children":2169},{"style":247},[2170],{"type":48,"value":2171}," --require-profile-input",{"type":42,"tag":225,"props":2173,"children":2174},{"style":232},[2175],{"type":48,"value":2176},"   # prompt before using active profile\n",{"type":42,"tag":51,"props":2178,"children":2179},{},[2180,2182,2188],{"type":48,"value":2181},"Config stored at ",{"type":42,"tag":105,"props":2183,"children":2185},{"className":2184},[],[2186],{"type":48,"value":2187},"~\u002F.twilio-cli\u002Fconfig.json",{"type":48,"value":2189},".",{"type":42,"tag":51,"props":2191,"children":2192},{},[2193],{"type":42,"tag":60,"props":2194,"children":2195},{},[2196],{"type":48,"value":2197},"Syntax notes:",{"type":42,"tag":1271,"props":2199,"children":2200},{},[2201,2220,2231],{"type":42,"tag":1275,"props":2202,"children":2203},{},[2204,2206,2212,2214],{"type":48,"value":2205},"Commands use spaces by default, using colon also works: ",{"type":42,"tag":105,"props":2207,"children":2209},{"className":2208},[],[2210],{"type":48,"value":2211},"twilio api core messages create",{"type":48,"value":2213}," = ",{"type":42,"tag":105,"props":2215,"children":2217},{"className":2216},[],[2218],{"type":48,"value":2219},"twilio api:core:messages:create",{"type":42,"tag":1275,"props":2221,"children":2222},{},[2223,2229],{"type":42,"tag":105,"props":2224,"children":2226},{"className":2225},[],[2227],{"type":48,"value":2228},"twilio [COMMAND] --help",{"type":48,"value":2230}," for any command's options",{"type":42,"tag":1275,"props":2232,"children":2233},{},[2234,2236,2242],{"type":48,"value":2235},"Multi-line: use ",{"type":42,"tag":105,"props":2237,"children":2239},{"className":2238},[],[2240],{"type":48,"value":2241},"\\",{"type":48,"value":2243}," for line continuation",{"type":42,"tag":204,"props":2245,"children":2246},{},[],{"type":42,"tag":43,"props":2248,"children":2250},{"id":2249},"cannot",[2251],{"type":48,"value":2252},"CANNOT",{"type":42,"tag":1271,"props":2254,"children":2255},{},[2256,2274,2284,2294,2304,2309],{"type":42,"tag":1275,"props":2257,"children":2258},{},[2259,2264,2266,2272],{"type":42,"tag":60,"props":2260,"children":2261},{},[2262],{"type":48,"value":2263},"Default list limit is 50 records",{"type":48,"value":2265}," — always pass ",{"type":42,"tag":105,"props":2267,"children":2269},{"className":2268},[],[2270],{"type":48,"value":2271},"--limit",{"type":48,"value":2273}," for larger result sets.",{"type":42,"tag":1275,"props":2275,"children":2276},{},[2277,2282],{"type":42,"tag":60,"props":2278,"children":2279},{},[2280],{"type":48,"value":2281},"API timeout is 30 seconds",{"type":48,"value":2283}," — long-running operations may fail silently.",{"type":42,"tag":1275,"props":2285,"children":2286},{},[2287,2292],{"type":42,"tag":60,"props":2288,"children":2289},{},[2290],{"type":48,"value":2291},"Cannot use localhost URLs for webhooks",{"type":48,"value":2293}," — use a tunneling service, such as ngrok, installed separately.",{"type":42,"tag":1275,"props":2295,"children":2296},{},[2297,2302],{"type":42,"tag":60,"props":2298,"children":2299},{},[2300],{"type":48,"value":2301},"No autocomplete on Windows",{"type":48,"value":2303}," — only bash\u002Fzsh supported.",{"type":42,"tag":1275,"props":2305,"children":2306},{},[2307],{"type":48,"value":2308},"** ngrok is not bundled with twilio-cli**, install separately",{"type":42,"tag":1275,"props":2310,"children":2311},{},[2312,2317,2319,2325],{"type":42,"tag":60,"props":2313,"children":2314},{},[2315],{"type":48,"value":2316},"Cannot send Twilio Email (comms API) via CLI",{"type":48,"value":2318}," — ",{"type":42,"tag":105,"props":2320,"children":2322},{"className":2321},[],[2323],{"type":48,"value":2324},"twilio email:send",{"type":48,"value":2326}," uses SendGrid only. For Twilio Email, use the REST API directly.",{"type":42,"tag":204,"props":2328,"children":2329},{},[],{"type":42,"tag":43,"props":2331,"children":2333},{"id":2332},"next-steps",[2334],{"type":48,"value":2335},"Next Steps",{"type":42,"tag":1271,"props":2337,"children":2338},{},[2339,2361,2376,2391,2406],{"type":42,"tag":1275,"props":2340,"children":2341},{},[2342,2347,2348,2354,2355],{"type":42,"tag":60,"props":2343,"children":2344},{},[2345],{"type":48,"value":2346},"Account setup and API keys:",{"type":48,"value":181},{"type":42,"tag":105,"props":2349,"children":2351},{"className":2350},[],[2352],{"type":48,"value":2353},"twilio-account-setup",{"type":48,"value":463},{"type":42,"tag":105,"props":2356,"children":2358},{"className":2357},[],[2359],{"type":48,"value":2360},"twilio-iam-auth-setup",{"type":42,"tag":1275,"props":2362,"children":2363},{},[2364,2369,2370],{"type":42,"tag":60,"props":2365,"children":2366},{},[2367],{"type":48,"value":2368},"Webhook architecture and signature validation:",{"type":48,"value":181},{"type":42,"tag":105,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":48,"value":2375},"twilio-webhook-architecture",{"type":42,"tag":1275,"props":2377,"children":2378},{},[2379,2384,2385],{"type":42,"tag":60,"props":2380,"children":2381},{},[2382],{"type":48,"value":2383},"Debugging and observability:",{"type":48,"value":181},{"type":42,"tag":105,"props":2386,"children":2388},{"className":2387},[],[2389],{"type":48,"value":2390},"twilio-debugging-observability",{"type":42,"tag":1275,"props":2392,"children":2393},{},[2394,2399,2400],{"type":42,"tag":60,"props":2395,"children":2396},{},[2397],{"type":48,"value":2398},"Send SMS via API\u002FSDK:",{"type":48,"value":181},{"type":42,"tag":105,"props":2401,"children":2403},{"className":2402},[],[2404],{"type":48,"value":2405},"twilio-send-message",{"type":42,"tag":1275,"props":2407,"children":2408},{},[2409,2414,2415],{"type":42,"tag":60,"props":2410,"children":2411},{},[2412],{"type":48,"value":2413},"SendGrid email setup:",{"type":48,"value":181},{"type":42,"tag":105,"props":2416,"children":2418},{"className":2417},[],[2419],{"type":48,"value":2420},"twilio-sendgrid-account-setup",{"type":42,"tag":2422,"props":2423,"children":2424},"style",{},[2425],{"type":48,"value":2426},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2428,"total":2549},[2429,2447,2463,2475,2495,2517,2537],{"slug":2430,"name":2430,"fn":2431,"description":2432,"org":2433,"tags":2434,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2435,2438,2441,2444],{"name":2436,"slug":2437,"type":15},"Accessibility","accessibility",{"name":2439,"slug":2440,"type":15},"Charts","charts",{"name":2442,"slug":2443,"type":15},"Data Visualization","data-visualization",{"name":2445,"slug":2446,"type":15},"Design","design",{"slug":2448,"name":2448,"fn":2449,"description":2450,"org":2451,"tags":2452,"stars":25,"repoUrl":26,"updatedAt":2462},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2453,2456,2459],{"name":2454,"slug":2455,"type":15},"Agents","agents",{"name":2457,"slug":2458,"type":15},"Browser Automation","browser-automation",{"name":2460,"slug":2461,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2464,"name":2464,"fn":2465,"description":2466,"org":2467,"tags":2468,"stars":25,"repoUrl":26,"updatedAt":2474},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2469,2470,2473],{"name":2457,"slug":2458,"type":15},{"name":2471,"slug":2472,"type":15},"Local Development","local-development",{"name":2460,"slug":2461,"type":15},"2026-04-06T18:41:17.526867",{"slug":2476,"name":2476,"fn":2477,"description":2478,"org":2479,"tags":2480,"stars":25,"repoUrl":26,"updatedAt":2494},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2481,2482,2485,2488,2491],{"name":2454,"slug":2455,"type":15},{"name":2483,"slug":2484,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2486,"slug":2487,"type":15},"SDK","sdk",{"name":2489,"slug":2490,"type":15},"Serverless","serverless",{"name":2492,"slug":2493,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2496,"name":2496,"fn":2497,"description":2498,"org":2499,"tags":2500,"stars":25,"repoUrl":26,"updatedAt":2516},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2501,2504,2507,2510,2513],{"name":2502,"slug":2503,"type":15},"Frontend","frontend",{"name":2505,"slug":2506,"type":15},"React","react",{"name":2508,"slug":2509,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2511,"slug":2512,"type":15},"UI Components","ui-components",{"name":2514,"slug":2515,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2518,"name":2518,"fn":2519,"description":2520,"org":2521,"tags":2522,"stars":25,"repoUrl":26,"updatedAt":2536},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2523,2526,2529,2532,2535],{"name":2524,"slug":2525,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2527,"slug":2528,"type":15},"Cost Optimization","cost-optimization",{"name":2530,"slug":2531,"type":15},"LLM","llm",{"name":2533,"slug":2534,"type":15},"Performance","performance",{"name":2514,"slug":2515,"type":15},"2026-04-06T18:40:44.377464",{"slug":2538,"name":2538,"fn":2539,"description":2540,"org":2541,"tags":2542,"stars":25,"repoUrl":26,"updatedAt":2548},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2543,2544,2547],{"name":2527,"slug":2528,"type":15},{"name":2545,"slug":2546,"type":15},"Database","database",{"name":2530,"slug":2531,"type":15},"2026-04-06T18:41:08.513425",600,{"items":2551,"total":2746},[2552,2573,2596,2613,2627,2644,2663,2675,2689,2703,2715,2730],{"slug":2553,"name":2553,"fn":2554,"description":2555,"org":2556,"tags":2557,"stars":2570,"repoUrl":2571,"updatedAt":2572},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2558,2561,2564,2567],{"name":2559,"slug":2560,"type":15},"Documents","documents",{"name":2562,"slug":2563,"type":15},"Healthcare","healthcare",{"name":2565,"slug":2566,"type":15},"Insurance","insurance",{"name":2568,"slug":2569,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2574,"name":2574,"fn":2575,"description":2576,"org":2577,"tags":2578,"stars":2593,"repoUrl":2594,"updatedAt":2595},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2579,2582,2584,2587,2590],{"name":2580,"slug":2581,"type":15},".NET","dotnet",{"name":2583,"slug":2574,"type":15},"ASP.NET Core",{"name":2585,"slug":2586,"type":15},"Blazor","blazor",{"name":2588,"slug":2589,"type":15},"C#","csharp",{"name":2591,"slug":2592,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2597,"name":2597,"fn":2598,"description":2599,"org":2600,"tags":2601,"stars":2593,"repoUrl":2594,"updatedAt":2612},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2602,2605,2608,2611],{"name":2603,"slug":2604,"type":15},"Apps SDK","apps-sdk",{"name":2606,"slug":2607,"type":15},"ChatGPT","chatgpt",{"name":2609,"slug":2610,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2614,"name":2614,"fn":2615,"description":2616,"org":2617,"tags":2618,"stars":2593,"repoUrl":2594,"updatedAt":2626},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2619,2622,2623],{"name":2620,"slug":2621,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":2624,"slug":2625,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2628,"name":2628,"fn":2629,"description":2630,"org":2631,"tags":2632,"stars":2593,"repoUrl":2594,"updatedAt":2643},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2633,2636,2639,2640],{"name":2634,"slug":2635,"type":15},"Cloudflare","cloudflare",{"name":2637,"slug":2638,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2483,"slug":2484,"type":15},{"name":2641,"slug":2642,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2645,"name":2645,"fn":2646,"description":2647,"org":2648,"tags":2649,"stars":2593,"repoUrl":2594,"updatedAt":2662},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2650,2653,2656,2659],{"name":2651,"slug":2652,"type":15},"Productivity","productivity",{"name":2654,"slug":2655,"type":15},"Project Management","project-management",{"name":2657,"slug":2658,"type":15},"Strategy","strategy",{"name":2660,"slug":2661,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2664,"name":2664,"fn":2665,"description":2666,"org":2667,"tags":2668,"stars":2593,"repoUrl":2594,"updatedAt":2674},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2669,2670,2672,2673],{"name":2445,"slug":2446,"type":15},{"name":2671,"slug":2664,"type":15},"Figma",{"name":2502,"slug":2503,"type":15},{"name":2609,"slug":2610,"type":15},"2026-04-12T05:06:47.939943",{"slug":2676,"name":2676,"fn":2677,"description":2678,"org":2679,"tags":2680,"stars":2593,"repoUrl":2594,"updatedAt":2688},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2681,2682,2685,2686,2687],{"name":2445,"slug":2446,"type":15},{"name":2683,"slug":2684,"type":15},"Design System","design-system",{"name":2671,"slug":2664,"type":15},{"name":2502,"slug":2503,"type":15},{"name":2511,"slug":2512,"type":15},"2026-05-10T05:59:52.971881",{"slug":2690,"name":2690,"fn":2691,"description":2692,"org":2693,"tags":2694,"stars":2593,"repoUrl":2594,"updatedAt":2702},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2695,2696,2697,2700,2701],{"name":2445,"slug":2446,"type":15},{"name":2683,"slug":2684,"type":15},{"name":2698,"slug":2699,"type":15},"Documentation","documentation",{"name":2671,"slug":2664,"type":15},{"name":2502,"slug":2503,"type":15},"2026-05-16T06:07:47.821474",{"slug":2704,"name":2704,"fn":2705,"description":2706,"org":2707,"tags":2708,"stars":2593,"repoUrl":2594,"updatedAt":2714},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2709,2710,2711,2712,2713],{"name":2445,"slug":2446,"type":15},{"name":2671,"slug":2664,"type":15},{"name":2502,"slug":2503,"type":15},{"name":2511,"slug":2512,"type":15},{"name":2591,"slug":2592,"type":15},"2026-05-16T06:07:40.583615",{"slug":2716,"name":2716,"fn":2717,"description":2718,"org":2719,"tags":2720,"stars":2593,"repoUrl":2594,"updatedAt":2729},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2721,2724,2725,2728],{"name":2722,"slug":2723,"type":15},"Animation","animation",{"name":2624,"slug":2625,"type":15},{"name":2726,"slug":2727,"type":15},"Creative","creative",{"name":2445,"slug":2446,"type":15},"2026-05-02T05:31:48.48485",{"slug":2731,"name":2731,"fn":2732,"description":2733,"org":2734,"tags":2735,"stars":2593,"repoUrl":2594,"updatedAt":2745},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2736,2737,2738,2741,2744],{"name":2726,"slug":2727,"type":15},{"name":2445,"slug":2446,"type":15},{"name":2739,"slug":2740,"type":15},"Image Generation","image-generation",{"name":2742,"slug":2743,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]