[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-messaging-overview":3,"mdc-9xjf3l-key":39,"related-org-openai-twilio-messaging-overview":1513,"related-repo-openai-twilio-messaging-overview":1720},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"twilio-messaging-overview","configure Twilio messaging channels","Twilio Messaging channel overview and onboarding guide. Covers all channels (SMS, WhatsApp, RCS, Facebook Messenger), the unified Messages API, channel selection guidance, and the recommended setup sequence from first message to production monitoring. Start here before choosing a specific messaging channel.\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,25],{"name":13,"slug":14,"type":15},"SMS","sms","tag",{"name":17,"slug":18,"type":15},"WhatsApp","whatsapp",{"name":20,"slug":21,"type":15},"RCS","rcs",{"name":23,"slug":24,"type":15},"Messaging","messaging",{"name":26,"slug":27,"type":15},"Twilio","twilio",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-messaging-overview","---\nname: twilio-messaging-overview\ndescription: >\n  Twilio Messaging channel overview and onboarding guide. Covers all\n  channels (SMS, WhatsApp, RCS, Facebook Messenger), the unified\n  Messages API, channel selection guidance, and the recommended setup\n  sequence from first message to production monitoring. Start here\n  before choosing a specific messaging channel.\n---\n\n## Overview\n\nTwilio's Messaging platform sends and receives messages across multiple channels through a single API. All channels use `client.messages.create()` — only the address format changes.\n\n| Channel | Address format | Rich media | Template required? | Reach | Skill |\n|---------|---------------|------------|-------------------|-------|-------|\n| **SMS\u002FMMS** | `+15551234567` (E.164) | MMS: images\u002Fvideo, US\u002FCA\u002FAU only | No | Global (180+ countries) | `twilio-sms-send-message` |\n| **WhatsApp** | `whatsapp:+15551234567` | Yes (images, docs, video, location) | Outside 24hr window: yes | 190+ countries | `twilio-whatsapp-send-message` |\n| **RCS** | Same number (via Messaging Service) | Yes (rich cards, carousels, video) | No | US + expanding globally | `twilio-rcs-messaging` |\n| **Facebook Messenger** | `messenger:{page-scoped-id}` | Yes | No | Global | — |\n\n---\n\n## Which Channel Should I Use?\n\n| If you need to... | Use | Why |\n|-------------------|-----|-----|\n| Reach any phone number | SMS | Universal — works on every phone, no app needed |\n| Send rich media globally | WhatsApp | Images, docs, video work worldwide (MMS is US\u002FCA\u002FAU only) |\n| Send time-sensitive alerts (OTP, outages) | SMS | Highest open rates, no app dependency |\n| Reach opted-in audience at lower cost | WhatsApp | No per-message fee in many markets |\n| Run marketing campaigns across channels | Start with `twilio-marketing-promotions-advisor` | Planner skill handles channel mix, compliance, and fallback |\n| Send transactional notifications | Start with `twilio-notifications-alerts-advisor` | Planner skill handles urgency-based channel routing |\n\n**Not sure?** Use a Planner skill first — it will qualify your use case and recommend the right channel combination.\n\n---\n\n## Unified API\n\nAll channels share `messages.create()`. The only difference is the address format in `from` and `to`.\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\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order shipped.\"\n)\n\n# WhatsApp — same API, prefixed addresses\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order shipped.\"\n)\n```\n\n**Node.js**\n```javascript\nconst client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order shipped.\",\n});\n\n\u002F\u002F WhatsApp — same API, prefixed addresses\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order shipped.\",\n});\n```\n\n---\n\n## Onboarding Sequence\n\nSet up messaging in this order. Each step builds on the previous.\n\n### Step 1: Foundation\nGet a Twilio number, send your first SMS.\n- `twilio-account-setup` → `twilio-sms-send-message`\n\n### Step 2: Sender Strategy\nCreate a Messaging Service and add your numbers to a sender pool. Use `messagingServiceSid` instead of `from` for all production sends — this enables geo-match, sticky sender, and unlocks compliance features.\n- `twilio-messaging-services`\n\n### Step 3: Compliance\nRegister for A2P 10DLC (required for US SMS traffic). Set up opt-out handling.\n- `twilio-compliance-onboarding` → `twilio-compliance-traffic`\n\n### Step 4: Protect\nEnable SMS pumping protection (prevents artificial traffic inflation) and compliance toolkit (quiet hours, reassigned number detection) on your Messaging Service.\n- `twilio-messaging-services` (Compliance Toolkit + SMS Pumping Protection sections)\n\n### Step 5: Add Channels\nAdd WhatsApp or other channels. Use Content Templates for cross-channel message formatting.\n- `twilio-whatsapp-send-message` → `twilio-content-template-builder`\n\n### Step 6: Monitor\nEnable intelligent alerts for error pattern detection. Set up status callbacks for delivery tracking.\n- `twilio-messaging-services` (Intelligent Alerts section) → `twilio-messaging-webhooks`\n\n---\n\n## CANNOT\n\n- **Cannot send cross-channel in a single API call** — Each `messages.create()` targets one channel. For multi-channel fallback, implement sequencing in your application (e.g., try SMS, on failure send WhatsApp).\n- **Cannot use WhatsApp free-form messages outside the 24-hour window** — After 24 hours since the user's last inbound message, you must use a pre-approved template. See `twilio-whatsapp-send-message`.\n- **Cannot send MMS outside US, Canada, and Australia** — MMS is only supported on US\u002FCA\u002FAU numbers. For international rich media, use WhatsApp.\n- **Cannot use SMS pumping protection or compliance toolkit without a Messaging Service** — These features are configured per Messaging Service. Raw `from` number sends don't get these protections.\n- **Cannot mix channels in a single Messaging Service sender pool** — A Messaging Service manages phone numbers for SMS\u002FMMS. WhatsApp senders are configured separately.\n- **Cannot guarantee delivery on any channel** — SMS can be carrier-filtered, WhatsApp can queue-timeout (4 hours). Always implement status callbacks to track delivery.\n\n---\n\n## Next Steps\n\n- **Send SMS:** `twilio-sms-send-message`\n- **Send RCS:** `twilio-rcs-messaging`\n- **Send WhatsApp:** `twilio-whatsapp-send-message`\n- **Set up sender pools and production features:** `twilio-messaging-services`\n- **Channel selection for marketing:** `twilio-marketing-promotions-advisor`\n- **Channel selection for notifications:** `twilio-notifications-alerts-advisor`\n",{"data":40,"body":41},{"name":4,"description":6},{"type":42,"children":43},"root",[44,53,68,283,287,293,435,445,448,454,483,491,663,671,1120,1123,1129,1134,1141,1146,1167,1173,1193,1205,1211,1216,1235,1241,1246,1259,1265,1270,1288,1294,1299,1318,1321,1327,1410,1413,1419,1507],{"type":45,"tag":46,"props":47,"children":49},"element","h2",{"id":48},"overview",[50],{"type":51,"value":52},"text","Overview",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,66],{"type":51,"value":58},"Twilio's Messaging platform sends and receives messages across multiple channels through a single API. All channels use ",{"type":45,"tag":60,"props":61,"children":63},"code",{"className":62},[],[64],{"type":51,"value":65},"client.messages.create()",{"type":51,"value":67}," — only the address format changes.",{"type":45,"tag":69,"props":70,"children":71},"table",{},[72,111],{"type":45,"tag":73,"props":74,"children":75},"thead",{},[76],{"type":45,"tag":77,"props":78,"children":79},"tr",{},[80,86,91,96,101,106],{"type":45,"tag":81,"props":82,"children":83},"th",{},[84],{"type":51,"value":85},"Channel",{"type":45,"tag":81,"props":87,"children":88},{},[89],{"type":51,"value":90},"Address format",{"type":45,"tag":81,"props":92,"children":93},{},[94],{"type":51,"value":95},"Rich media",{"type":45,"tag":81,"props":97,"children":98},{},[99],{"type":51,"value":100},"Template required?",{"type":45,"tag":81,"props":102,"children":103},{},[104],{"type":51,"value":105},"Reach",{"type":45,"tag":81,"props":107,"children":108},{},[109],{"type":51,"value":110},"Skill",{"type":45,"tag":112,"props":113,"children":114},"tbody",{},[115,163,206,244],{"type":45,"tag":77,"props":116,"children":117},{},[118,128,139,144,149,154],{"type":45,"tag":119,"props":120,"children":121},"td",{},[122],{"type":45,"tag":123,"props":124,"children":125},"strong",{},[126],{"type":51,"value":127},"SMS\u002FMMS",{"type":45,"tag":119,"props":129,"children":130},{},[131,137],{"type":45,"tag":60,"props":132,"children":134},{"className":133},[],[135],{"type":51,"value":136},"+15551234567",{"type":51,"value":138}," (E.164)",{"type":45,"tag":119,"props":140,"children":141},{},[142],{"type":51,"value":143},"MMS: images\u002Fvideo, US\u002FCA\u002FAU only",{"type":45,"tag":119,"props":145,"children":146},{},[147],{"type":51,"value":148},"No",{"type":45,"tag":119,"props":150,"children":151},{},[152],{"type":51,"value":153},"Global (180+ countries)",{"type":45,"tag":119,"props":155,"children":156},{},[157],{"type":45,"tag":60,"props":158,"children":160},{"className":159},[],[161],{"type":51,"value":162},"twilio-sms-send-message",{"type":45,"tag":77,"props":164,"children":165},{},[166,173,182,187,192,197],{"type":45,"tag":119,"props":167,"children":168},{},[169],{"type":45,"tag":123,"props":170,"children":171},{},[172],{"type":51,"value":17},{"type":45,"tag":119,"props":174,"children":175},{},[176],{"type":45,"tag":60,"props":177,"children":179},{"className":178},[],[180],{"type":51,"value":181},"whatsapp:+15551234567",{"type":45,"tag":119,"props":183,"children":184},{},[185],{"type":51,"value":186},"Yes (images, docs, video, location)",{"type":45,"tag":119,"props":188,"children":189},{},[190],{"type":51,"value":191},"Outside 24hr window: yes",{"type":45,"tag":119,"props":193,"children":194},{},[195],{"type":51,"value":196},"190+ countries",{"type":45,"tag":119,"props":198,"children":199},{},[200],{"type":45,"tag":60,"props":201,"children":203},{"className":202},[],[204],{"type":51,"value":205},"twilio-whatsapp-send-message",{"type":45,"tag":77,"props":207,"children":208},{},[209,216,221,226,230,235],{"type":45,"tag":119,"props":210,"children":211},{},[212],{"type":45,"tag":123,"props":213,"children":214},{},[215],{"type":51,"value":20},{"type":45,"tag":119,"props":217,"children":218},{},[219],{"type":51,"value":220},"Same number (via Messaging Service)",{"type":45,"tag":119,"props":222,"children":223},{},[224],{"type":51,"value":225},"Yes (rich cards, carousels, video)",{"type":45,"tag":119,"props":227,"children":228},{},[229],{"type":51,"value":148},{"type":45,"tag":119,"props":231,"children":232},{},[233],{"type":51,"value":234},"US + expanding globally",{"type":45,"tag":119,"props":236,"children":237},{},[238],{"type":45,"tag":60,"props":239,"children":241},{"className":240},[],[242],{"type":51,"value":243},"twilio-rcs-messaging",{"type":45,"tag":77,"props":245,"children":246},{},[247,255,264,269,273,278],{"type":45,"tag":119,"props":248,"children":249},{},[250],{"type":45,"tag":123,"props":251,"children":252},{},[253],{"type":51,"value":254},"Facebook Messenger",{"type":45,"tag":119,"props":256,"children":257},{},[258],{"type":45,"tag":60,"props":259,"children":261},{"className":260},[],[262],{"type":51,"value":263},"messenger:{page-scoped-id}",{"type":45,"tag":119,"props":265,"children":266},{},[267],{"type":51,"value":268},"Yes",{"type":45,"tag":119,"props":270,"children":271},{},[272],{"type":51,"value":148},{"type":45,"tag":119,"props":274,"children":275},{},[276],{"type":51,"value":277},"Global",{"type":45,"tag":119,"props":279,"children":280},{},[281],{"type":51,"value":282},"—",{"type":45,"tag":284,"props":285,"children":286},"hr",{},[],{"type":45,"tag":46,"props":288,"children":290},{"id":289},"which-channel-should-i-use",[291],{"type":51,"value":292},"Which Channel Should I Use?",{"type":45,"tag":69,"props":294,"children":295},{},[296,317],{"type":45,"tag":73,"props":297,"children":298},{},[299],{"type":45,"tag":77,"props":300,"children":301},{},[302,307,312],{"type":45,"tag":81,"props":303,"children":304},{},[305],{"type":51,"value":306},"If you need to...",{"type":45,"tag":81,"props":308,"children":309},{},[310],{"type":51,"value":311},"Use",{"type":45,"tag":81,"props":313,"children":314},{},[315],{"type":51,"value":316},"Why",{"type":45,"tag":112,"props":318,"children":319},{},[320,337,354,371,388,412],{"type":45,"tag":77,"props":321,"children":322},{},[323,328,332],{"type":45,"tag":119,"props":324,"children":325},{},[326],{"type":51,"value":327},"Reach any phone number",{"type":45,"tag":119,"props":329,"children":330},{},[331],{"type":51,"value":13},{"type":45,"tag":119,"props":333,"children":334},{},[335],{"type":51,"value":336},"Universal — works on every phone, no app needed",{"type":45,"tag":77,"props":338,"children":339},{},[340,345,349],{"type":45,"tag":119,"props":341,"children":342},{},[343],{"type":51,"value":344},"Send rich media globally",{"type":45,"tag":119,"props":346,"children":347},{},[348],{"type":51,"value":17},{"type":45,"tag":119,"props":350,"children":351},{},[352],{"type":51,"value":353},"Images, docs, video work worldwide (MMS is US\u002FCA\u002FAU only)",{"type":45,"tag":77,"props":355,"children":356},{},[357,362,366],{"type":45,"tag":119,"props":358,"children":359},{},[360],{"type":51,"value":361},"Send time-sensitive alerts (OTP, outages)",{"type":45,"tag":119,"props":363,"children":364},{},[365],{"type":51,"value":13},{"type":45,"tag":119,"props":367,"children":368},{},[369],{"type":51,"value":370},"Highest open rates, no app dependency",{"type":45,"tag":77,"props":372,"children":373},{},[374,379,383],{"type":45,"tag":119,"props":375,"children":376},{},[377],{"type":51,"value":378},"Reach opted-in audience at lower cost",{"type":45,"tag":119,"props":380,"children":381},{},[382],{"type":51,"value":17},{"type":45,"tag":119,"props":384,"children":385},{},[386],{"type":51,"value":387},"No per-message fee in many markets",{"type":45,"tag":77,"props":389,"children":390},{},[391,396,407],{"type":45,"tag":119,"props":392,"children":393},{},[394],{"type":51,"value":395},"Run marketing campaigns across channels",{"type":45,"tag":119,"props":397,"children":398},{},[399,401],{"type":51,"value":400},"Start with ",{"type":45,"tag":60,"props":402,"children":404},{"className":403},[],[405],{"type":51,"value":406},"twilio-marketing-promotions-advisor",{"type":45,"tag":119,"props":408,"children":409},{},[410],{"type":51,"value":411},"Planner skill handles channel mix, compliance, and fallback",{"type":45,"tag":77,"props":413,"children":414},{},[415,420,430],{"type":45,"tag":119,"props":416,"children":417},{},[418],{"type":51,"value":419},"Send transactional notifications",{"type":45,"tag":119,"props":421,"children":422},{},[423,424],{"type":51,"value":400},{"type":45,"tag":60,"props":425,"children":427},{"className":426},[],[428],{"type":51,"value":429},"twilio-notifications-alerts-advisor",{"type":45,"tag":119,"props":431,"children":432},{},[433],{"type":51,"value":434},"Planner skill handles urgency-based channel routing",{"type":45,"tag":54,"props":436,"children":437},{},[438,443],{"type":45,"tag":123,"props":439,"children":440},{},[441],{"type":51,"value":442},"Not sure?",{"type":51,"value":444}," Use a Planner skill first — it will qualify your use case and recommend the right channel combination.",{"type":45,"tag":284,"props":446,"children":447},{},[],{"type":45,"tag":46,"props":449,"children":451},{"id":450},"unified-api",[452],{"type":51,"value":453},"Unified API",{"type":45,"tag":54,"props":455,"children":456},{},[457,459,465,467,473,475,481],{"type":51,"value":458},"All channels share ",{"type":45,"tag":60,"props":460,"children":462},{"className":461},[],[463],{"type":51,"value":464},"messages.create()",{"type":51,"value":466},". The only difference is the address format in ",{"type":45,"tag":60,"props":468,"children":470},{"className":469},[],[471],{"type":51,"value":472},"from",{"type":51,"value":474}," and ",{"type":45,"tag":60,"props":476,"children":478},{"className":477},[],[479],{"type":51,"value":480},"to",{"type":51,"value":482},".",{"type":45,"tag":54,"props":484,"children":485},{},[486],{"type":45,"tag":123,"props":487,"children":488},{},[489],{"type":51,"value":490},"Python",{"type":45,"tag":492,"props":493,"children":498},"pre",{"className":494,"code":495,"language":496,"meta":497,"style":497},"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\n# SMS\nsms = client.messages.create(\n    from_=\"+15017122661\",\n    to=\"+15558675310\",\n    body=\"Your order shipped.\"\n)\n\n# WhatsApp — same API, prefixed addresses\nwhatsapp = client.messages.create(\n    from_=\"whatsapp:+15017122661\",\n    to=\"whatsapp:+15558675310\",\n    body=\"Your order shipped.\"\n)\n","python","",[499],{"type":45,"tag":60,"props":500,"children":501},{"__ignoreMap":497},[502,513,522,532,541,549,558,567,576,585,594,603,611,620,629,638,647,655],{"type":45,"tag":503,"props":504,"children":507},"span",{"class":505,"line":506},"line",1,[508],{"type":45,"tag":503,"props":509,"children":510},{},[511],{"type":51,"value":512},"import os\n",{"type":45,"tag":503,"props":514,"children":516},{"class":505,"line":515},2,[517],{"type":45,"tag":503,"props":518,"children":519},{},[520],{"type":51,"value":521},"from twilio.rest import Client\n",{"type":45,"tag":503,"props":523,"children":525},{"class":505,"line":524},3,[526],{"type":45,"tag":503,"props":527,"children":529},{"emptyLinePlaceholder":528},true,[530],{"type":51,"value":531},"\n",{"type":45,"tag":503,"props":533,"children":535},{"class":505,"line":534},4,[536],{"type":45,"tag":503,"props":537,"children":538},{},[539],{"type":51,"value":540},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":45,"tag":503,"props":542,"children":544},{"class":505,"line":543},5,[545],{"type":45,"tag":503,"props":546,"children":547},{"emptyLinePlaceholder":528},[548],{"type":51,"value":531},{"type":45,"tag":503,"props":550,"children":552},{"class":505,"line":551},6,[553],{"type":45,"tag":503,"props":554,"children":555},{},[556],{"type":51,"value":557},"# SMS\n",{"type":45,"tag":503,"props":559,"children":561},{"class":505,"line":560},7,[562],{"type":45,"tag":503,"props":563,"children":564},{},[565],{"type":51,"value":566},"sms = client.messages.create(\n",{"type":45,"tag":503,"props":568,"children":570},{"class":505,"line":569},8,[571],{"type":45,"tag":503,"props":572,"children":573},{},[574],{"type":51,"value":575},"    from_=\"+15017122661\",\n",{"type":45,"tag":503,"props":577,"children":579},{"class":505,"line":578},9,[580],{"type":45,"tag":503,"props":581,"children":582},{},[583],{"type":51,"value":584},"    to=\"+15558675310\",\n",{"type":45,"tag":503,"props":586,"children":588},{"class":505,"line":587},10,[589],{"type":45,"tag":503,"props":590,"children":591},{},[592],{"type":51,"value":593},"    body=\"Your order shipped.\"\n",{"type":45,"tag":503,"props":595,"children":597},{"class":505,"line":596},11,[598],{"type":45,"tag":503,"props":599,"children":600},{},[601],{"type":51,"value":602},")\n",{"type":45,"tag":503,"props":604,"children":606},{"class":505,"line":605},12,[607],{"type":45,"tag":503,"props":608,"children":609},{"emptyLinePlaceholder":528},[610],{"type":51,"value":531},{"type":45,"tag":503,"props":612,"children":614},{"class":505,"line":613},13,[615],{"type":45,"tag":503,"props":616,"children":617},{},[618],{"type":51,"value":619},"# WhatsApp — same API, prefixed addresses\n",{"type":45,"tag":503,"props":621,"children":623},{"class":505,"line":622},14,[624],{"type":45,"tag":503,"props":625,"children":626},{},[627],{"type":51,"value":628},"whatsapp = client.messages.create(\n",{"type":45,"tag":503,"props":630,"children":632},{"class":505,"line":631},15,[633],{"type":45,"tag":503,"props":634,"children":635},{},[636],{"type":51,"value":637},"    from_=\"whatsapp:+15017122661\",\n",{"type":45,"tag":503,"props":639,"children":641},{"class":505,"line":640},16,[642],{"type":45,"tag":503,"props":643,"children":644},{},[645],{"type":51,"value":646},"    to=\"whatsapp:+15558675310\",\n",{"type":45,"tag":503,"props":648,"children":650},{"class":505,"line":649},17,[651],{"type":45,"tag":503,"props":652,"children":653},{},[654],{"type":51,"value":593},{"type":45,"tag":503,"props":656,"children":658},{"class":505,"line":657},18,[659],{"type":45,"tag":503,"props":660,"children":661},{},[662],{"type":51,"value":602},{"type":45,"tag":54,"props":664,"children":665},{},[666],{"type":45,"tag":123,"props":667,"children":668},{},[669],{"type":51,"value":670},"Node.js",{"type":45,"tag":492,"props":672,"children":676},{"className":673,"code":674,"language":675,"meta":497,"style":497},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const client = require(\"twilio\")(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n\n\u002F\u002F SMS\nconst sms = await client.messages.create({\n    from: \"+15017122661\",\n    to: \"+15558675310\",\n    body: \"Your order shipped.\",\n});\n\n\u002F\u002F WhatsApp — same API, prefixed addresses\nconst whatsapp = await client.messages.create({\n    from: \"whatsapp:+15017122661\",\n    to: \"whatsapp:+15558675310\",\n    body: \"Your order shipped.\",\n});\n","javascript",[677],{"type":45,"tag":60,"props":678,"children":679},{"__ignoreMap":497},[680,781,788,797,851,884,913,942,959,966,974,1022,1050,1078,1105],{"type":45,"tag":503,"props":681,"children":682},{"class":505,"line":506},[683,689,695,701,707,712,717,722,726,731,735,740,744,749,754,759,763,767,771,776],{"type":45,"tag":503,"props":684,"children":686},{"style":685},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[687],{"type":51,"value":688},"const",{"type":45,"tag":503,"props":690,"children":692},{"style":691},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[693],{"type":51,"value":694}," client ",{"type":45,"tag":503,"props":696,"children":698},{"style":697},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[699],{"type":51,"value":700},"=",{"type":45,"tag":503,"props":702,"children":704},{"style":703},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[705],{"type":51,"value":706}," require",{"type":45,"tag":503,"props":708,"children":709},{"style":691},[710],{"type":51,"value":711},"(",{"type":45,"tag":503,"props":713,"children":714},{"style":697},[715],{"type":51,"value":716},"\"",{"type":45,"tag":503,"props":718,"children":720},{"style":719},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[721],{"type":51,"value":27},{"type":45,"tag":503,"props":723,"children":724},{"style":697},[725],{"type":51,"value":716},{"type":45,"tag":503,"props":727,"children":728},{"style":691},[729],{"type":51,"value":730},")(process",{"type":45,"tag":503,"props":732,"children":733},{"style":697},[734],{"type":51,"value":482},{"type":45,"tag":503,"props":736,"children":737},{"style":691},[738],{"type":51,"value":739},"env",{"type":45,"tag":503,"props":741,"children":742},{"style":697},[743],{"type":51,"value":482},{"type":45,"tag":503,"props":745,"children":746},{"style":691},[747],{"type":51,"value":748},"TWILIO_ACCOUNT_SID",{"type":45,"tag":503,"props":750,"children":751},{"style":697},[752],{"type":51,"value":753},",",{"type":45,"tag":503,"props":755,"children":756},{"style":691},[757],{"type":51,"value":758}," process",{"type":45,"tag":503,"props":760,"children":761},{"style":697},[762],{"type":51,"value":482},{"type":45,"tag":503,"props":764,"children":765},{"style":691},[766],{"type":51,"value":739},{"type":45,"tag":503,"props":768,"children":769},{"style":697},[770],{"type":51,"value":482},{"type":45,"tag":503,"props":772,"children":773},{"style":691},[774],{"type":51,"value":775},"TWILIO_AUTH_TOKEN)",{"type":45,"tag":503,"props":777,"children":778},{"style":697},[779],{"type":51,"value":780},";\n",{"type":45,"tag":503,"props":782,"children":783},{"class":505,"line":515},[784],{"type":45,"tag":503,"props":785,"children":786},{"emptyLinePlaceholder":528},[787],{"type":51,"value":531},{"type":45,"tag":503,"props":789,"children":790},{"class":505,"line":524},[791],{"type":45,"tag":503,"props":792,"children":794},{"style":793},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[795],{"type":51,"value":796},"\u002F\u002F SMS\n",{"type":45,"tag":503,"props":798,"children":799},{"class":505,"line":534},[800,804,809,813,819,824,828,833,837,842,846],{"type":45,"tag":503,"props":801,"children":802},{"style":685},[803],{"type":51,"value":688},{"type":45,"tag":503,"props":805,"children":806},{"style":691},[807],{"type":51,"value":808}," sms ",{"type":45,"tag":503,"props":810,"children":811},{"style":697},[812],{"type":51,"value":700},{"type":45,"tag":503,"props":814,"children":816},{"style":815},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[817],{"type":51,"value":818}," await",{"type":45,"tag":503,"props":820,"children":821},{"style":691},[822],{"type":51,"value":823}," client",{"type":45,"tag":503,"props":825,"children":826},{"style":697},[827],{"type":51,"value":482},{"type":45,"tag":503,"props":829,"children":830},{"style":691},[831],{"type":51,"value":832},"messages",{"type":45,"tag":503,"props":834,"children":835},{"style":697},[836],{"type":51,"value":482},{"type":45,"tag":503,"props":838,"children":839},{"style":703},[840],{"type":51,"value":841},"create",{"type":45,"tag":503,"props":843,"children":844},{"style":691},[845],{"type":51,"value":711},{"type":45,"tag":503,"props":847,"children":848},{"style":697},[849],{"type":51,"value":850},"{\n",{"type":45,"tag":503,"props":852,"children":853},{"class":505,"line":543},[854,860,865,870,875,879],{"type":45,"tag":503,"props":855,"children":857},{"style":856},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[858],{"type":51,"value":859},"    from",{"type":45,"tag":503,"props":861,"children":862},{"style":697},[863],{"type":51,"value":864},":",{"type":45,"tag":503,"props":866,"children":867},{"style":697},[868],{"type":51,"value":869}," \"",{"type":45,"tag":503,"props":871,"children":872},{"style":719},[873],{"type":51,"value":874},"+15017122661",{"type":45,"tag":503,"props":876,"children":877},{"style":697},[878],{"type":51,"value":716},{"type":45,"tag":503,"props":880,"children":881},{"style":697},[882],{"type":51,"value":883},",\n",{"type":45,"tag":503,"props":885,"children":886},{"class":505,"line":551},[887,892,896,900,905,909],{"type":45,"tag":503,"props":888,"children":889},{"style":856},[890],{"type":51,"value":891},"    to",{"type":45,"tag":503,"props":893,"children":894},{"style":697},[895],{"type":51,"value":864},{"type":45,"tag":503,"props":897,"children":898},{"style":697},[899],{"type":51,"value":869},{"type":45,"tag":503,"props":901,"children":902},{"style":719},[903],{"type":51,"value":904},"+15558675310",{"type":45,"tag":503,"props":906,"children":907},{"style":697},[908],{"type":51,"value":716},{"type":45,"tag":503,"props":910,"children":911},{"style":697},[912],{"type":51,"value":883},{"type":45,"tag":503,"props":914,"children":915},{"class":505,"line":560},[916,921,925,929,934,938],{"type":45,"tag":503,"props":917,"children":918},{"style":856},[919],{"type":51,"value":920},"    body",{"type":45,"tag":503,"props":922,"children":923},{"style":697},[924],{"type":51,"value":864},{"type":45,"tag":503,"props":926,"children":927},{"style":697},[928],{"type":51,"value":869},{"type":45,"tag":503,"props":930,"children":931},{"style":719},[932],{"type":51,"value":933},"Your order shipped.",{"type":45,"tag":503,"props":935,"children":936},{"style":697},[937],{"type":51,"value":716},{"type":45,"tag":503,"props":939,"children":940},{"style":697},[941],{"type":51,"value":883},{"type":45,"tag":503,"props":943,"children":944},{"class":505,"line":569},[945,950,955],{"type":45,"tag":503,"props":946,"children":947},{"style":697},[948],{"type":51,"value":949},"}",{"type":45,"tag":503,"props":951,"children":952},{"style":691},[953],{"type":51,"value":954},")",{"type":45,"tag":503,"props":956,"children":957},{"style":697},[958],{"type":51,"value":780},{"type":45,"tag":503,"props":960,"children":961},{"class":505,"line":578},[962],{"type":45,"tag":503,"props":963,"children":964},{"emptyLinePlaceholder":528},[965],{"type":51,"value":531},{"type":45,"tag":503,"props":967,"children":968},{"class":505,"line":587},[969],{"type":45,"tag":503,"props":970,"children":971},{"style":793},[972],{"type":51,"value":973},"\u002F\u002F WhatsApp — same API, prefixed addresses\n",{"type":45,"tag":503,"props":975,"children":976},{"class":505,"line":596},[977,981,986,990,994,998,1002,1006,1010,1014,1018],{"type":45,"tag":503,"props":978,"children":979},{"style":685},[980],{"type":51,"value":688},{"type":45,"tag":503,"props":982,"children":983},{"style":691},[984],{"type":51,"value":985}," whatsapp ",{"type":45,"tag":503,"props":987,"children":988},{"style":697},[989],{"type":51,"value":700},{"type":45,"tag":503,"props":991,"children":992},{"style":815},[993],{"type":51,"value":818},{"type":45,"tag":503,"props":995,"children":996},{"style":691},[997],{"type":51,"value":823},{"type":45,"tag":503,"props":999,"children":1000},{"style":697},[1001],{"type":51,"value":482},{"type":45,"tag":503,"props":1003,"children":1004},{"style":691},[1005],{"type":51,"value":832},{"type":45,"tag":503,"props":1007,"children":1008},{"style":697},[1009],{"type":51,"value":482},{"type":45,"tag":503,"props":1011,"children":1012},{"style":703},[1013],{"type":51,"value":841},{"type":45,"tag":503,"props":1015,"children":1016},{"style":691},[1017],{"type":51,"value":711},{"type":45,"tag":503,"props":1019,"children":1020},{"style":697},[1021],{"type":51,"value":850},{"type":45,"tag":503,"props":1023,"children":1024},{"class":505,"line":605},[1025,1029,1033,1037,1042,1046],{"type":45,"tag":503,"props":1026,"children":1027},{"style":856},[1028],{"type":51,"value":859},{"type":45,"tag":503,"props":1030,"children":1031},{"style":697},[1032],{"type":51,"value":864},{"type":45,"tag":503,"props":1034,"children":1035},{"style":697},[1036],{"type":51,"value":869},{"type":45,"tag":503,"props":1038,"children":1039},{"style":719},[1040],{"type":51,"value":1041},"whatsapp:+15017122661",{"type":45,"tag":503,"props":1043,"children":1044},{"style":697},[1045],{"type":51,"value":716},{"type":45,"tag":503,"props":1047,"children":1048},{"style":697},[1049],{"type":51,"value":883},{"type":45,"tag":503,"props":1051,"children":1052},{"class":505,"line":613},[1053,1057,1061,1065,1070,1074],{"type":45,"tag":503,"props":1054,"children":1055},{"style":856},[1056],{"type":51,"value":891},{"type":45,"tag":503,"props":1058,"children":1059},{"style":697},[1060],{"type":51,"value":864},{"type":45,"tag":503,"props":1062,"children":1063},{"style":697},[1064],{"type":51,"value":869},{"type":45,"tag":503,"props":1066,"children":1067},{"style":719},[1068],{"type":51,"value":1069},"whatsapp:+15558675310",{"type":45,"tag":503,"props":1071,"children":1072},{"style":697},[1073],{"type":51,"value":716},{"type":45,"tag":503,"props":1075,"children":1076},{"style":697},[1077],{"type":51,"value":883},{"type":45,"tag":503,"props":1079,"children":1080},{"class":505,"line":622},[1081,1085,1089,1093,1097,1101],{"type":45,"tag":503,"props":1082,"children":1083},{"style":856},[1084],{"type":51,"value":920},{"type":45,"tag":503,"props":1086,"children":1087},{"style":697},[1088],{"type":51,"value":864},{"type":45,"tag":503,"props":1090,"children":1091},{"style":697},[1092],{"type":51,"value":869},{"type":45,"tag":503,"props":1094,"children":1095},{"style":719},[1096],{"type":51,"value":933},{"type":45,"tag":503,"props":1098,"children":1099},{"style":697},[1100],{"type":51,"value":716},{"type":45,"tag":503,"props":1102,"children":1103},{"style":697},[1104],{"type":51,"value":883},{"type":45,"tag":503,"props":1106,"children":1107},{"class":505,"line":631},[1108,1112,1116],{"type":45,"tag":503,"props":1109,"children":1110},{"style":697},[1111],{"type":51,"value":949},{"type":45,"tag":503,"props":1113,"children":1114},{"style":691},[1115],{"type":51,"value":954},{"type":45,"tag":503,"props":1117,"children":1118},{"style":697},[1119],{"type":51,"value":780},{"type":45,"tag":284,"props":1121,"children":1122},{},[],{"type":45,"tag":46,"props":1124,"children":1126},{"id":1125},"onboarding-sequence",[1127],{"type":51,"value":1128},"Onboarding Sequence",{"type":45,"tag":54,"props":1130,"children":1131},{},[1132],{"type":51,"value":1133},"Set up messaging in this order. Each step builds on the previous.",{"type":45,"tag":1135,"props":1136,"children":1138},"h3",{"id":1137},"step-1-foundation",[1139],{"type":51,"value":1140},"Step 1: Foundation",{"type":45,"tag":54,"props":1142,"children":1143},{},[1144],{"type":51,"value":1145},"Get a Twilio number, send your first SMS.",{"type":45,"tag":1147,"props":1148,"children":1149},"ul",{},[1150],{"type":45,"tag":1151,"props":1152,"children":1153},"li",{},[1154,1160,1162],{"type":45,"tag":60,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":51,"value":1159},"twilio-account-setup",{"type":51,"value":1161}," → ",{"type":45,"tag":60,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":51,"value":162},{"type":45,"tag":1135,"props":1168,"children":1170},{"id":1169},"step-2-sender-strategy",[1171],{"type":51,"value":1172},"Step 2: Sender Strategy",{"type":45,"tag":54,"props":1174,"children":1175},{},[1176,1178,1184,1186,1191],{"type":51,"value":1177},"Create a Messaging Service and add your numbers to a sender pool. Use ",{"type":45,"tag":60,"props":1179,"children":1181},{"className":1180},[],[1182],{"type":51,"value":1183},"messagingServiceSid",{"type":51,"value":1185}," instead of ",{"type":45,"tag":60,"props":1187,"children":1189},{"className":1188},[],[1190],{"type":51,"value":472},{"type":51,"value":1192}," for all production sends — this enables geo-match, sticky sender, and unlocks compliance features.",{"type":45,"tag":1147,"props":1194,"children":1195},{},[1196],{"type":45,"tag":1151,"props":1197,"children":1198},{},[1199],{"type":45,"tag":60,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":51,"value":1204},"twilio-messaging-services",{"type":45,"tag":1135,"props":1206,"children":1208},{"id":1207},"step-3-compliance",[1209],{"type":51,"value":1210},"Step 3: Compliance",{"type":45,"tag":54,"props":1212,"children":1213},{},[1214],{"type":51,"value":1215},"Register for A2P 10DLC (required for US SMS traffic). Set up opt-out handling.",{"type":45,"tag":1147,"props":1217,"children":1218},{},[1219],{"type":45,"tag":1151,"props":1220,"children":1221},{},[1222,1228,1229],{"type":45,"tag":60,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":51,"value":1227},"twilio-compliance-onboarding",{"type":51,"value":1161},{"type":45,"tag":60,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":51,"value":1234},"twilio-compliance-traffic",{"type":45,"tag":1135,"props":1236,"children":1238},{"id":1237},"step-4-protect",[1239],{"type":51,"value":1240},"Step 4: Protect",{"type":45,"tag":54,"props":1242,"children":1243},{},[1244],{"type":51,"value":1245},"Enable SMS pumping protection (prevents artificial traffic inflation) and compliance toolkit (quiet hours, reassigned number detection) on your Messaging Service.",{"type":45,"tag":1147,"props":1247,"children":1248},{},[1249],{"type":45,"tag":1151,"props":1250,"children":1251},{},[1252,1257],{"type":45,"tag":60,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":51,"value":1204},{"type":51,"value":1258}," (Compliance Toolkit + SMS Pumping Protection sections)",{"type":45,"tag":1135,"props":1260,"children":1262},{"id":1261},"step-5-add-channels",[1263],{"type":51,"value":1264},"Step 5: Add Channels",{"type":45,"tag":54,"props":1266,"children":1267},{},[1268],{"type":51,"value":1269},"Add WhatsApp or other channels. Use Content Templates for cross-channel message formatting.",{"type":45,"tag":1147,"props":1271,"children":1272},{},[1273],{"type":45,"tag":1151,"props":1274,"children":1275},{},[1276,1281,1282],{"type":45,"tag":60,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":51,"value":205},{"type":51,"value":1161},{"type":45,"tag":60,"props":1283,"children":1285},{"className":1284},[],[1286],{"type":51,"value":1287},"twilio-content-template-builder",{"type":45,"tag":1135,"props":1289,"children":1291},{"id":1290},"step-6-monitor",[1292],{"type":51,"value":1293},"Step 6: Monitor",{"type":45,"tag":54,"props":1295,"children":1296},{},[1297],{"type":51,"value":1298},"Enable intelligent alerts for error pattern detection. Set up status callbacks for delivery tracking.",{"type":45,"tag":1147,"props":1300,"children":1301},{},[1302],{"type":45,"tag":1151,"props":1303,"children":1304},{},[1305,1310,1312],{"type":45,"tag":60,"props":1306,"children":1308},{"className":1307},[],[1309],{"type":51,"value":1204},{"type":51,"value":1311}," (Intelligent Alerts section) → ",{"type":45,"tag":60,"props":1313,"children":1315},{"className":1314},[],[1316],{"type":51,"value":1317},"twilio-messaging-webhooks",{"type":45,"tag":284,"props":1319,"children":1320},{},[],{"type":45,"tag":46,"props":1322,"children":1324},{"id":1323},"cannot",[1325],{"type":51,"value":1326},"CANNOT",{"type":45,"tag":1147,"props":1328,"children":1329},{},[1330,1347,1363,1373,1390,1400],{"type":45,"tag":1151,"props":1331,"children":1332},{},[1333,1338,1340,1345],{"type":45,"tag":123,"props":1334,"children":1335},{},[1336],{"type":51,"value":1337},"Cannot send cross-channel in a single API call",{"type":51,"value":1339}," — Each ",{"type":45,"tag":60,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":51,"value":464},{"type":51,"value":1346}," targets one channel. For multi-channel fallback, implement sequencing in your application (e.g., try SMS, on failure send WhatsApp).",{"type":45,"tag":1151,"props":1348,"children":1349},{},[1350,1355,1357,1362],{"type":45,"tag":123,"props":1351,"children":1352},{},[1353],{"type":51,"value":1354},"Cannot use WhatsApp free-form messages outside the 24-hour window",{"type":51,"value":1356}," — After 24 hours since the user's last inbound message, you must use a pre-approved template. See ",{"type":45,"tag":60,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":51,"value":205},{"type":51,"value":482},{"type":45,"tag":1151,"props":1364,"children":1365},{},[1366,1371],{"type":45,"tag":123,"props":1367,"children":1368},{},[1369],{"type":51,"value":1370},"Cannot send MMS outside US, Canada, and Australia",{"type":51,"value":1372}," — MMS is only supported on US\u002FCA\u002FAU numbers. For international rich media, use WhatsApp.",{"type":45,"tag":1151,"props":1374,"children":1375},{},[1376,1381,1383,1388],{"type":45,"tag":123,"props":1377,"children":1378},{},[1379],{"type":51,"value":1380},"Cannot use SMS pumping protection or compliance toolkit without a Messaging Service",{"type":51,"value":1382}," — These features are configured per Messaging Service. Raw ",{"type":45,"tag":60,"props":1384,"children":1386},{"className":1385},[],[1387],{"type":51,"value":472},{"type":51,"value":1389}," number sends don't get these protections.",{"type":45,"tag":1151,"props":1391,"children":1392},{},[1393,1398],{"type":45,"tag":123,"props":1394,"children":1395},{},[1396],{"type":51,"value":1397},"Cannot mix channels in a single Messaging Service sender pool",{"type":51,"value":1399}," — A Messaging Service manages phone numbers for SMS\u002FMMS. WhatsApp senders are configured separately.",{"type":45,"tag":1151,"props":1401,"children":1402},{},[1403,1408],{"type":45,"tag":123,"props":1404,"children":1405},{},[1406],{"type":51,"value":1407},"Cannot guarantee delivery on any channel",{"type":51,"value":1409}," — SMS can be carrier-filtered, WhatsApp can queue-timeout (4 hours). Always implement status callbacks to track delivery.",{"type":45,"tag":284,"props":1411,"children":1412},{},[],{"type":45,"tag":46,"props":1414,"children":1416},{"id":1415},"next-steps",[1417],{"type":51,"value":1418},"Next Steps",{"type":45,"tag":1147,"props":1420,"children":1421},{},[1422,1437,1451,1465,1479,1493],{"type":45,"tag":1151,"props":1423,"children":1424},{},[1425,1430,1432],{"type":45,"tag":123,"props":1426,"children":1427},{},[1428],{"type":51,"value":1429},"Send SMS:",{"type":51,"value":1431}," ",{"type":45,"tag":60,"props":1433,"children":1435},{"className":1434},[],[1436],{"type":51,"value":162},{"type":45,"tag":1151,"props":1438,"children":1439},{},[1440,1445,1446],{"type":45,"tag":123,"props":1441,"children":1442},{},[1443],{"type":51,"value":1444},"Send RCS:",{"type":51,"value":1431},{"type":45,"tag":60,"props":1447,"children":1449},{"className":1448},[],[1450],{"type":51,"value":243},{"type":45,"tag":1151,"props":1452,"children":1453},{},[1454,1459,1460],{"type":45,"tag":123,"props":1455,"children":1456},{},[1457],{"type":51,"value":1458},"Send WhatsApp:",{"type":51,"value":1431},{"type":45,"tag":60,"props":1461,"children":1463},{"className":1462},[],[1464],{"type":51,"value":205},{"type":45,"tag":1151,"props":1466,"children":1467},{},[1468,1473,1474],{"type":45,"tag":123,"props":1469,"children":1470},{},[1471],{"type":51,"value":1472},"Set up sender pools and production features:",{"type":51,"value":1431},{"type":45,"tag":60,"props":1475,"children":1477},{"className":1476},[],[1478],{"type":51,"value":1204},{"type":45,"tag":1151,"props":1480,"children":1481},{},[1482,1487,1488],{"type":45,"tag":123,"props":1483,"children":1484},{},[1485],{"type":51,"value":1486},"Channel selection for marketing:",{"type":51,"value":1431},{"type":45,"tag":60,"props":1489,"children":1491},{"className":1490},[],[1492],{"type":51,"value":406},{"type":45,"tag":1151,"props":1494,"children":1495},{},[1496,1501,1502],{"type":45,"tag":123,"props":1497,"children":1498},{},[1499],{"type":51,"value":1500},"Channel selection for notifications:",{"type":51,"value":1431},{"type":45,"tag":60,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":51,"value":429},{"type":45,"tag":1508,"props":1509,"children":1510},"style",{},[1511],{"type":51,"value":1512},"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":1514,"total":1719},[1515,1536,1559,1576,1592,1611,1630,1646,1662,1676,1688,1703],{"slug":1516,"name":1516,"fn":1517,"description":1518,"org":1519,"tags":1520,"stars":1533,"repoUrl":1534,"updatedAt":1535},"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},[1521,1524,1527,1530],{"name":1522,"slug":1523,"type":15},"Documents","documents",{"name":1525,"slug":1526,"type":15},"Healthcare","healthcare",{"name":1528,"slug":1529,"type":15},"Insurance","insurance",{"name":1531,"slug":1532,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1537,"name":1537,"fn":1538,"description":1539,"org":1540,"tags":1541,"stars":1556,"repoUrl":1557,"updatedAt":1558},"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},[1542,1545,1547,1550,1553],{"name":1543,"slug":1544,"type":15},".NET","dotnet",{"name":1546,"slug":1537,"type":15},"ASP.NET Core",{"name":1548,"slug":1549,"type":15},"Blazor","blazor",{"name":1551,"slug":1552,"type":15},"C#","csharp",{"name":1554,"slug":1555,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1560,"name":1560,"fn":1561,"description":1562,"org":1563,"tags":1564,"stars":1556,"repoUrl":1557,"updatedAt":1575},"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},[1565,1568,1571,1574],{"name":1566,"slug":1567,"type":15},"Apps SDK","apps-sdk",{"name":1569,"slug":1570,"type":15},"ChatGPT","chatgpt",{"name":1572,"slug":1573,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1577,"name":1577,"fn":1578,"description":1579,"org":1580,"tags":1581,"stars":1556,"repoUrl":1557,"updatedAt":1591},"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},[1582,1585,1588],{"name":1583,"slug":1584,"type":15},"API Development","api-development",{"name":1586,"slug":1587,"type":15},"CLI","cli",{"name":1589,"slug":1590,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1593,"name":1593,"fn":1594,"description":1595,"org":1596,"tags":1597,"stars":1556,"repoUrl":1557,"updatedAt":1610},"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},[1598,1601,1604,1607],{"name":1599,"slug":1600,"type":15},"Cloudflare","cloudflare",{"name":1602,"slug":1603,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1605,"slug":1606,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1608,"slug":1609,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1612,"name":1612,"fn":1613,"description":1614,"org":1615,"tags":1616,"stars":1556,"repoUrl":1557,"updatedAt":1629},"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},[1617,1620,1623,1626],{"name":1618,"slug":1619,"type":15},"Productivity","productivity",{"name":1621,"slug":1622,"type":15},"Project Management","project-management",{"name":1624,"slug":1625,"type":15},"Strategy","strategy",{"name":1627,"slug":1628,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1631,"name":1631,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":1556,"repoUrl":1557,"updatedAt":1645},"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},[1636,1639,1641,1644],{"name":1637,"slug":1638,"type":15},"Design","design",{"name":1640,"slug":1631,"type":15},"Figma",{"name":1642,"slug":1643,"type":15},"Frontend","frontend",{"name":1572,"slug":1573,"type":15},"2026-04-12T05:06:47.939943",{"slug":1647,"name":1647,"fn":1648,"description":1649,"org":1650,"tags":1651,"stars":1556,"repoUrl":1557,"updatedAt":1661},"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},[1652,1653,1656,1657,1658],{"name":1637,"slug":1638,"type":15},{"name":1654,"slug":1655,"type":15},"Design System","design-system",{"name":1640,"slug":1631,"type":15},{"name":1642,"slug":1643,"type":15},{"name":1659,"slug":1660,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1663,"name":1663,"fn":1664,"description":1665,"org":1666,"tags":1667,"stars":1556,"repoUrl":1557,"updatedAt":1675},"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},[1668,1669,1670,1673,1674],{"name":1637,"slug":1638,"type":15},{"name":1654,"slug":1655,"type":15},{"name":1671,"slug":1672,"type":15},"Documentation","documentation",{"name":1640,"slug":1631,"type":15},{"name":1642,"slug":1643,"type":15},"2026-05-16T06:07:47.821474",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1556,"repoUrl":1557,"updatedAt":1687},"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},[1682,1683,1684,1685,1686],{"name":1637,"slug":1638,"type":15},{"name":1640,"slug":1631,"type":15},{"name":1642,"slug":1643,"type":15},{"name":1659,"slug":1660,"type":15},{"name":1554,"slug":1555,"type":15},"2026-05-16T06:07:40.583615",{"slug":1689,"name":1689,"fn":1690,"description":1691,"org":1692,"tags":1693,"stars":1556,"repoUrl":1557,"updatedAt":1702},"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},[1694,1697,1698,1701],{"name":1695,"slug":1696,"type":15},"Animation","animation",{"name":1589,"slug":1590,"type":15},{"name":1699,"slug":1700,"type":15},"Creative","creative",{"name":1637,"slug":1638,"type":15},"2026-05-02T05:31:48.48485",{"slug":1704,"name":1704,"fn":1705,"description":1706,"org":1707,"tags":1708,"stars":1556,"repoUrl":1557,"updatedAt":1718},"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},[1709,1710,1711,1714,1717],{"name":1699,"slug":1700,"type":15},{"name":1637,"slug":1638,"type":15},{"name":1712,"slug":1713,"type":15},"Image Generation","image-generation",{"name":1715,"slug":1716,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1721,"total":1834},[1722,1738,1754,1766,1784,1802,1822],{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":28,"repoUrl":29,"updatedAt":30},"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},[1728,1731,1734,1737],{"name":1729,"slug":1730,"type":15},"Accessibility","accessibility",{"name":1732,"slug":1733,"type":15},"Charts","charts",{"name":1735,"slug":1736,"type":15},"Data Visualization","data-visualization",{"name":1637,"slug":1638,"type":15},{"slug":1739,"name":1739,"fn":1740,"description":1741,"org":1742,"tags":1743,"stars":28,"repoUrl":29,"updatedAt":1753},"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},[1744,1747,1750],{"name":1745,"slug":1746,"type":15},"Agents","agents",{"name":1748,"slug":1749,"type":15},"Browser Automation","browser-automation",{"name":1751,"slug":1752,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1755,"name":1755,"fn":1756,"description":1757,"org":1758,"tags":1759,"stars":28,"repoUrl":29,"updatedAt":1765},"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},[1760,1761,1764],{"name":1748,"slug":1749,"type":15},{"name":1762,"slug":1763,"type":15},"Local Development","local-development",{"name":1751,"slug":1752,"type":15},"2026-04-06T18:41:17.526867",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":28,"repoUrl":29,"updatedAt":1783},"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},[1772,1773,1774,1777,1780],{"name":1745,"slug":1746,"type":15},{"name":1605,"slug":1606,"type":15},{"name":1775,"slug":1776,"type":15},"SDK","sdk",{"name":1778,"slug":1779,"type":15},"Serverless","serverless",{"name":1781,"slug":1782,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1785,"name":1785,"fn":1786,"description":1787,"org":1788,"tags":1789,"stars":28,"repoUrl":29,"updatedAt":1801},"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},[1790,1791,1794,1797,1798],{"name":1642,"slug":1643,"type":15},{"name":1792,"slug":1793,"type":15},"React","react",{"name":1795,"slug":1796,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1659,"slug":1660,"type":15},{"name":1799,"slug":1800,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1803,"name":1803,"fn":1804,"description":1805,"org":1806,"tags":1807,"stars":28,"repoUrl":29,"updatedAt":1821},"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},[1808,1811,1814,1817,1820],{"name":1809,"slug":1810,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1812,"slug":1813,"type":15},"Cost Optimization","cost-optimization",{"name":1815,"slug":1816,"type":15},"LLM","llm",{"name":1818,"slug":1819,"type":15},"Performance","performance",{"name":1799,"slug":1800,"type":15},"2026-04-06T18:40:44.377464",{"slug":1823,"name":1823,"fn":1824,"description":1825,"org":1826,"tags":1827,"stars":28,"repoUrl":29,"updatedAt":1833},"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},[1828,1829,1832],{"name":1812,"slug":1813,"type":15},{"name":1830,"slug":1831,"type":15},"Database","database",{"name":1815,"slug":1816,"type":15},"2026-04-06T18:41:08.513425",600]