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