[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-twilio-twilio-content-template-builder":3,"mdc-5u1nty-key":36,"related-org-twilio-twilio-content-template-builder":1323,"related-repo-twilio-twilio-content-template-builder":1494},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":34,"mdContent":35},"twilio-content-template-builder","create and send message templates with Twilio","Create, manage, and send message templates using Twilio's Content API. Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage; WhatsApp Meta approval; and sending templates via ContentSid. Use this skill when building structured messages that require pre-approval or consistent formatting across channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"twilio","Twilio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftwilio.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"SMS","sms","tag",{"name":17,"slug":18,"type":15},"Templates","templates",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"name":23,"slug":24,"type":15},"Email","email",{"name":9,"slug":8,"type":15},25,"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai","2026-07-17T06:04:26.637309",null,7,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":29},[],"https:\u002F\u002Fgithub.com\u002Ftwilio\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Ftwilio\u002Ftwilio-content-template-builder","---\nname: twilio-content-template-builder\ndescription: >\n  Create, manage, and send message templates using Twilio's Content API.\n  Covers template creation for WhatsApp, SMS, RCS, and MMS; variable usage;\n  WhatsApp Meta approval; and sending templates via ContentSid. Use this skill\n  when building structured messages that require pre-approval or consistent\n  formatting across channels.\n---\n\n## Overview\n\nThe Content API creates channel-agnostic templates identified by a `ContentSid` (`HX...`). WhatsApp templates must be approved by Meta before use outside the 24-hour service window.\n\n---\n\n## Prerequisites\n\n- Twilio account — New to Twilio? See `twilio-account-setup`\n- For WhatsApp templates: active WhatsApp sender\n  — See `twilio-whatsapp-send-message` (sandbox) or `twilio-whatsapp-manage-senders` (production)\n- Environment variables:\n  - `TWILIO_ACCOUNT_SID`\n  - `TWILIO_AUTH_TOKEN`\n  — See `twilio-iam-auth-setup` for credential setup and best practices\n- SDK: `pip install twilio` \u002F `npm install twilio`\n\n---\n\n## Quickstart\n\n**Step 1 — Create a template via Console** (simplest)\n\nConsole > Messaging > Content Template Builder > Create new. Use `{{1}}`, `{{2}}` for variables. Save to get a `ContentSid`.\n\n**Step 2 — Send the template**\n\n**Python**\n```python\nimport os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n\nmessage = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15558675310\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\"}'\n)\nprint(message.sid)\n```\n\n**Node.js**\n```node\nconst twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15558675310\",\n    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    contentVariables: JSON.stringify({ \"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\" }),\n});\n```\n\n---\n\n## Key Patterns\n\n### Create a Template via API\n\n**Python**\n```python\ntemplate = client.content.v1.contents.create(\n    friendly_name=\"appointment-reminder\",\n    language=\"en\",\n    types={\n        \"twilio\u002Ftext\": {\n            \"body\": \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\"\n        }\n    }\n)\nprint(template.sid)  # HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n```\n\n**Node.js**\n```node\nconst template = await client.content.v1.contents.create({\n    friendlyName: \"appointment-reminder\",\n    language: \"en\",\n    types: {\n        \"twilio\u002Ftext\": {\n            body: \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\",\n        },\n    },\n});\nconsole.log(template.sid);\n```\n\n### Submit for WhatsApp Approval\n\n**Python**\n```python\napproval = client.content.v1 \\\n    .contents(template.sid) \\\n    .approval_requests \\\n    .create(name=\"appointment-reminder\", category=\"UTILITY\")\nprint(approval.status)  # PENDING\n```\n\n**Node.js**\n```node\nconst approval = await client.content.v1\n    .contents(templateSid)\n    .approvalRequests.create({ name: \"appointment-reminder\", category: \"UTILITY\" });\nconsole.log(approval.status);\n```\n\nCategories: `UTILITY`, `MARKETING`, `AUTHENTICATION`\n\n### Check Approval Status\n\n**Python**\n```python\ncontent = client.content.v1.contents(template.sid).fetch()\nprint(content.approval_requests.status)  # APPROVED | REJECTED | PENDING\n```\n\n**Node.js**\n```node\nconst content = await client.content.v1.contents(templateSid).fetch();\nconsole.log(content.approvalRequests.status);\n```\n\nApproval typically takes under 1 hour.\n\n### List and Delete Templates\n\n**Python**\n```python\nfor template in client.content.v1.contents.list():\n    print(template.sid, template.friendly_name, template.language)\n\nclient.content.v1.contents(\"HXxxxxxxxxxx\").delete()\n```\n\n**Node.js**\n```node\nconst templates = await client.content.v1.contents.list();\ntemplates.forEach(t => console.log(t.sid, t.friendlyName, t.language));\n\nawait client.content.v1.contents(\"HXxxxxxxxxxx\").remove();\n```\n\n### Supported Content Types\n\n| Type | `types` key | Channels |\n|------|------------|---------|\n| Plain text | `twilio\u002Ftext` | All |\n| Media (image, video) | `twilio\u002Fmedia` | WhatsApp, MMS, RCS |\n| Quick reply buttons | `twilio\u002Fquick-reply` | WhatsApp, RCS |\n| Call-to-action buttons | `twilio\u002Fcall-to-action` | WhatsApp, RCS |\n| List picker | `twilio\u002Flist-picker` | WhatsApp |\n| Card | `twilio\u002Fcard` | RCS |\n| Carousel | `twilio\u002Fcarousel` | RCS |\n\n### RCS Fallback Text\n\nWhen sending a rich RCS template (card, carousel, quick reply) via a Messaging Service with SMS fallback configured, Twilio uses the template's `twilio\u002Ftext` body as the SMS fallback copy. Any template intended for RCS should include a `twilio\u002Ftext` entry so recipients on non-RCS devices still receive a readable message.\n\n---\n\n## Variable Rules\n\n- Use `{{1}}`, `{{2}}` — sequential, no skipping\n- Max 100 variables per template\n- Provide sample values for WhatsApp submissions\n- Non-variable to variable ratio must be at least `(2x + 1) : x`\n\n---\n\n## CANNOT\n\n- **Cannot use WhatsApp templates without Meta approval** — Plan for up to 24 hours review time\n- **Cannot resubmit a rejected template with the same name** — Use a different name for resubmission\n- **Cannot include custom variables in AUTHENTICATION templates** — Fixed format required by Meta\n\n---\n\n## Next Steps\n\n- **Channel overview and onboarding guide:** `twilio-messaging-overview`\n- **Send WhatsApp messages:** `twilio-whatsapp-send-message`\n- **Register a production WhatsApp sender:** `twilio-whatsapp-manage-senders`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,73,77,83,175,178,184,195,223,231,239,359,367,447,450,456,463,470,556,563,648,654,661,708,715,754,779,785,792,815,822,845,850,856,863,901,908,946,952,1143,1149,1168,1171,1177,1219,1222,1228,1261,1264,1270,1317],{"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,56,63,65,71],{"type":48,"value":55},"The Content API creates channel-agnostic templates identified by a ",{"type":42,"tag":57,"props":58,"children":60},"code",{"className":59},[],[61],{"type":48,"value":62},"ContentSid",{"type":48,"value":64}," (",{"type":42,"tag":57,"props":66,"children":68},{"className":67},[],[69],{"type":48,"value":70},"HX...",{"type":48,"value":72},"). WhatsApp templates must be approved by Meta before use outside the 24-hour service window.",{"type":42,"tag":74,"props":75,"children":76},"hr",{},[],{"type":42,"tag":43,"props":78,"children":80},{"id":79},"prerequisites",[81],{"type":48,"value":82},"Prerequisites",{"type":42,"tag":84,"props":85,"children":86},"ul",{},[87,99,120,156],{"type":42,"tag":88,"props":89,"children":90},"li",{},[91,93],{"type":48,"value":92},"Twilio account — New to Twilio? See ",{"type":42,"tag":57,"props":94,"children":96},{"className":95},[],[97],{"type":48,"value":98},"twilio-account-setup",{"type":42,"tag":88,"props":100,"children":101},{},[102,104,110,112,118],{"type":48,"value":103},"For WhatsApp templates: active WhatsApp sender\n— See ",{"type":42,"tag":57,"props":105,"children":107},{"className":106},[],[108],{"type":48,"value":109},"twilio-whatsapp-send-message",{"type":48,"value":111}," (sandbox) or ",{"type":42,"tag":57,"props":113,"children":115},{"className":114},[],[116],{"type":48,"value":117},"twilio-whatsapp-manage-senders",{"type":48,"value":119}," (production)",{"type":42,"tag":88,"props":121,"children":122},{},[123,125],{"type":48,"value":124},"Environment variables:\n",{"type":42,"tag":84,"props":126,"children":127},{},[128,137],{"type":42,"tag":88,"props":129,"children":130},{},[131],{"type":42,"tag":57,"props":132,"children":134},{"className":133},[],[135],{"type":48,"value":136},"TWILIO_ACCOUNT_SID",{"type":42,"tag":88,"props":138,"children":139},{},[140,146,148,154],{"type":42,"tag":57,"props":141,"children":143},{"className":142},[],[144],{"type":48,"value":145},"TWILIO_AUTH_TOKEN",{"type":48,"value":147},"\n— See ",{"type":42,"tag":57,"props":149,"children":151},{"className":150},[],[152],{"type":48,"value":153},"twilio-iam-auth-setup",{"type":48,"value":155}," for credential setup and best practices",{"type":42,"tag":88,"props":157,"children":158},{},[159,161,167,169],{"type":48,"value":160},"SDK: ",{"type":42,"tag":57,"props":162,"children":164},{"className":163},[],[165],{"type":48,"value":166},"pip install twilio",{"type":48,"value":168}," \u002F ",{"type":42,"tag":57,"props":170,"children":172},{"className":171},[],[173],{"type":48,"value":174},"npm install twilio",{"type":42,"tag":74,"props":176,"children":177},{},[],{"type":42,"tag":43,"props":179,"children":181},{"id":180},"quickstart",[182],{"type":48,"value":183},"Quickstart",{"type":42,"tag":51,"props":185,"children":186},{},[187,193],{"type":42,"tag":188,"props":189,"children":190},"strong",{},[191],{"type":48,"value":192},"Step 1 — Create a template via Console",{"type":48,"value":194}," (simplest)",{"type":42,"tag":51,"props":196,"children":197},{},[198,200,206,208,214,216,221],{"type":48,"value":199},"Console > Messaging > Content Template Builder > Create new. Use ",{"type":42,"tag":57,"props":201,"children":203},{"className":202},[],[204],{"type":48,"value":205},"{{1}}",{"type":48,"value":207},", ",{"type":42,"tag":57,"props":209,"children":211},{"className":210},[],[212],{"type":48,"value":213},"{{2}}",{"type":48,"value":215}," for variables. Save to get a ",{"type":42,"tag":57,"props":217,"children":219},{"className":218},[],[220],{"type":48,"value":62},{"type":48,"value":222},".",{"type":42,"tag":51,"props":224,"children":225},{},[226],{"type":42,"tag":188,"props":227,"children":228},{},[229],{"type":48,"value":230},"Step 2 — Send the template",{"type":42,"tag":51,"props":232,"children":233},{},[234],{"type":42,"tag":188,"props":235,"children":236},{},[237],{"type":48,"value":238},"Python",{"type":42,"tag":240,"props":241,"children":246},"pre",{"className":242,"code":243,"language":244,"meta":245,"style":245},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import os\nfrom twilio.rest import Client\n\nclient = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n\nmessage = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15558675310\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\"}'\n)\nprint(message.sid)\n","python","",[247],{"type":42,"tag":57,"props":248,"children":249},{"__ignoreMap":245},[250,261,270,280,289,297,306,314,323,332,341,350],{"type":42,"tag":251,"props":252,"children":255},"span",{"class":253,"line":254},"line",1,[256],{"type":42,"tag":251,"props":257,"children":258},{},[259],{"type":48,"value":260},"import os\n",{"type":42,"tag":251,"props":262,"children":264},{"class":253,"line":263},2,[265],{"type":42,"tag":251,"props":266,"children":267},{},[268],{"type":48,"value":269},"from twilio.rest import Client\n",{"type":42,"tag":251,"props":271,"children":273},{"class":253,"line":272},3,[274],{"type":42,"tag":251,"props":275,"children":277},{"emptyLinePlaceholder":276},true,[278],{"type":48,"value":279},"\n",{"type":42,"tag":251,"props":281,"children":283},{"class":253,"line":282},4,[284],{"type":42,"tag":251,"props":285,"children":286},{},[287],{"type":48,"value":288},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":42,"tag":251,"props":290,"children":292},{"class":253,"line":291},5,[293],{"type":42,"tag":251,"props":294,"children":295},{"emptyLinePlaceholder":276},[296],{"type":48,"value":279},{"type":42,"tag":251,"props":298,"children":300},{"class":253,"line":299},6,[301],{"type":42,"tag":251,"props":302,"children":303},{},[304],{"type":48,"value":305},"message = client.messages.create(\n",{"type":42,"tag":251,"props":307,"children":308},{"class":253,"line":30},[309],{"type":42,"tag":251,"props":310,"children":311},{},[312],{"type":48,"value":313},"    from_=\"whatsapp:+14155238886\",\n",{"type":42,"tag":251,"props":315,"children":317},{"class":253,"line":316},8,[318],{"type":42,"tag":251,"props":319,"children":320},{},[321],{"type":48,"value":322},"    to=\"whatsapp:+15558675310\",\n",{"type":42,"tag":251,"props":324,"children":326},{"class":253,"line":325},9,[327],{"type":42,"tag":251,"props":328,"children":329},{},[330],{"type":48,"value":331},"    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":42,"tag":251,"props":333,"children":335},{"class":253,"line":334},10,[336],{"type":42,"tag":251,"props":337,"children":338},{},[339],{"type":48,"value":340},"    content_variables='{\"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\"}'\n",{"type":42,"tag":251,"props":342,"children":344},{"class":253,"line":343},11,[345],{"type":42,"tag":251,"props":346,"children":347},{},[348],{"type":48,"value":349},")\n",{"type":42,"tag":251,"props":351,"children":353},{"class":253,"line":352},12,[354],{"type":42,"tag":251,"props":355,"children":356},{},[357],{"type":48,"value":358},"print(message.sid)\n",{"type":42,"tag":51,"props":360,"children":361},{},[362],{"type":42,"tag":188,"props":363,"children":364},{},[365],{"type":48,"value":366},"Node.js",{"type":42,"tag":240,"props":368,"children":372},{"className":369,"code":370,"language":371,"meta":245,"style":245},"language-node shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const twilio = require(\"twilio\");\nconst client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\nconst message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15558675310\",\n    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    contentVariables: JSON.stringify({ \"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\" }),\n});\n","node",[373],{"type":42,"tag":57,"props":374,"children":375},{"__ignoreMap":245},[376,384,392,399,407,415,423,431,439],{"type":42,"tag":251,"props":377,"children":378},{"class":253,"line":254},[379],{"type":42,"tag":251,"props":380,"children":381},{},[382],{"type":48,"value":383},"const twilio = require(\"twilio\");\n",{"type":42,"tag":251,"props":385,"children":386},{"class":253,"line":263},[387],{"type":42,"tag":251,"props":388,"children":389},{},[390],{"type":48,"value":391},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":42,"tag":251,"props":393,"children":394},{"class":253,"line":272},[395],{"type":42,"tag":251,"props":396,"children":397},{"emptyLinePlaceholder":276},[398],{"type":48,"value":279},{"type":42,"tag":251,"props":400,"children":401},{"class":253,"line":282},[402],{"type":42,"tag":251,"props":403,"children":404},{},[405],{"type":48,"value":406},"const message = await client.messages.create({\n",{"type":42,"tag":251,"props":408,"children":409},{"class":253,"line":291},[410],{"type":42,"tag":251,"props":411,"children":412},{},[413],{"type":48,"value":414},"    from: \"whatsapp:+14155238886\",\n",{"type":42,"tag":251,"props":416,"children":417},{"class":253,"line":299},[418],{"type":42,"tag":251,"props":419,"children":420},{},[421],{"type":48,"value":422},"    to: \"whatsapp:+15558675310\",\n",{"type":42,"tag":251,"props":424,"children":425},{"class":253,"line":30},[426],{"type":42,"tag":251,"props":427,"children":428},{},[429],{"type":48,"value":430},"    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":42,"tag":251,"props":432,"children":433},{"class":253,"line":316},[434],{"type":42,"tag":251,"props":435,"children":436},{},[437],{"type":48,"value":438},"    contentVariables: JSON.stringify({ \"1\": \"Sarah\", \"2\": \"March 28\", \"3\": \"10:00 AM\" }),\n",{"type":42,"tag":251,"props":440,"children":441},{"class":253,"line":325},[442],{"type":42,"tag":251,"props":443,"children":444},{},[445],{"type":48,"value":446},"});\n",{"type":42,"tag":74,"props":448,"children":449},{},[],{"type":42,"tag":43,"props":451,"children":453},{"id":452},"key-patterns",[454],{"type":48,"value":455},"Key Patterns",{"type":42,"tag":457,"props":458,"children":460},"h3",{"id":459},"create-a-template-via-api",[461],{"type":48,"value":462},"Create a Template via API",{"type":42,"tag":51,"props":464,"children":465},{},[466],{"type":42,"tag":188,"props":467,"children":468},{},[469],{"type":48,"value":238},{"type":42,"tag":240,"props":471,"children":473},{"className":242,"code":472,"language":244,"meta":245,"style":245},"template = client.content.v1.contents.create(\n    friendly_name=\"appointment-reminder\",\n    language=\"en\",\n    types={\n        \"twilio\u002Ftext\": {\n            \"body\": \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\"\n        }\n    }\n)\nprint(template.sid)  # HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",[474],{"type":42,"tag":57,"props":475,"children":476},{"__ignoreMap":245},[477,485,493,501,509,517,525,533,541,548],{"type":42,"tag":251,"props":478,"children":479},{"class":253,"line":254},[480],{"type":42,"tag":251,"props":481,"children":482},{},[483],{"type":48,"value":484},"template = client.content.v1.contents.create(\n",{"type":42,"tag":251,"props":486,"children":487},{"class":253,"line":263},[488],{"type":42,"tag":251,"props":489,"children":490},{},[491],{"type":48,"value":492},"    friendly_name=\"appointment-reminder\",\n",{"type":42,"tag":251,"props":494,"children":495},{"class":253,"line":272},[496],{"type":42,"tag":251,"props":497,"children":498},{},[499],{"type":48,"value":500},"    language=\"en\",\n",{"type":42,"tag":251,"props":502,"children":503},{"class":253,"line":282},[504],{"type":42,"tag":251,"props":505,"children":506},{},[507],{"type":48,"value":508},"    types={\n",{"type":42,"tag":251,"props":510,"children":511},{"class":253,"line":291},[512],{"type":42,"tag":251,"props":513,"children":514},{},[515],{"type":48,"value":516},"        \"twilio\u002Ftext\": {\n",{"type":42,"tag":251,"props":518,"children":519},{"class":253,"line":299},[520],{"type":42,"tag":251,"props":521,"children":522},{},[523],{"type":48,"value":524},"            \"body\": \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\"\n",{"type":42,"tag":251,"props":526,"children":527},{"class":253,"line":30},[528],{"type":42,"tag":251,"props":529,"children":530},{},[531],{"type":48,"value":532},"        }\n",{"type":42,"tag":251,"props":534,"children":535},{"class":253,"line":316},[536],{"type":42,"tag":251,"props":537,"children":538},{},[539],{"type":48,"value":540},"    }\n",{"type":42,"tag":251,"props":542,"children":543},{"class":253,"line":325},[544],{"type":42,"tag":251,"props":545,"children":546},{},[547],{"type":48,"value":349},{"type":42,"tag":251,"props":549,"children":550},{"class":253,"line":334},[551],{"type":42,"tag":251,"props":552,"children":553},{},[554],{"type":48,"value":555},"print(template.sid)  # HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",{"type":42,"tag":51,"props":557,"children":558},{},[559],{"type":42,"tag":188,"props":560,"children":561},{},[562],{"type":48,"value":366},{"type":42,"tag":240,"props":564,"children":566},{"className":369,"code":565,"language":371,"meta":245,"style":245},"const template = await client.content.v1.contents.create({\n    friendlyName: \"appointment-reminder\",\n    language: \"en\",\n    types: {\n        \"twilio\u002Ftext\": {\n            body: \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\",\n        },\n    },\n});\nconsole.log(template.sid);\n",[567],{"type":42,"tag":57,"props":568,"children":569},{"__ignoreMap":245},[570,578,586,594,602,609,617,625,633,640],{"type":42,"tag":251,"props":571,"children":572},{"class":253,"line":254},[573],{"type":42,"tag":251,"props":574,"children":575},{},[576],{"type":48,"value":577},"const template = await client.content.v1.contents.create({\n",{"type":42,"tag":251,"props":579,"children":580},{"class":253,"line":263},[581],{"type":42,"tag":251,"props":582,"children":583},{},[584],{"type":48,"value":585},"    friendlyName: \"appointment-reminder\",\n",{"type":42,"tag":251,"props":587,"children":588},{"class":253,"line":272},[589],{"type":42,"tag":251,"props":590,"children":591},{},[592],{"type":48,"value":593},"    language: \"en\",\n",{"type":42,"tag":251,"props":595,"children":596},{"class":253,"line":282},[597],{"type":42,"tag":251,"props":598,"children":599},{},[600],{"type":48,"value":601},"    types: {\n",{"type":42,"tag":251,"props":603,"children":604},{"class":253,"line":291},[605],{"type":42,"tag":251,"props":606,"children":607},{},[608],{"type":48,"value":516},{"type":42,"tag":251,"props":610,"children":611},{"class":253,"line":299},[612],{"type":42,"tag":251,"props":613,"children":614},{},[615],{"type":48,"value":616},"            body: \"Hi {{1}}, your appointment is on {{2}} at {{3}}. Reply YES to confirm.\",\n",{"type":42,"tag":251,"props":618,"children":619},{"class":253,"line":30},[620],{"type":42,"tag":251,"props":621,"children":622},{},[623],{"type":48,"value":624},"        },\n",{"type":42,"tag":251,"props":626,"children":627},{"class":253,"line":316},[628],{"type":42,"tag":251,"props":629,"children":630},{},[631],{"type":48,"value":632},"    },\n",{"type":42,"tag":251,"props":634,"children":635},{"class":253,"line":325},[636],{"type":42,"tag":251,"props":637,"children":638},{},[639],{"type":48,"value":446},{"type":42,"tag":251,"props":641,"children":642},{"class":253,"line":334},[643],{"type":42,"tag":251,"props":644,"children":645},{},[646],{"type":48,"value":647},"console.log(template.sid);\n",{"type":42,"tag":457,"props":649,"children":651},{"id":650},"submit-for-whatsapp-approval",[652],{"type":48,"value":653},"Submit for WhatsApp Approval",{"type":42,"tag":51,"props":655,"children":656},{},[657],{"type":42,"tag":188,"props":658,"children":659},{},[660],{"type":48,"value":238},{"type":42,"tag":240,"props":662,"children":664},{"className":242,"code":663,"language":244,"meta":245,"style":245},"approval = client.content.v1 \\\n    .contents(template.sid) \\\n    .approval_requests \\\n    .create(name=\"appointment-reminder\", category=\"UTILITY\")\nprint(approval.status)  # PENDING\n",[665],{"type":42,"tag":57,"props":666,"children":667},{"__ignoreMap":245},[668,676,684,692,700],{"type":42,"tag":251,"props":669,"children":670},{"class":253,"line":254},[671],{"type":42,"tag":251,"props":672,"children":673},{},[674],{"type":48,"value":675},"approval = client.content.v1 \\\n",{"type":42,"tag":251,"props":677,"children":678},{"class":253,"line":263},[679],{"type":42,"tag":251,"props":680,"children":681},{},[682],{"type":48,"value":683},"    .contents(template.sid) \\\n",{"type":42,"tag":251,"props":685,"children":686},{"class":253,"line":272},[687],{"type":42,"tag":251,"props":688,"children":689},{},[690],{"type":48,"value":691},"    .approval_requests \\\n",{"type":42,"tag":251,"props":693,"children":694},{"class":253,"line":282},[695],{"type":42,"tag":251,"props":696,"children":697},{},[698],{"type":48,"value":699},"    .create(name=\"appointment-reminder\", category=\"UTILITY\")\n",{"type":42,"tag":251,"props":701,"children":702},{"class":253,"line":291},[703],{"type":42,"tag":251,"props":704,"children":705},{},[706],{"type":48,"value":707},"print(approval.status)  # PENDING\n",{"type":42,"tag":51,"props":709,"children":710},{},[711],{"type":42,"tag":188,"props":712,"children":713},{},[714],{"type":48,"value":366},{"type":42,"tag":240,"props":716,"children":718},{"className":369,"code":717,"language":371,"meta":245,"style":245},"const approval = await client.content.v1\n    .contents(templateSid)\n    .approvalRequests.create({ name: \"appointment-reminder\", category: \"UTILITY\" });\nconsole.log(approval.status);\n",[719],{"type":42,"tag":57,"props":720,"children":721},{"__ignoreMap":245},[722,730,738,746],{"type":42,"tag":251,"props":723,"children":724},{"class":253,"line":254},[725],{"type":42,"tag":251,"props":726,"children":727},{},[728],{"type":48,"value":729},"const approval = await client.content.v1\n",{"type":42,"tag":251,"props":731,"children":732},{"class":253,"line":263},[733],{"type":42,"tag":251,"props":734,"children":735},{},[736],{"type":48,"value":737},"    .contents(templateSid)\n",{"type":42,"tag":251,"props":739,"children":740},{"class":253,"line":272},[741],{"type":42,"tag":251,"props":742,"children":743},{},[744],{"type":48,"value":745},"    .approvalRequests.create({ name: \"appointment-reminder\", category: \"UTILITY\" });\n",{"type":42,"tag":251,"props":747,"children":748},{"class":253,"line":282},[749],{"type":42,"tag":251,"props":750,"children":751},{},[752],{"type":48,"value":753},"console.log(approval.status);\n",{"type":42,"tag":51,"props":755,"children":756},{},[757,759,765,766,772,773],{"type":48,"value":758},"Categories: ",{"type":42,"tag":57,"props":760,"children":762},{"className":761},[],[763],{"type":48,"value":764},"UTILITY",{"type":48,"value":207},{"type":42,"tag":57,"props":767,"children":769},{"className":768},[],[770],{"type":48,"value":771},"MARKETING",{"type":48,"value":207},{"type":42,"tag":57,"props":774,"children":776},{"className":775},[],[777],{"type":48,"value":778},"AUTHENTICATION",{"type":42,"tag":457,"props":780,"children":782},{"id":781},"check-approval-status",[783],{"type":48,"value":784},"Check Approval Status",{"type":42,"tag":51,"props":786,"children":787},{},[788],{"type":42,"tag":188,"props":789,"children":790},{},[791],{"type":48,"value":238},{"type":42,"tag":240,"props":793,"children":795},{"className":242,"code":794,"language":244,"meta":245,"style":245},"content = client.content.v1.contents(template.sid).fetch()\nprint(content.approval_requests.status)  # APPROVED | REJECTED | PENDING\n",[796],{"type":42,"tag":57,"props":797,"children":798},{"__ignoreMap":245},[799,807],{"type":42,"tag":251,"props":800,"children":801},{"class":253,"line":254},[802],{"type":42,"tag":251,"props":803,"children":804},{},[805],{"type":48,"value":806},"content = client.content.v1.contents(template.sid).fetch()\n",{"type":42,"tag":251,"props":808,"children":809},{"class":253,"line":263},[810],{"type":42,"tag":251,"props":811,"children":812},{},[813],{"type":48,"value":814},"print(content.approval_requests.status)  # APPROVED | REJECTED | PENDING\n",{"type":42,"tag":51,"props":816,"children":817},{},[818],{"type":42,"tag":188,"props":819,"children":820},{},[821],{"type":48,"value":366},{"type":42,"tag":240,"props":823,"children":825},{"className":369,"code":824,"language":371,"meta":245,"style":245},"const content = await client.content.v1.contents(templateSid).fetch();\nconsole.log(content.approvalRequests.status);\n",[826],{"type":42,"tag":57,"props":827,"children":828},{"__ignoreMap":245},[829,837],{"type":42,"tag":251,"props":830,"children":831},{"class":253,"line":254},[832],{"type":42,"tag":251,"props":833,"children":834},{},[835],{"type":48,"value":836},"const content = await client.content.v1.contents(templateSid).fetch();\n",{"type":42,"tag":251,"props":838,"children":839},{"class":253,"line":263},[840],{"type":42,"tag":251,"props":841,"children":842},{},[843],{"type":48,"value":844},"console.log(content.approvalRequests.status);\n",{"type":42,"tag":51,"props":846,"children":847},{},[848],{"type":48,"value":849},"Approval typically takes under 1 hour.",{"type":42,"tag":457,"props":851,"children":853},{"id":852},"list-and-delete-templates",[854],{"type":48,"value":855},"List and Delete Templates",{"type":42,"tag":51,"props":857,"children":858},{},[859],{"type":42,"tag":188,"props":860,"children":861},{},[862],{"type":48,"value":238},{"type":42,"tag":240,"props":864,"children":866},{"className":242,"code":865,"language":244,"meta":245,"style":245},"for template in client.content.v1.contents.list():\n    print(template.sid, template.friendly_name, template.language)\n\nclient.content.v1.contents(\"HXxxxxxxxxxx\").delete()\n",[867],{"type":42,"tag":57,"props":868,"children":869},{"__ignoreMap":245},[870,878,886,893],{"type":42,"tag":251,"props":871,"children":872},{"class":253,"line":254},[873],{"type":42,"tag":251,"props":874,"children":875},{},[876],{"type":48,"value":877},"for template in client.content.v1.contents.list():\n",{"type":42,"tag":251,"props":879,"children":880},{"class":253,"line":263},[881],{"type":42,"tag":251,"props":882,"children":883},{},[884],{"type":48,"value":885},"    print(template.sid, template.friendly_name, template.language)\n",{"type":42,"tag":251,"props":887,"children":888},{"class":253,"line":272},[889],{"type":42,"tag":251,"props":890,"children":891},{"emptyLinePlaceholder":276},[892],{"type":48,"value":279},{"type":42,"tag":251,"props":894,"children":895},{"class":253,"line":282},[896],{"type":42,"tag":251,"props":897,"children":898},{},[899],{"type":48,"value":900},"client.content.v1.contents(\"HXxxxxxxxxxx\").delete()\n",{"type":42,"tag":51,"props":902,"children":903},{},[904],{"type":42,"tag":188,"props":905,"children":906},{},[907],{"type":48,"value":366},{"type":42,"tag":240,"props":909,"children":911},{"className":369,"code":910,"language":371,"meta":245,"style":245},"const templates = await client.content.v1.contents.list();\ntemplates.forEach(t => console.log(t.sid, t.friendlyName, t.language));\n\nawait client.content.v1.contents(\"HXxxxxxxxxxx\").remove();\n",[912],{"type":42,"tag":57,"props":913,"children":914},{"__ignoreMap":245},[915,923,931,938],{"type":42,"tag":251,"props":916,"children":917},{"class":253,"line":254},[918],{"type":42,"tag":251,"props":919,"children":920},{},[921],{"type":48,"value":922},"const templates = await client.content.v1.contents.list();\n",{"type":42,"tag":251,"props":924,"children":925},{"class":253,"line":263},[926],{"type":42,"tag":251,"props":927,"children":928},{},[929],{"type":48,"value":930},"templates.forEach(t => console.log(t.sid, t.friendlyName, t.language));\n",{"type":42,"tag":251,"props":932,"children":933},{"class":253,"line":272},[934],{"type":42,"tag":251,"props":935,"children":936},{"emptyLinePlaceholder":276},[937],{"type":48,"value":279},{"type":42,"tag":251,"props":939,"children":940},{"class":253,"line":282},[941],{"type":42,"tag":251,"props":942,"children":943},{},[944],{"type":48,"value":945},"await client.content.v1.contents(\"HXxxxxxxxxxx\").remove();\n",{"type":42,"tag":457,"props":947,"children":949},{"id":948},"supported-content-types",[950],{"type":48,"value":951},"Supported Content Types",{"type":42,"tag":953,"props":954,"children":955},"table",{},[956,986],{"type":42,"tag":957,"props":958,"children":959},"thead",{},[960],{"type":42,"tag":961,"props":962,"children":963},"tr",{},[964,970,981],{"type":42,"tag":965,"props":966,"children":967},"th",{},[968],{"type":48,"value":969},"Type",{"type":42,"tag":965,"props":971,"children":972},{},[973,979],{"type":42,"tag":57,"props":974,"children":976},{"className":975},[],[977],{"type":48,"value":978},"types",{"type":48,"value":980}," key",{"type":42,"tag":965,"props":982,"children":983},{},[984],{"type":48,"value":985},"Channels",{"type":42,"tag":987,"props":988,"children":989},"tbody",{},[990,1013,1035,1057,1078,1100,1122],{"type":42,"tag":961,"props":991,"children":992},{},[993,999,1008],{"type":42,"tag":994,"props":995,"children":996},"td",{},[997],{"type":48,"value":998},"Plain text",{"type":42,"tag":994,"props":1000,"children":1001},{},[1002],{"type":42,"tag":57,"props":1003,"children":1005},{"className":1004},[],[1006],{"type":48,"value":1007},"twilio\u002Ftext",{"type":42,"tag":994,"props":1009,"children":1010},{},[1011],{"type":48,"value":1012},"All",{"type":42,"tag":961,"props":1014,"children":1015},{},[1016,1021,1030],{"type":42,"tag":994,"props":1017,"children":1018},{},[1019],{"type":48,"value":1020},"Media (image, video)",{"type":42,"tag":994,"props":1022,"children":1023},{},[1024],{"type":42,"tag":57,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":48,"value":1029},"twilio\u002Fmedia",{"type":42,"tag":994,"props":1031,"children":1032},{},[1033],{"type":48,"value":1034},"WhatsApp, MMS, RCS",{"type":42,"tag":961,"props":1036,"children":1037},{},[1038,1043,1052],{"type":42,"tag":994,"props":1039,"children":1040},{},[1041],{"type":48,"value":1042},"Quick reply buttons",{"type":42,"tag":994,"props":1044,"children":1045},{},[1046],{"type":42,"tag":57,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":48,"value":1051},"twilio\u002Fquick-reply",{"type":42,"tag":994,"props":1053,"children":1054},{},[1055],{"type":48,"value":1056},"WhatsApp, RCS",{"type":42,"tag":961,"props":1058,"children":1059},{},[1060,1065,1074],{"type":42,"tag":994,"props":1061,"children":1062},{},[1063],{"type":48,"value":1064},"Call-to-action buttons",{"type":42,"tag":994,"props":1066,"children":1067},{},[1068],{"type":42,"tag":57,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":48,"value":1073},"twilio\u002Fcall-to-action",{"type":42,"tag":994,"props":1075,"children":1076},{},[1077],{"type":48,"value":1056},{"type":42,"tag":961,"props":1079,"children":1080},{},[1081,1086,1095],{"type":42,"tag":994,"props":1082,"children":1083},{},[1084],{"type":48,"value":1085},"List picker",{"type":42,"tag":994,"props":1087,"children":1088},{},[1089],{"type":42,"tag":57,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":48,"value":1094},"twilio\u002Flist-picker",{"type":42,"tag":994,"props":1096,"children":1097},{},[1098],{"type":48,"value":1099},"WhatsApp",{"type":42,"tag":961,"props":1101,"children":1102},{},[1103,1108,1117],{"type":42,"tag":994,"props":1104,"children":1105},{},[1106],{"type":48,"value":1107},"Card",{"type":42,"tag":994,"props":1109,"children":1110},{},[1111],{"type":42,"tag":57,"props":1112,"children":1114},{"className":1113},[],[1115],{"type":48,"value":1116},"twilio\u002Fcard",{"type":42,"tag":994,"props":1118,"children":1119},{},[1120],{"type":48,"value":1121},"RCS",{"type":42,"tag":961,"props":1123,"children":1124},{},[1125,1130,1139],{"type":42,"tag":994,"props":1126,"children":1127},{},[1128],{"type":48,"value":1129},"Carousel",{"type":42,"tag":994,"props":1131,"children":1132},{},[1133],{"type":42,"tag":57,"props":1134,"children":1136},{"className":1135},[],[1137],{"type":48,"value":1138},"twilio\u002Fcarousel",{"type":42,"tag":994,"props":1140,"children":1141},{},[1142],{"type":48,"value":1121},{"type":42,"tag":457,"props":1144,"children":1146},{"id":1145},"rcs-fallback-text",[1147],{"type":48,"value":1148},"RCS Fallback Text",{"type":42,"tag":51,"props":1150,"children":1151},{},[1152,1154,1159,1161,1166],{"type":48,"value":1153},"When sending a rich RCS template (card, carousel, quick reply) via a Messaging Service with SMS fallback configured, Twilio uses the template's ",{"type":42,"tag":57,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":48,"value":1007},{"type":48,"value":1160}," body as the SMS fallback copy. Any template intended for RCS should include a ",{"type":42,"tag":57,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":48,"value":1007},{"type":48,"value":1167}," entry so recipients on non-RCS devices still receive a readable message.",{"type":42,"tag":74,"props":1169,"children":1170},{},[],{"type":42,"tag":43,"props":1172,"children":1174},{"id":1173},"variable-rules",[1175],{"type":48,"value":1176},"Variable Rules",{"type":42,"tag":84,"props":1178,"children":1179},{},[1180,1198,1203,1208],{"type":42,"tag":88,"props":1181,"children":1182},{},[1183,1185,1190,1191,1196],{"type":48,"value":1184},"Use ",{"type":42,"tag":57,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":48,"value":205},{"type":48,"value":207},{"type":42,"tag":57,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":48,"value":213},{"type":48,"value":1197}," — sequential, no skipping",{"type":42,"tag":88,"props":1199,"children":1200},{},[1201],{"type":48,"value":1202},"Max 100 variables per template",{"type":42,"tag":88,"props":1204,"children":1205},{},[1206],{"type":48,"value":1207},"Provide sample values for WhatsApp submissions",{"type":42,"tag":88,"props":1209,"children":1210},{},[1211,1213],{"type":48,"value":1212},"Non-variable to variable ratio must be at least ",{"type":42,"tag":57,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":48,"value":1218},"(2x + 1) : x",{"type":42,"tag":74,"props":1220,"children":1221},{},[],{"type":42,"tag":43,"props":1223,"children":1225},{"id":1224},"cannot",[1226],{"type":48,"value":1227},"CANNOT",{"type":42,"tag":84,"props":1229,"children":1230},{},[1231,1241,1251],{"type":42,"tag":88,"props":1232,"children":1233},{},[1234,1239],{"type":42,"tag":188,"props":1235,"children":1236},{},[1237],{"type":48,"value":1238},"Cannot use WhatsApp templates without Meta approval",{"type":48,"value":1240}," — Plan for up to 24 hours review time",{"type":42,"tag":88,"props":1242,"children":1243},{},[1244,1249],{"type":42,"tag":188,"props":1245,"children":1246},{},[1247],{"type":48,"value":1248},"Cannot resubmit a rejected template with the same name",{"type":48,"value":1250}," — Use a different name for resubmission",{"type":42,"tag":88,"props":1252,"children":1253},{},[1254,1259],{"type":42,"tag":188,"props":1255,"children":1256},{},[1257],{"type":48,"value":1258},"Cannot include custom variables in AUTHENTICATION templates",{"type":48,"value":1260}," — Fixed format required by Meta",{"type":42,"tag":74,"props":1262,"children":1263},{},[],{"type":42,"tag":43,"props":1265,"children":1267},{"id":1266},"next-steps",[1268],{"type":48,"value":1269},"Next Steps",{"type":42,"tag":84,"props":1271,"children":1272},{},[1273,1289,1303],{"type":42,"tag":88,"props":1274,"children":1275},{},[1276,1281,1283],{"type":42,"tag":188,"props":1277,"children":1278},{},[1279],{"type":48,"value":1280},"Channel overview and onboarding guide:",{"type":48,"value":1282}," ",{"type":42,"tag":57,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":48,"value":1288},"twilio-messaging-overview",{"type":42,"tag":88,"props":1290,"children":1291},{},[1292,1297,1298],{"type":42,"tag":188,"props":1293,"children":1294},{},[1295],{"type":48,"value":1296},"Send WhatsApp messages:",{"type":48,"value":1282},{"type":42,"tag":57,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":48,"value":109},{"type":42,"tag":88,"props":1304,"children":1305},{},[1306,1311,1312],{"type":42,"tag":188,"props":1307,"children":1308},{},[1309],{"type":48,"value":1310},"Register a production WhatsApp sender:",{"type":48,"value":1282},{"type":42,"tag":57,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":48,"value":117},{"type":42,"tag":1318,"props":1319,"children":1320},"style",{},[1321],{"type":48,"value":1322},"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":1324,"total":1493},[1325,1338,1358,1369,1381,1396,1413,1426,1442,1455,1463,1481],{"slug":98,"name":98,"fn":1326,"description":1327,"org":1328,"tags":1329,"stars":26,"repoUrl":27,"updatedAt":1337},"configure Twilio accounts and credentials","Create and configure a Twilio account from scratch. Covers free trial signup, trial limitations, getting credentials (Account SID and Auth Token), buying a phone number, verifying recipient numbers for trial use, SDK installation, first API call, subaccount management (creation, inheritance, credential isolation, limits), and enabling specific products (AI Assistants, Conversations, Verify, ConversationRelay, WhatsApp). Use this skill before any other Twilio skill if you do not yet have a Twilio account or need to enable a product. For Organization-level governance (SSO, SCIM, multi-team), see `twilio-organizations-setup`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1330,1333,1336],{"name":1331,"slug":1332,"type":15},"API Development","api-development",{"name":1334,"slug":1335,"type":15},"Communications","communications",{"name":13,"slug":14,"type":15},"2026-08-01T05:43:28.968968",{"slug":1339,"name":1339,"fn":1340,"description":1341,"org":1342,"tags":1343,"stars":26,"repoUrl":27,"updatedAt":1357},"twilio-agent-augmentation-architect","augment human agents with AI intelligence","Planning skill for augmenting human agents with real-time AI intelligence. Qualifies the developer's use case across coaching, compliance, QA, and routing to recommend the right Conversation Intelligence + Conversation Memory + TaskRouter architecture. Handles both \"I want to add AI coaching to my call center\" and \"configure Conversation Intelligence operators for script adherence.\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1344,1347,1350,1353,1356],{"name":1345,"slug":1346,"type":15},"Agents","agents",{"name":1348,"slug":1349,"type":15},"AI","ai",{"name":1351,"slug":1352,"type":15},"Coaching","coaching",{"name":1354,"slug":1355,"type":15},"QA","qa",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:58.250609",{"slug":1359,"name":1359,"fn":1360,"description":1361,"org":1362,"tags":1363,"stars":26,"repoUrl":27,"updatedAt":1368},"twilio-agent-connect","connect AI agents to Twilio channels","Connect third-party AI agents (OpenAI, Bedrock, LangChain, Microsoft Foundry) to Twilio's communication channels using the Twilio Agent Connect SDK. Covers identity resolution, memory and context management via Conversation Memory, conversation orchestration via Conversation Orchestrator, multi-channel handling (Voice, SMS, RCS, WhatsApp, Chat), and AI-to-human escalation. Use this skill when integrating an existing LLM agent with Twilio services.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1364,1365,1366,1367],{"name":1345,"slug":1346,"type":15},{"name":1331,"slug":1332,"type":15},{"name":1334,"slug":1335,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:06:05.217098",{"slug":1370,"name":1370,"fn":1371,"description":1372,"org":1373,"tags":1374,"stars":26,"repoUrl":27,"updatedAt":1380},"twilio-ai-agent-architect","plan Twilio conversational AI agents","Planning skill for AI-powered conversational agents. Qualifies the developer's use case across outcome sophistication, entry point, and customer profile to recommend the right Twilio Conversations architecture and implementation skills. Handles both high-level requests (\"build me a voice AI assistant\") and specific ones (\"integrate ConversationRelay with my OpenAI backend\").\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1375,1376,1379],{"name":1345,"slug":1346,"type":15},{"name":1377,"slug":1378,"type":15},"Architecture","architecture",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:48.883723",{"slug":1382,"name":1382,"fn":1383,"description":1384,"org":1385,"tags":1386,"stars":26,"repoUrl":27,"updatedAt":1395},"twilio-call-recordings","record and manage Twilio voice calls","Record Twilio voice calls correctly. Covers the critical distinction between Record verb (voicemail) and Dial record (call recording), dual-channel for QA, mid-call pause for PCI, Conference recording, and the ConversationRelay workaround. Use this skill whenever you need to capture call audio for compliance, QA, or analytics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1387,1390,1393,1394],{"name":1388,"slug":1389,"type":15},"Audio","audio",{"name":1391,"slug":1392,"type":15},"Compliance","compliance",{"name":1354,"slug":1355,"type":15},{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.268412",{"slug":1397,"name":1397,"fn":1398,"description":1399,"org":1400,"tags":1401,"stars":26,"repoUrl":27,"updatedAt":1412},"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},[1402,1405,1408,1411],{"name":1403,"slug":1404,"type":15},"CLI","cli",{"name":1406,"slug":1407,"type":15},"Local Development","local-development",{"name":1409,"slug":1410,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:54.925664",{"slug":1414,"name":1414,"fn":1415,"description":1416,"org":1417,"tags":1418,"stars":26,"repoUrl":27,"updatedAt":1425},"twilio-compliance-onboarding","manage Twilio messaging and voice compliance","Registrations required BEFORE Twilio traffic works. Covers messaging programs (A2P 10DLC, toll-free verification, WhatsApp WABA, RCS, short code, alphanumeric sender) and voice trust programs (STIR\u002FSHAKEN, Voice Integrity, Branded Calling, CNAM). Each number\u002Fsender type has its own program — registration blocks traffic until complete.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1419,1420,1421,1422,1423],{"name":1391,"slug":1392,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1099,"slug":1424,"type":15},"whatsapp","2026-07-17T06:05:47.897229",{"slug":1427,"name":1427,"fn":1428,"description":1429,"org":1430,"tags":1431,"stars":26,"repoUrl":27,"updatedAt":1441},"twilio-compliance-traffic","ensure compliance for Twilio messaging traffic","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1432,1433,1434,1437,1440],{"name":1391,"slug":1392,"type":15},{"name":20,"slug":21,"type":15},{"name":1435,"slug":1436,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1438,"slug":1439,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.952779",{"slug":1443,"name":1443,"fn":1444,"description":1445,"org":1446,"tags":1447,"stars":26,"repoUrl":27,"updatedAt":1454},"twilio-conference-calls","build multi-party calls with Twilio Conference","Build multi-party calls using Twilio Conference. Covers warm transfer, cold transfer, coaching (whisper), hold vs mute, participant modes, and supervisor barge. Use this skill for any contact center, support line, or scenario requiring transfers, holds, or multi-party calls.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1448,1449,1450,1453],{"name":1388,"slug":1389,"type":15},{"name":1334,"slug":1335,"type":15},{"name":1451,"slug":1452,"type":15},"Meetings","meetings",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:55.603708",{"slug":4,"name":4,"fn":5,"description":6,"org":1456,"tags":1457,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1458,1459,1460,1461,1462],{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":1464,"name":1464,"fn":1465,"description":1466,"org":1467,"tags":1468,"stars":26,"repoUrl":27,"updatedAt":1480},"twilio-conversation-intelligence","build conversation intelligence pipelines","Twilio Conversation Intelligence development guide. Use when building real-time or post-call conversation analysis, language operator pipelines, sentiment analysis, agent assist, cross-channel analytics, or querying aggregated conversation insights (sentiment trends, escalation rates, dashboards).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1469,1470,1473,1476,1479],{"name":1345,"slug":1346,"type":15},{"name":1471,"slug":1472,"type":15},"Analytics","analytics",{"name":1474,"slug":1475,"type":15},"Monitoring","monitoring",{"name":1477,"slug":1478,"type":15},"NLP","nlp",{"name":9,"slug":8,"type":15},"2026-07-17T06:07:52.545387",{"slug":1482,"name":1482,"fn":1483,"description":1484,"org":1485,"tags":1486,"stars":26,"repoUrl":27,"updatedAt":1492},"twilio-conversation-memory","manage conversation memory with Twilio","Store and retrieve conversation context using Twilio Conversation Memory. Covers Memory Store provisioning, profile management, traits, observations, conversation summaries, and semantic Recall. Use this skill to give AI agents or human agents persistent memory of conversations across sessions and channels.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1487,1488,1491],{"name":1345,"slug":1346,"type":15},{"name":1489,"slug":1490,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-07-17T06:04:19.526724",57,{"items":1495,"total":1493},[1496,1502,1510,1517,1523,1530,1537],{"slug":98,"name":98,"fn":1326,"description":1327,"org":1497,"tags":1498,"stars":26,"repoUrl":27,"updatedAt":1337},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1499,1500,1501],{"name":1331,"slug":1332,"type":15},{"name":1334,"slug":1335,"type":15},{"name":13,"slug":14,"type":15},{"slug":1339,"name":1339,"fn":1340,"description":1341,"org":1503,"tags":1504,"stars":26,"repoUrl":27,"updatedAt":1357},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1505,1506,1507,1508,1509],{"name":1345,"slug":1346,"type":15},{"name":1348,"slug":1349,"type":15},{"name":1351,"slug":1352,"type":15},{"name":1354,"slug":1355,"type":15},{"name":9,"slug":8,"type":15},{"slug":1359,"name":1359,"fn":1360,"description":1361,"org":1511,"tags":1512,"stars":26,"repoUrl":27,"updatedAt":1368},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1513,1514,1515,1516],{"name":1345,"slug":1346,"type":15},{"name":1331,"slug":1332,"type":15},{"name":1334,"slug":1335,"type":15},{"name":9,"slug":8,"type":15},{"slug":1370,"name":1370,"fn":1371,"description":1372,"org":1518,"tags":1519,"stars":26,"repoUrl":27,"updatedAt":1380},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1520,1521,1522],{"name":1345,"slug":1346,"type":15},{"name":1377,"slug":1378,"type":15},{"name":9,"slug":8,"type":15},{"slug":1382,"name":1382,"fn":1383,"description":1384,"org":1524,"tags":1525,"stars":26,"repoUrl":27,"updatedAt":1395},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1526,1527,1528,1529],{"name":1388,"slug":1389,"type":15},{"name":1391,"slug":1392,"type":15},{"name":1354,"slug":1355,"type":15},{"name":9,"slug":8,"type":15},{"slug":1397,"name":1397,"fn":1398,"description":1399,"org":1531,"tags":1532,"stars":26,"repoUrl":27,"updatedAt":1412},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1533,1534,1535,1536],{"name":1403,"slug":1404,"type":15},{"name":1406,"slug":1407,"type":15},{"name":1409,"slug":1410,"type":15},{"name":9,"slug":8,"type":15},{"slug":1414,"name":1414,"fn":1415,"description":1416,"org":1538,"tags":1539,"stars":26,"repoUrl":27,"updatedAt":1425},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1540,1541,1542,1543,1544],{"name":1391,"slug":1392,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1099,"slug":1424,"type":15}]