[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-whatsapp-send-message":3,"mdc-ulp7qp-key":36,"related-repo-openai-twilio-whatsapp-send-message":1273,"related-org-openai-twilio-whatsapp-send-message":1396},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"twilio-whatsapp-send-message","send WhatsApp messages via Twilio","WhatsApp messaging deep-dive reference. Covers the 24-hour service window rules (free-form vs template mode), sandbox setup for testing, template approval workflow, production sender requirements, and WhatsApp-specific error handling. For sending WhatsApp messages, use twilio-send-message instead. Use this skill when setting up WhatsApp for the first time or debugging WhatsApp-specific delivery behavior.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"WhatsApp","whatsapp","tag",{"name":17,"slug":18,"type":15},"Messaging","messaging",{"name":20,"slug":21,"type":15},"Communications","communications",{"name":23,"slug":24,"type":15},"Twilio","twilio",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-whatsapp-send-message","---\nname: twilio-whatsapp-send-message\ndescription: >\n  WhatsApp messaging deep-dive reference. Covers the 24-hour service\n  window rules (free-form vs template mode), sandbox setup for testing,\n  template approval workflow, production sender requirements, and\n  WhatsApp-specific error handling. For sending WhatsApp messages, use\n  twilio-send-message instead. Use this skill when setting up WhatsApp\n  for the first time or debugging WhatsApp-specific delivery behavior.\n---\n\n## Overview\n\n**WhatsApp is one channel in Twilio's Messaging platform.** All channels share the same `messages.create()` API — see `twilio-messaging-overview` for the full channel comparison and onboarding sequence.\n\nTwilio routes WhatsApp through the Programmable Messaging API — all numbers use `whatsapp:+E.164` prefix. Two sending modes apply: **free-form** (within 24 hrs of last inbound) and **template** (anytime). Sending free-form outside the window causes silent delivery failure — always check which mode is required.\n\n| Mode | When allowed | Parameters |\n|------|-------------|------------|\n| Free-form | Within 24 hrs of last inbound from user | `body`, optional `mediaUrl` |\n| Template | Anytime | `contentSid` + `contentVariables` |\n\n---\n\n## Prerequisites\n\n- Twilio account with WhatsApp enabled\n  — New to Twilio? See `twilio-account-setup`\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- Recipient opted in to receive messages from your WhatsApp Business Account\n\n**Testing (sandbox):** Join by texting `join \u003Cyour-code>` to `+14155238886`. No registration needed — see [Console > Messaging > Try it out > Send a WhatsApp message](https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fsms\u002Ftry-it-out\u002Fwhatsapp-learn). Sandbox participants must re-join every 3 days.\n\n**Production:** Register a WhatsApp Business sender first — see `twilio-whatsapp-manage-senders`.\n\n---\n\n## Quickstart\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\",   # Sandbox sender (or your production number)\n    to=\"whatsapp:+15005550006\",      # Must have joined the sandbox\n    body=\"Your order has been confirmed.\"\n)\n\nprint(message.sid)     # MMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(message.status)  # queued | sent | delivered | failed\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:+15005550006\",\n    body: \"Your order has been confirmed.\",\n});\n\nconsole.log(message.sid);\nconsole.log(message.status);\n```\n\n---\n\n## Key Patterns\n\n### Send a Template Message (outside service window)\n\nTemplates are created in Console > Messaging > Content Template Builder and must be approved by Meta. See `twilio-content-template-builder` for template creation.\n\n**Python**\n```python\nmessage = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15005550006\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"March 25\", \"2\": \"2:00 PM\"}'\n)\n```\n\n**Node.js**\n```node\nconst message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15005550006\",\n    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    contentVariables: JSON.stringify({ \"1\": \"March 25\", \"2\": \"2:00 PM\" }),\n});\n```\n\n### Send Media (free-form only)\n\nMax file size: 16 MB.\n\n**Python**\n```python\nmessage = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15005550006\",\n    body=\"Here is your invoice.\",\n    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n)\n```\n\n**Node.js**\n```node\nconst message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15005550006\",\n    body: \"Here is your invoice.\",\n    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n});\n```\n\n---\n\n## Response Fields\n\n| Field | Description |\n|-------|-------------|\n| `sid` | Unique message identifier (`MM...`) |\n| `status` | `queued`, `sent`, `delivered`, `read`, `failed`, `undelivered` |\n| `error_code` | Populated on failure |\n| `error_message` | Human-readable error description |\n| `date_sent` | UTC timestamp |\n\n---\n\n## Common Errors\n\n| Code | Meaning | Fix |\n|------|---------|-----|\n| 63003 | Invalid WhatsApp destination number | Verify number is WhatsApp-enabled and correctly formatted |\n| 63018 | Rate limit exceeded on sender | Reduce send rate; default is 80 MPS |\n| 63020 | Business hasn't accepted Twilio's Meta invitation | Accept invite in Meta Business Manager |\n| N\u002FA | Free-form outside window | Switch to a template message |\n\n---\n\n## CANNOT\n\n- **Cannot exceed 80 messages\u002Fsecond per sender** — Text-only can be raised to 400 MPS on request\n- **Cannot queue messages beyond 4 hours** — Undelivered messages fail after 4 hours\n- **Cannot exceed sandbox throttle limits** — 1 message per 3 seconds, 50 messages\u002Fday on trial, participants expire after 3 days\n- **Cannot send without opt-in** — Sending without recipient opt-in risks account suspension\n- **Cannot use WhatsApp Groups API** — Deprecated April 2020. Use Conversations API instead.\n\n---\n\n## Next Steps\n\n- **Channel overview and onboarding guide:** `twilio-messaging-overview`\n- **Register a production WhatsApp sender:** `twilio-whatsapp-manage-senders`\n- **Create and manage message templates:** `twilio-content-template-builder`\n- **Multi-channel conversations with history:** `twilio-conversations-api`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,79,106,199,203,209,285,322,340,343,349,357,486,494,589,592,598,605,618,625,678,685,736,742,747,754,805,812,863,866,872,1027,1030,1036,1135,1138,1144,1197,1200,1206,1267],{"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,60,62,69,71,77],{"type":42,"tag":55,"props":56,"children":57},"strong",{},[58],{"type":48,"value":59},"WhatsApp is one channel in Twilio's Messaging platform.",{"type":48,"value":61}," All channels share the same ",{"type":42,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":48,"value":68},"messages.create()",{"type":48,"value":70}," API — see ",{"type":42,"tag":63,"props":72,"children":74},{"className":73},[],[75],{"type":48,"value":76},"twilio-messaging-overview",{"type":48,"value":78}," for the full channel comparison and onboarding sequence.",{"type":42,"tag":51,"props":80,"children":81},{},[82,84,90,92,97,99,104],{"type":48,"value":83},"Twilio routes WhatsApp through the Programmable Messaging API — all numbers use ",{"type":42,"tag":63,"props":85,"children":87},{"className":86},[],[88],{"type":48,"value":89},"whatsapp:+E.164",{"type":48,"value":91}," prefix. Two sending modes apply: ",{"type":42,"tag":55,"props":93,"children":94},{},[95],{"type":48,"value":96},"free-form",{"type":48,"value":98}," (within 24 hrs of last inbound) and ",{"type":42,"tag":55,"props":100,"children":101},{},[102],{"type":48,"value":103},"template",{"type":48,"value":105}," (anytime). Sending free-form outside the window causes silent delivery failure — always check which mode is required.",{"type":42,"tag":107,"props":108,"children":109},"table",{},[110,134],{"type":42,"tag":111,"props":112,"children":113},"thead",{},[114],{"type":42,"tag":115,"props":116,"children":117},"tr",{},[118,124,129],{"type":42,"tag":119,"props":120,"children":121},"th",{},[122],{"type":48,"value":123},"Mode",{"type":42,"tag":119,"props":125,"children":126},{},[127],{"type":48,"value":128},"When allowed",{"type":42,"tag":119,"props":130,"children":131},{},[132],{"type":48,"value":133},"Parameters",{"type":42,"tag":135,"props":136,"children":137},"tbody",{},[138,169],{"type":42,"tag":115,"props":139,"children":140},{},[141,147,152],{"type":42,"tag":142,"props":143,"children":144},"td",{},[145],{"type":48,"value":146},"Free-form",{"type":42,"tag":142,"props":148,"children":149},{},[150],{"type":48,"value":151},"Within 24 hrs of last inbound from user",{"type":42,"tag":142,"props":153,"children":154},{},[155,161,163],{"type":42,"tag":63,"props":156,"children":158},{"className":157},[],[159],{"type":48,"value":160},"body",{"type":48,"value":162},", optional ",{"type":42,"tag":63,"props":164,"children":166},{"className":165},[],[167],{"type":48,"value":168},"mediaUrl",{"type":42,"tag":115,"props":170,"children":171},{},[172,177,182],{"type":42,"tag":142,"props":173,"children":174},{},[175],{"type":48,"value":176},"Template",{"type":42,"tag":142,"props":178,"children":179},{},[180],{"type":48,"value":181},"Anytime",{"type":42,"tag":142,"props":183,"children":184},{},[185,191,193],{"type":42,"tag":63,"props":186,"children":188},{"className":187},[],[189],{"type":48,"value":190},"contentSid",{"type":48,"value":192}," + ",{"type":42,"tag":63,"props":194,"children":196},{"className":195},[],[197],{"type":48,"value":198},"contentVariables",{"type":42,"tag":200,"props":201,"children":202},"hr",{},[],{"type":42,"tag":43,"props":204,"children":206},{"id":205},"prerequisites",[207],{"type":48,"value":208},"Prerequisites",{"type":42,"tag":210,"props":211,"children":212},"ul",{},[213,225,261,280],{"type":42,"tag":214,"props":215,"children":216},"li",{},[217,219],{"type":48,"value":218},"Twilio account with WhatsApp enabled\n— New to Twilio? See ",{"type":42,"tag":63,"props":220,"children":222},{"className":221},[],[223],{"type":48,"value":224},"twilio-account-setup",{"type":42,"tag":214,"props":226,"children":227},{},[228,230],{"type":48,"value":229},"Environment variables:\n",{"type":42,"tag":210,"props":231,"children":232},{},[233,242],{"type":42,"tag":214,"props":234,"children":235},{},[236],{"type":42,"tag":63,"props":237,"children":239},{"className":238},[],[240],{"type":48,"value":241},"TWILIO_ACCOUNT_SID",{"type":42,"tag":214,"props":243,"children":244},{},[245,251,253,259],{"type":42,"tag":63,"props":246,"children":248},{"className":247},[],[249],{"type":48,"value":250},"TWILIO_AUTH_TOKEN",{"type":48,"value":252},"\n— See ",{"type":42,"tag":63,"props":254,"children":256},{"className":255},[],[257],{"type":48,"value":258},"twilio-iam-auth-setup",{"type":48,"value":260}," for credential setup and best practices",{"type":42,"tag":214,"props":262,"children":263},{},[264,266,272,274],{"type":48,"value":265},"SDK: ",{"type":42,"tag":63,"props":267,"children":269},{"className":268},[],[270],{"type":48,"value":271},"pip install twilio",{"type":48,"value":273}," \u002F ",{"type":42,"tag":63,"props":275,"children":277},{"className":276},[],[278],{"type":48,"value":279},"npm install twilio",{"type":42,"tag":214,"props":281,"children":282},{},[283],{"type":48,"value":284},"Recipient opted in to receive messages from your WhatsApp Business Account",{"type":42,"tag":51,"props":286,"children":287},{},[288,293,295,301,303,309,311,320],{"type":42,"tag":55,"props":289,"children":290},{},[291],{"type":48,"value":292},"Testing (sandbox):",{"type":48,"value":294}," Join by texting ",{"type":42,"tag":63,"props":296,"children":298},{"className":297},[],[299],{"type":48,"value":300},"join \u003Cyour-code>",{"type":48,"value":302}," to ",{"type":42,"tag":63,"props":304,"children":306},{"className":305},[],[307],{"type":48,"value":308},"+14155238886",{"type":48,"value":310},". No registration needed — see ",{"type":42,"tag":312,"props":313,"children":317},"a",{"href":314,"rel":315},"https:\u002F\u002Fconsole.twilio.com\u002Fus1\u002Fdevelop\u002Fsms\u002Ftry-it-out\u002Fwhatsapp-learn",[316],"nofollow",[318],{"type":48,"value":319},"Console > Messaging > Try it out > Send a WhatsApp message",{"type":48,"value":321},". Sandbox participants must re-join every 3 days.",{"type":42,"tag":51,"props":323,"children":324},{},[325,330,332,338],{"type":42,"tag":55,"props":326,"children":327},{},[328],{"type":48,"value":329},"Production:",{"type":48,"value":331}," Register a WhatsApp Business sender first — see ",{"type":42,"tag":63,"props":333,"children":335},{"className":334},[],[336],{"type":48,"value":337},"twilio-whatsapp-manage-senders",{"type":48,"value":339},".",{"type":42,"tag":200,"props":341,"children":342},{},[],{"type":42,"tag":43,"props":344,"children":346},{"id":345},"quickstart",[347],{"type":48,"value":348},"Quickstart",{"type":42,"tag":51,"props":350,"children":351},{},[352],{"type":42,"tag":55,"props":353,"children":354},{},[355],{"type":48,"value":356},"Python",{"type":42,"tag":358,"props":359,"children":364},"pre",{"className":360,"code":361,"language":362,"meta":363,"style":363},"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\",   # Sandbox sender (or your production number)\n    to=\"whatsapp:+15005550006\",      # Must have joined the sandbox\n    body=\"Your order has been confirmed.\"\n)\n\nprint(message.sid)     # MMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nprint(message.status)  # queued | sent | delivered | failed\n","python","",[365],{"type":42,"tag":63,"props":366,"children":367},{"__ignoreMap":363},[368,379,388,398,407,415,424,433,442,451,460,468,477],{"type":42,"tag":369,"props":370,"children":373},"span",{"class":371,"line":372},"line",1,[374],{"type":42,"tag":369,"props":375,"children":376},{},[377],{"type":48,"value":378},"import os\n",{"type":42,"tag":369,"props":380,"children":382},{"class":371,"line":381},2,[383],{"type":42,"tag":369,"props":384,"children":385},{},[386],{"type":48,"value":387},"from twilio.rest import Client\n",{"type":42,"tag":369,"props":389,"children":391},{"class":371,"line":390},3,[392],{"type":42,"tag":369,"props":393,"children":395},{"emptyLinePlaceholder":394},true,[396],{"type":48,"value":397},"\n",{"type":42,"tag":369,"props":399,"children":401},{"class":371,"line":400},4,[402],{"type":42,"tag":369,"props":403,"children":404},{},[405],{"type":48,"value":406},"client = Client(os.environ[\"TWILIO_ACCOUNT_SID\"], os.environ[\"TWILIO_AUTH_TOKEN\"])\n",{"type":42,"tag":369,"props":408,"children":410},{"class":371,"line":409},5,[411],{"type":42,"tag":369,"props":412,"children":413},{"emptyLinePlaceholder":394},[414],{"type":48,"value":397},{"type":42,"tag":369,"props":416,"children":418},{"class":371,"line":417},6,[419],{"type":42,"tag":369,"props":420,"children":421},{},[422],{"type":48,"value":423},"message = client.messages.create(\n",{"type":42,"tag":369,"props":425,"children":427},{"class":371,"line":426},7,[428],{"type":42,"tag":369,"props":429,"children":430},{},[431],{"type":48,"value":432},"    from_=\"whatsapp:+14155238886\",   # Sandbox sender (or your production number)\n",{"type":42,"tag":369,"props":434,"children":436},{"class":371,"line":435},8,[437],{"type":42,"tag":369,"props":438,"children":439},{},[440],{"type":48,"value":441},"    to=\"whatsapp:+15005550006\",      # Must have joined the sandbox\n",{"type":42,"tag":369,"props":443,"children":445},{"class":371,"line":444},9,[446],{"type":42,"tag":369,"props":447,"children":448},{},[449],{"type":48,"value":450},"    body=\"Your order has been confirmed.\"\n",{"type":42,"tag":369,"props":452,"children":454},{"class":371,"line":453},10,[455],{"type":42,"tag":369,"props":456,"children":457},{},[458],{"type":48,"value":459},")\n",{"type":42,"tag":369,"props":461,"children":463},{"class":371,"line":462},11,[464],{"type":42,"tag":369,"props":465,"children":466},{"emptyLinePlaceholder":394},[467],{"type":48,"value":397},{"type":42,"tag":369,"props":469,"children":471},{"class":371,"line":470},12,[472],{"type":42,"tag":369,"props":473,"children":474},{},[475],{"type":48,"value":476},"print(message.sid)     # MMxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n",{"type":42,"tag":369,"props":478,"children":480},{"class":371,"line":479},13,[481],{"type":42,"tag":369,"props":482,"children":483},{},[484],{"type":48,"value":485},"print(message.status)  # queued | sent | delivered | failed\n",{"type":42,"tag":51,"props":487,"children":488},{},[489],{"type":42,"tag":55,"props":490,"children":491},{},[492],{"type":48,"value":493},"Node.js",{"type":42,"tag":358,"props":495,"children":499},{"className":496,"code":497,"language":498,"meta":363,"style":363},"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:+15005550006\",\n    body: \"Your order has been confirmed.\",\n});\n\nconsole.log(message.sid);\nconsole.log(message.status);\n","node",[500],{"type":42,"tag":63,"props":501,"children":502},{"__ignoreMap":363},[503,511,519,526,534,542,550,558,566,573,581],{"type":42,"tag":369,"props":504,"children":505},{"class":371,"line":372},[506],{"type":42,"tag":369,"props":507,"children":508},{},[509],{"type":48,"value":510},"const twilio = require(\"twilio\");\n",{"type":42,"tag":369,"props":512,"children":513},{"class":371,"line":381},[514],{"type":42,"tag":369,"props":515,"children":516},{},[517],{"type":48,"value":518},"const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);\n",{"type":42,"tag":369,"props":520,"children":521},{"class":371,"line":390},[522],{"type":42,"tag":369,"props":523,"children":524},{"emptyLinePlaceholder":394},[525],{"type":48,"value":397},{"type":42,"tag":369,"props":527,"children":528},{"class":371,"line":400},[529],{"type":42,"tag":369,"props":530,"children":531},{},[532],{"type":48,"value":533},"const message = await client.messages.create({\n",{"type":42,"tag":369,"props":535,"children":536},{"class":371,"line":409},[537],{"type":42,"tag":369,"props":538,"children":539},{},[540],{"type":48,"value":541},"    from: \"whatsapp:+14155238886\",\n",{"type":42,"tag":369,"props":543,"children":544},{"class":371,"line":417},[545],{"type":42,"tag":369,"props":546,"children":547},{},[548],{"type":48,"value":549},"    to: \"whatsapp:+15005550006\",\n",{"type":42,"tag":369,"props":551,"children":552},{"class":371,"line":426},[553],{"type":42,"tag":369,"props":554,"children":555},{},[556],{"type":48,"value":557},"    body: \"Your order has been confirmed.\",\n",{"type":42,"tag":369,"props":559,"children":560},{"class":371,"line":435},[561],{"type":42,"tag":369,"props":562,"children":563},{},[564],{"type":48,"value":565},"});\n",{"type":42,"tag":369,"props":567,"children":568},{"class":371,"line":444},[569],{"type":42,"tag":369,"props":570,"children":571},{"emptyLinePlaceholder":394},[572],{"type":48,"value":397},{"type":42,"tag":369,"props":574,"children":575},{"class":371,"line":453},[576],{"type":42,"tag":369,"props":577,"children":578},{},[579],{"type":48,"value":580},"console.log(message.sid);\n",{"type":42,"tag":369,"props":582,"children":583},{"class":371,"line":462},[584],{"type":42,"tag":369,"props":585,"children":586},{},[587],{"type":48,"value":588},"console.log(message.status);\n",{"type":42,"tag":200,"props":590,"children":591},{},[],{"type":42,"tag":43,"props":593,"children":595},{"id":594},"key-patterns",[596],{"type":48,"value":597},"Key Patterns",{"type":42,"tag":599,"props":600,"children":602},"h3",{"id":601},"send-a-template-message-outside-service-window",[603],{"type":48,"value":604},"Send a Template Message (outside service window)",{"type":42,"tag":51,"props":606,"children":607},{},[608,610,616],{"type":48,"value":609},"Templates are created in Console > Messaging > Content Template Builder and must be approved by Meta. See ",{"type":42,"tag":63,"props":611,"children":613},{"className":612},[],[614],{"type":48,"value":615},"twilio-content-template-builder",{"type":48,"value":617}," for template creation.",{"type":42,"tag":51,"props":619,"children":620},{},[621],{"type":42,"tag":55,"props":622,"children":623},{},[624],{"type":48,"value":356},{"type":42,"tag":358,"props":626,"children":628},{"className":360,"code":627,"language":362,"meta":363,"style":363},"message = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15005550006\",\n    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    content_variables='{\"1\": \"March 25\", \"2\": \"2:00 PM\"}'\n)\n",[629],{"type":42,"tag":63,"props":630,"children":631},{"__ignoreMap":363},[632,639,647,655,663,671],{"type":42,"tag":369,"props":633,"children":634},{"class":371,"line":372},[635],{"type":42,"tag":369,"props":636,"children":637},{},[638],{"type":48,"value":423},{"type":42,"tag":369,"props":640,"children":641},{"class":371,"line":381},[642],{"type":42,"tag":369,"props":643,"children":644},{},[645],{"type":48,"value":646},"    from_=\"whatsapp:+14155238886\",\n",{"type":42,"tag":369,"props":648,"children":649},{"class":371,"line":390},[650],{"type":42,"tag":369,"props":651,"children":652},{},[653],{"type":48,"value":654},"    to=\"whatsapp:+15005550006\",\n",{"type":42,"tag":369,"props":656,"children":657},{"class":371,"line":400},[658],{"type":42,"tag":369,"props":659,"children":660},{},[661],{"type":48,"value":662},"    content_sid=\"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":42,"tag":369,"props":664,"children":665},{"class":371,"line":409},[666],{"type":42,"tag":369,"props":667,"children":668},{},[669],{"type":48,"value":670},"    content_variables='{\"1\": \"March 25\", \"2\": \"2:00 PM\"}'\n",{"type":42,"tag":369,"props":672,"children":673},{"class":371,"line":417},[674],{"type":42,"tag":369,"props":675,"children":676},{},[677],{"type":48,"value":459},{"type":42,"tag":51,"props":679,"children":680},{},[681],{"type":42,"tag":55,"props":682,"children":683},{},[684],{"type":48,"value":493},{"type":42,"tag":358,"props":686,"children":688},{"className":496,"code":687,"language":498,"meta":363,"style":363},"const message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15005550006\",\n    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n    contentVariables: JSON.stringify({ \"1\": \"March 25\", \"2\": \"2:00 PM\" }),\n});\n",[689],{"type":42,"tag":63,"props":690,"children":691},{"__ignoreMap":363},[692,699,706,713,721,729],{"type":42,"tag":369,"props":693,"children":694},{"class":371,"line":372},[695],{"type":42,"tag":369,"props":696,"children":697},{},[698],{"type":48,"value":533},{"type":42,"tag":369,"props":700,"children":701},{"class":371,"line":381},[702],{"type":42,"tag":369,"props":703,"children":704},{},[705],{"type":48,"value":541},{"type":42,"tag":369,"props":707,"children":708},{"class":371,"line":390},[709],{"type":42,"tag":369,"props":710,"children":711},{},[712],{"type":48,"value":549},{"type":42,"tag":369,"props":714,"children":715},{"class":371,"line":400},[716],{"type":42,"tag":369,"props":717,"children":718},{},[719],{"type":48,"value":720},"    contentSid: \"HXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n",{"type":42,"tag":369,"props":722,"children":723},{"class":371,"line":409},[724],{"type":42,"tag":369,"props":725,"children":726},{},[727],{"type":48,"value":728},"    contentVariables: JSON.stringify({ \"1\": \"March 25\", \"2\": \"2:00 PM\" }),\n",{"type":42,"tag":369,"props":730,"children":731},{"class":371,"line":417},[732],{"type":42,"tag":369,"props":733,"children":734},{},[735],{"type":48,"value":565},{"type":42,"tag":599,"props":737,"children":739},{"id":738},"send-media-free-form-only",[740],{"type":48,"value":741},"Send Media (free-form only)",{"type":42,"tag":51,"props":743,"children":744},{},[745],{"type":48,"value":746},"Max file size: 16 MB.",{"type":42,"tag":51,"props":748,"children":749},{},[750],{"type":42,"tag":55,"props":751,"children":752},{},[753],{"type":48,"value":356},{"type":42,"tag":358,"props":755,"children":757},{"className":360,"code":756,"language":362,"meta":363,"style":363},"message = client.messages.create(\n    from_=\"whatsapp:+14155238886\",\n    to=\"whatsapp:+15005550006\",\n    body=\"Here is your invoice.\",\n    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n)\n",[758],{"type":42,"tag":63,"props":759,"children":760},{"__ignoreMap":363},[761,768,775,782,790,798],{"type":42,"tag":369,"props":762,"children":763},{"class":371,"line":372},[764],{"type":42,"tag":369,"props":765,"children":766},{},[767],{"type":48,"value":423},{"type":42,"tag":369,"props":769,"children":770},{"class":371,"line":381},[771],{"type":42,"tag":369,"props":772,"children":773},{},[774],{"type":48,"value":646},{"type":42,"tag":369,"props":776,"children":777},{"class":371,"line":390},[778],{"type":42,"tag":369,"props":779,"children":780},{},[781],{"type":48,"value":654},{"type":42,"tag":369,"props":783,"children":784},{"class":371,"line":400},[785],{"type":42,"tag":369,"props":786,"children":787},{},[788],{"type":48,"value":789},"    body=\"Here is your invoice.\",\n",{"type":42,"tag":369,"props":791,"children":792},{"class":371,"line":409},[793],{"type":42,"tag":369,"props":794,"children":795},{},[796],{"type":48,"value":797},"    media_url=[\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"]\n",{"type":42,"tag":369,"props":799,"children":800},{"class":371,"line":417},[801],{"type":42,"tag":369,"props":802,"children":803},{},[804],{"type":48,"value":459},{"type":42,"tag":51,"props":806,"children":807},{},[808],{"type":42,"tag":55,"props":809,"children":810},{},[811],{"type":48,"value":493},{"type":42,"tag":358,"props":813,"children":815},{"className":496,"code":814,"language":498,"meta":363,"style":363},"const message = await client.messages.create({\n    from: \"whatsapp:+14155238886\",\n    to: \"whatsapp:+15005550006\",\n    body: \"Here is your invoice.\",\n    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n});\n",[816],{"type":42,"tag":63,"props":817,"children":818},{"__ignoreMap":363},[819,826,833,840,848,856],{"type":42,"tag":369,"props":820,"children":821},{"class":371,"line":372},[822],{"type":42,"tag":369,"props":823,"children":824},{},[825],{"type":48,"value":533},{"type":42,"tag":369,"props":827,"children":828},{"class":371,"line":381},[829],{"type":42,"tag":369,"props":830,"children":831},{},[832],{"type":48,"value":541},{"type":42,"tag":369,"props":834,"children":835},{"class":371,"line":390},[836],{"type":42,"tag":369,"props":837,"children":838},{},[839],{"type":48,"value":549},{"type":42,"tag":369,"props":841,"children":842},{"class":371,"line":400},[843],{"type":42,"tag":369,"props":844,"children":845},{},[846],{"type":48,"value":847},"    body: \"Here is your invoice.\",\n",{"type":42,"tag":369,"props":849,"children":850},{"class":371,"line":409},[851],{"type":42,"tag":369,"props":852,"children":853},{},[854],{"type":48,"value":855},"    mediaUrl: [\"https:\u002F\u002Fexample.com\u002Finvoice.pdf\"],\n",{"type":42,"tag":369,"props":857,"children":858},{"class":371,"line":417},[859],{"type":42,"tag":369,"props":860,"children":861},{},[862],{"type":48,"value":565},{"type":42,"tag":200,"props":864,"children":865},{},[],{"type":42,"tag":43,"props":867,"children":869},{"id":868},"response-fields",[870],{"type":48,"value":871},"Response Fields",{"type":42,"tag":107,"props":873,"children":874},{},[875,891],{"type":42,"tag":111,"props":876,"children":877},{},[878],{"type":42,"tag":115,"props":879,"children":880},{},[881,886],{"type":42,"tag":119,"props":882,"children":883},{},[884],{"type":48,"value":885},"Field",{"type":42,"tag":119,"props":887,"children":888},{},[889],{"type":48,"value":890},"Description",{"type":42,"tag":135,"props":892,"children":893},{},[894,919,976,993,1010],{"type":42,"tag":115,"props":895,"children":896},{},[897,906],{"type":42,"tag":142,"props":898,"children":899},{},[900],{"type":42,"tag":63,"props":901,"children":903},{"className":902},[],[904],{"type":48,"value":905},"sid",{"type":42,"tag":142,"props":907,"children":908},{},[909,911,917],{"type":48,"value":910},"Unique message identifier (",{"type":42,"tag":63,"props":912,"children":914},{"className":913},[],[915],{"type":48,"value":916},"MM...",{"type":48,"value":918},")",{"type":42,"tag":115,"props":920,"children":921},{},[922,931],{"type":42,"tag":142,"props":923,"children":924},{},[925],{"type":42,"tag":63,"props":926,"children":928},{"className":927},[],[929],{"type":48,"value":930},"status",{"type":42,"tag":142,"props":932,"children":933},{},[934,940,942,948,949,955,956,962,963,969,970],{"type":42,"tag":63,"props":935,"children":937},{"className":936},[],[938],{"type":48,"value":939},"queued",{"type":48,"value":941},", ",{"type":42,"tag":63,"props":943,"children":945},{"className":944},[],[946],{"type":48,"value":947},"sent",{"type":48,"value":941},{"type":42,"tag":63,"props":950,"children":952},{"className":951},[],[953],{"type":48,"value":954},"delivered",{"type":48,"value":941},{"type":42,"tag":63,"props":957,"children":959},{"className":958},[],[960],{"type":48,"value":961},"read",{"type":48,"value":941},{"type":42,"tag":63,"props":964,"children":966},{"className":965},[],[967],{"type":48,"value":968},"failed",{"type":48,"value":941},{"type":42,"tag":63,"props":971,"children":973},{"className":972},[],[974],{"type":48,"value":975},"undelivered",{"type":42,"tag":115,"props":977,"children":978},{},[979,988],{"type":42,"tag":142,"props":980,"children":981},{},[982],{"type":42,"tag":63,"props":983,"children":985},{"className":984},[],[986],{"type":48,"value":987},"error_code",{"type":42,"tag":142,"props":989,"children":990},{},[991],{"type":48,"value":992},"Populated on failure",{"type":42,"tag":115,"props":994,"children":995},{},[996,1005],{"type":42,"tag":142,"props":997,"children":998},{},[999],{"type":42,"tag":63,"props":1000,"children":1002},{"className":1001},[],[1003],{"type":48,"value":1004},"error_message",{"type":42,"tag":142,"props":1006,"children":1007},{},[1008],{"type":48,"value":1009},"Human-readable error description",{"type":42,"tag":115,"props":1011,"children":1012},{},[1013,1022],{"type":42,"tag":142,"props":1014,"children":1015},{},[1016],{"type":42,"tag":63,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":48,"value":1021},"date_sent",{"type":42,"tag":142,"props":1023,"children":1024},{},[1025],{"type":48,"value":1026},"UTC timestamp",{"type":42,"tag":200,"props":1028,"children":1029},{},[],{"type":42,"tag":43,"props":1031,"children":1033},{"id":1032},"common-errors",[1034],{"type":48,"value":1035},"Common Errors",{"type":42,"tag":107,"props":1037,"children":1038},{},[1039,1060],{"type":42,"tag":111,"props":1040,"children":1041},{},[1042],{"type":42,"tag":115,"props":1043,"children":1044},{},[1045,1050,1055],{"type":42,"tag":119,"props":1046,"children":1047},{},[1048],{"type":48,"value":1049},"Code",{"type":42,"tag":119,"props":1051,"children":1052},{},[1053],{"type":48,"value":1054},"Meaning",{"type":42,"tag":119,"props":1056,"children":1057},{},[1058],{"type":48,"value":1059},"Fix",{"type":42,"tag":135,"props":1061,"children":1062},{},[1063,1081,1099,1117],{"type":42,"tag":115,"props":1064,"children":1065},{},[1066,1071,1076],{"type":42,"tag":142,"props":1067,"children":1068},{},[1069],{"type":48,"value":1070},"63003",{"type":42,"tag":142,"props":1072,"children":1073},{},[1074],{"type":48,"value":1075},"Invalid WhatsApp destination number",{"type":42,"tag":142,"props":1077,"children":1078},{},[1079],{"type":48,"value":1080},"Verify number is WhatsApp-enabled and correctly formatted",{"type":42,"tag":115,"props":1082,"children":1083},{},[1084,1089,1094],{"type":42,"tag":142,"props":1085,"children":1086},{},[1087],{"type":48,"value":1088},"63018",{"type":42,"tag":142,"props":1090,"children":1091},{},[1092],{"type":48,"value":1093},"Rate limit exceeded on sender",{"type":42,"tag":142,"props":1095,"children":1096},{},[1097],{"type":48,"value":1098},"Reduce send rate; default is 80 MPS",{"type":42,"tag":115,"props":1100,"children":1101},{},[1102,1107,1112],{"type":42,"tag":142,"props":1103,"children":1104},{},[1105],{"type":48,"value":1106},"63020",{"type":42,"tag":142,"props":1108,"children":1109},{},[1110],{"type":48,"value":1111},"Business hasn't accepted Twilio's Meta invitation",{"type":42,"tag":142,"props":1113,"children":1114},{},[1115],{"type":48,"value":1116},"Accept invite in Meta Business Manager",{"type":42,"tag":115,"props":1118,"children":1119},{},[1120,1125,1130],{"type":42,"tag":142,"props":1121,"children":1122},{},[1123],{"type":48,"value":1124},"N\u002FA",{"type":42,"tag":142,"props":1126,"children":1127},{},[1128],{"type":48,"value":1129},"Free-form outside window",{"type":42,"tag":142,"props":1131,"children":1132},{},[1133],{"type":48,"value":1134},"Switch to a template message",{"type":42,"tag":200,"props":1136,"children":1137},{},[],{"type":42,"tag":43,"props":1139,"children":1141},{"id":1140},"cannot",[1142],{"type":48,"value":1143},"CANNOT",{"type":42,"tag":210,"props":1145,"children":1146},{},[1147,1157,1167,1177,1187],{"type":42,"tag":214,"props":1148,"children":1149},{},[1150,1155],{"type":42,"tag":55,"props":1151,"children":1152},{},[1153],{"type":48,"value":1154},"Cannot exceed 80 messages\u002Fsecond per sender",{"type":48,"value":1156}," — Text-only can be raised to 400 MPS on request",{"type":42,"tag":214,"props":1158,"children":1159},{},[1160,1165],{"type":42,"tag":55,"props":1161,"children":1162},{},[1163],{"type":48,"value":1164},"Cannot queue messages beyond 4 hours",{"type":48,"value":1166}," — Undelivered messages fail after 4 hours",{"type":42,"tag":214,"props":1168,"children":1169},{},[1170,1175],{"type":42,"tag":55,"props":1171,"children":1172},{},[1173],{"type":48,"value":1174},"Cannot exceed sandbox throttle limits",{"type":48,"value":1176}," — 1 message per 3 seconds, 50 messages\u002Fday on trial, participants expire after 3 days",{"type":42,"tag":214,"props":1178,"children":1179},{},[1180,1185],{"type":42,"tag":55,"props":1181,"children":1182},{},[1183],{"type":48,"value":1184},"Cannot send without opt-in",{"type":48,"value":1186}," — Sending without recipient opt-in risks account suspension",{"type":42,"tag":214,"props":1188,"children":1189},{},[1190,1195],{"type":42,"tag":55,"props":1191,"children":1192},{},[1193],{"type":48,"value":1194},"Cannot use WhatsApp Groups API",{"type":48,"value":1196}," — Deprecated April 2020. Use Conversations API instead.",{"type":42,"tag":200,"props":1198,"children":1199},{},[],{"type":42,"tag":43,"props":1201,"children":1203},{"id":1202},"next-steps",[1204],{"type":48,"value":1205},"Next Steps",{"type":42,"tag":210,"props":1207,"children":1208},{},[1209,1224,1238,1252],{"type":42,"tag":214,"props":1210,"children":1211},{},[1212,1217,1219],{"type":42,"tag":55,"props":1213,"children":1214},{},[1215],{"type":48,"value":1216},"Channel overview and onboarding guide:",{"type":48,"value":1218}," ",{"type":42,"tag":63,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":48,"value":76},{"type":42,"tag":214,"props":1225,"children":1226},{},[1227,1232,1233],{"type":42,"tag":55,"props":1228,"children":1229},{},[1230],{"type":48,"value":1231},"Register a production WhatsApp sender:",{"type":48,"value":1218},{"type":42,"tag":63,"props":1234,"children":1236},{"className":1235},[],[1237],{"type":48,"value":337},{"type":42,"tag":214,"props":1239,"children":1240},{},[1241,1246,1247],{"type":42,"tag":55,"props":1242,"children":1243},{},[1244],{"type":48,"value":1245},"Create and manage message templates:",{"type":48,"value":1218},{"type":42,"tag":63,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":48,"value":615},{"type":42,"tag":214,"props":1253,"children":1254},{},[1255,1260,1261],{"type":42,"tag":55,"props":1256,"children":1257},{},[1258],{"type":48,"value":1259},"Multi-channel conversations with history:",{"type":48,"value":1218},{"type":42,"tag":63,"props":1262,"children":1264},{"className":1263},[],[1265],{"type":48,"value":1266},"twilio-conversations-api",{"type":42,"tag":1268,"props":1269,"children":1270},"style",{},[1271],{"type":48,"value":1272},"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":1274,"total":1395},[1275,1293,1309,1321,1341,1363,1383],{"slug":1276,"name":1276,"fn":1277,"description":1278,"org":1279,"tags":1280,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1281,1284,1287,1290],{"name":1282,"slug":1283,"type":15},"Accessibility","accessibility",{"name":1285,"slug":1286,"type":15},"Charts","charts",{"name":1288,"slug":1289,"type":15},"Data Visualization","data-visualization",{"name":1291,"slug":1292,"type":15},"Design","design",{"slug":1294,"name":1294,"fn":1295,"description":1296,"org":1297,"tags":1298,"stars":25,"repoUrl":26,"updatedAt":1308},"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},[1299,1302,1305],{"name":1300,"slug":1301,"type":15},"Agents","agents",{"name":1303,"slug":1304,"type":15},"Browser Automation","browser-automation",{"name":1306,"slug":1307,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":25,"repoUrl":26,"updatedAt":1320},"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},[1315,1316,1319],{"name":1303,"slug":1304,"type":15},{"name":1317,"slug":1318,"type":15},"Local Development","local-development",{"name":1306,"slug":1307,"type":15},"2026-04-06T18:41:17.526867",{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1325,"tags":1326,"stars":25,"repoUrl":26,"updatedAt":1340},"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},[1327,1328,1331,1334,1337],{"name":1300,"slug":1301,"type":15},{"name":1329,"slug":1330,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1332,"slug":1333,"type":15},"SDK","sdk",{"name":1335,"slug":1336,"type":15},"Serverless","serverless",{"name":1338,"slug":1339,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1342,"name":1342,"fn":1343,"description":1344,"org":1345,"tags":1346,"stars":25,"repoUrl":26,"updatedAt":1362},"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},[1347,1350,1353,1356,1359],{"name":1348,"slug":1349,"type":15},"Frontend","frontend",{"name":1351,"slug":1352,"type":15},"React","react",{"name":1354,"slug":1355,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1357,"slug":1358,"type":15},"UI Components","ui-components",{"name":1360,"slug":1361,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1364,"name":1364,"fn":1365,"description":1366,"org":1367,"tags":1368,"stars":25,"repoUrl":26,"updatedAt":1382},"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},[1369,1372,1375,1378,1381],{"name":1370,"slug":1371,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1373,"slug":1374,"type":15},"Cost Optimization","cost-optimization",{"name":1376,"slug":1377,"type":15},"LLM","llm",{"name":1379,"slug":1380,"type":15},"Performance","performance",{"name":1360,"slug":1361,"type":15},"2026-04-06T18:40:44.377464",{"slug":1384,"name":1384,"fn":1385,"description":1386,"org":1387,"tags":1388,"stars":25,"repoUrl":26,"updatedAt":1394},"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},[1389,1390,1393],{"name":1373,"slug":1374,"type":15},{"name":1391,"slug":1392,"type":15},"Database","database",{"name":1376,"slug":1377,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1397,"total":1594},[1398,1419,1442,1459,1475,1492,1511,1523,1537,1551,1563,1578],{"slug":1399,"name":1399,"fn":1400,"description":1401,"org":1402,"tags":1403,"stars":1416,"repoUrl":1417,"updatedAt":1418},"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},[1404,1407,1410,1413],{"name":1405,"slug":1406,"type":15},"Documents","documents",{"name":1408,"slug":1409,"type":15},"Healthcare","healthcare",{"name":1411,"slug":1412,"type":15},"Insurance","insurance",{"name":1414,"slug":1415,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1420,"name":1420,"fn":1421,"description":1422,"org":1423,"tags":1424,"stars":1439,"repoUrl":1440,"updatedAt":1441},"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},[1425,1428,1430,1433,1436],{"name":1426,"slug":1427,"type":15},".NET","dotnet",{"name":1429,"slug":1420,"type":15},"ASP.NET Core",{"name":1431,"slug":1432,"type":15},"Blazor","blazor",{"name":1434,"slug":1435,"type":15},"C#","csharp",{"name":1437,"slug":1438,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1443,"name":1443,"fn":1444,"description":1445,"org":1446,"tags":1447,"stars":1439,"repoUrl":1440,"updatedAt":1458},"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},[1448,1451,1454,1457],{"name":1449,"slug":1450,"type":15},"Apps SDK","apps-sdk",{"name":1452,"slug":1453,"type":15},"ChatGPT","chatgpt",{"name":1455,"slug":1456,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1460,"name":1460,"fn":1461,"description":1462,"org":1463,"tags":1464,"stars":1439,"repoUrl":1440,"updatedAt":1474},"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},[1465,1468,1471],{"name":1466,"slug":1467,"type":15},"API Development","api-development",{"name":1469,"slug":1470,"type":15},"CLI","cli",{"name":1472,"slug":1473,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1476,"name":1476,"fn":1477,"description":1478,"org":1479,"tags":1480,"stars":1439,"repoUrl":1440,"updatedAt":1491},"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},[1481,1484,1487,1488],{"name":1482,"slug":1483,"type":15},"Cloudflare","cloudflare",{"name":1485,"slug":1486,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1329,"slug":1330,"type":15},{"name":1489,"slug":1490,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1493,"name":1493,"fn":1494,"description":1495,"org":1496,"tags":1497,"stars":1439,"repoUrl":1440,"updatedAt":1510},"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},[1498,1501,1504,1507],{"name":1499,"slug":1500,"type":15},"Productivity","productivity",{"name":1502,"slug":1503,"type":15},"Project Management","project-management",{"name":1505,"slug":1506,"type":15},"Strategy","strategy",{"name":1508,"slug":1509,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1512,"name":1512,"fn":1513,"description":1514,"org":1515,"tags":1516,"stars":1439,"repoUrl":1440,"updatedAt":1522},"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},[1517,1518,1520,1521],{"name":1291,"slug":1292,"type":15},{"name":1519,"slug":1512,"type":15},"Figma",{"name":1348,"slug":1349,"type":15},{"name":1455,"slug":1456,"type":15},"2026-04-12T05:06:47.939943",{"slug":1524,"name":1524,"fn":1525,"description":1526,"org":1527,"tags":1528,"stars":1439,"repoUrl":1440,"updatedAt":1536},"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},[1529,1530,1533,1534,1535],{"name":1291,"slug":1292,"type":15},{"name":1531,"slug":1532,"type":15},"Design System","design-system",{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},{"name":1357,"slug":1358,"type":15},"2026-05-10T05:59:52.971881",{"slug":1538,"name":1538,"fn":1539,"description":1540,"org":1541,"tags":1542,"stars":1439,"repoUrl":1440,"updatedAt":1550},"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},[1543,1544,1545,1548,1549],{"name":1291,"slug":1292,"type":15},{"name":1531,"slug":1532,"type":15},{"name":1546,"slug":1547,"type":15},"Documentation","documentation",{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},"2026-05-16T06:07:47.821474",{"slug":1552,"name":1552,"fn":1553,"description":1554,"org":1555,"tags":1556,"stars":1439,"repoUrl":1440,"updatedAt":1562},"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},[1557,1558,1559,1560,1561],{"name":1291,"slug":1292,"type":15},{"name":1519,"slug":1512,"type":15},{"name":1348,"slug":1349,"type":15},{"name":1357,"slug":1358,"type":15},{"name":1437,"slug":1438,"type":15},"2026-05-16T06:07:40.583615",{"slug":1564,"name":1564,"fn":1565,"description":1566,"org":1567,"tags":1568,"stars":1439,"repoUrl":1440,"updatedAt":1577},"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},[1569,1572,1573,1576],{"name":1570,"slug":1571,"type":15},"Animation","animation",{"name":1472,"slug":1473,"type":15},{"name":1574,"slug":1575,"type":15},"Creative","creative",{"name":1291,"slug":1292,"type":15},"2026-05-02T05:31:48.48485",{"slug":1579,"name":1579,"fn":1580,"description":1581,"org":1582,"tags":1583,"stars":1439,"repoUrl":1440,"updatedAt":1593},"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},[1584,1585,1586,1589,1592],{"name":1574,"slug":1575,"type":15},{"name":1291,"slug":1292,"type":15},{"name":1587,"slug":1588,"type":15},"Image Generation","image-generation",{"name":1590,"slug":1591,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]