[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-sendgrid-inbound-parse":3,"mdc--fwhfg4-key":36,"related-org-openai-twilio-sendgrid-inbound-parse":815,"related-repo-openai-twilio-sendgrid-inbound-parse":1020},{"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-sendgrid-inbound-parse","process inbound emails with SendGrid","Receive inbound email via SendGrid Inbound Parse webhook. Covers MX record setup, parsed vs raw mode, handling attachments, and common pitfalls. Use when building email-to-app workflows like support ticket creation or email processing pipelines. Requires a SendGrid API key (SG.-prefix) — not applicable to the Twilio Email API (comms.twilio.com).\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},"SendGrid","sendgrid","tag",{"name":17,"slug":18,"type":15},"API Development","api-development",{"name":20,"slug":21,"type":15},"Webhooks","webhooks",{"name":23,"slug":24,"type":15},"Email","email",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-sendgrid-inbound-parse","---\nname: twilio-sendgrid-inbound-parse\ndescription: >\n  Receive inbound email via SendGrid Inbound Parse webhook. Covers MX\n  record setup, parsed vs raw mode, handling attachments, and common\n  pitfalls. Use when building email-to-app workflows like support ticket\n  creation or email processing pipelines. Requires a SendGrid API key\n  (SG.-prefix) — not applicable to the Twilio Email API (comms.twilio.com).\n---\n\n## Overview\n\nInbound Parse converts incoming email into HTTP POST requests to your webhook endpoint. SendGrid receives the email at your domain's MX records and forwards the parsed content to your application.\n\n---\n\n## Setup\n\n1. **Configure MX records:** Point your domain (or subdomain) to `mx.sendgrid.net`\n2. **Add webhook:** SendGrid Console > Settings > Inbound Parse > Add Host & URL\n3. **Choose mode:** Parsed (default) or Raw\n\n**Subdomain recommended:** Use `inbound.yourdomain.com` to avoid disrupting existing email on `yourdomain.com`.\n\n---\n\n## Parsed Mode (Default)\n\nSendGrid extracts fields and POSTs them as form data:\n\n| Field | Description |\n|-------|-------------|\n| `from` | Sender address (`\"Name \u003Cemail@example.com>\"`) |\n| `to` | Envelope recipient |\n| `subject` | Email subject line |\n| `text` | Plain text body |\n| `html` | HTML body |\n| `envelope` | JSON string with `to` array and `from` |\n| `attachments` | Number of attachments (as string) |\n| `attachment-info` | JSON metadata for each attachment |\n| `attachment1`, `attachment2`... | Actual attachment files |\n\n**Python (Flask)**\n```python\nfrom flask import Flask, request\nimport json\n\napp = Flask(__name__)\n\n@app.route(\"\u002Finbound\", methods=[\"POST\"])\ndef handle_inbound():\n    sender = request.form.get(\"from\")\n    subject = request.form.get(\"subject\")\n    text_body = request.form.get(\"text\")\n    html_body = request.form.get(\"html\")\n    envelope = json.loads(request.form.get(\"envelope\", \"{}\"))\n    attachment_count = int(request.form.get(\"attachments\", \"0\"))\n    \n    print(f\"From: {sender}, Subject: {subject}\")\n    \n    for i in range(1, attachment_count + 1):\n        attachment = request.files.get(f\"attachment{i}\")\n        if attachment:\n            print(f\"Attachment: {attachment.filename}, {attachment.content_type}\")\n    \n    return \"\", 200\n```\n\n> **Security:** All inbound email content (`from`, `subject`, `text`, `html`, attachments) is untrusted external input. Sanitize HTML to prevent XSS before rendering. If feeding content to an LLM, isolate it as user input — never concatenate into system prompts. Verify webhook authenticity using signed webhooks (see Security section below).\n\n---\n\n## Raw Mode\n\nPosts the entire MIME message as `rawEmail` field. Use when you need full headers, DKIM signatures, or non-standard MIME parts. You must parse the MIME message yourself.\n\n---\n\n## Signed Inbound Parse Webhook (Security)\n\nSendGrid supports ECDSA signature verification for Inbound Parse, the same mechanism used for Event Webhooks. Enable it to cryptographically verify that payloads originate from SendGrid.\n\n**Strongly recommended over IP allowlisting** — SendGrid's webhook traffic comes from dynamic cloud infrastructure where IPs change frequently. Signature verification is more reliable and secure.\n\n---\n\n## CANNOT\n\n- **Cannot use Inbound Parse on a domain that already receives email** — MX records must point to `mx.sendgrid.net`. Use a subdomain to avoid disrupting existing email (e.g., Google Workspace, Microsoft 365).\n- **Cannot receive email without MX record changes** — DNS access is required. If you can't modify MX records, you can't use Inbound Parse.\n- **Cannot receive emails larger than 30MB** — Inbound messages exceeding 30MB are rejected.\n- **Cannot filter inbound email before it hits your webhook** — All email sent to the configured domain reaches your endpoint. Implement filtering in your handler.\n- **Cannot route to different endpoints per address** — All mail for the configured domain\u002Fsubdomain goes to a single webhook URL.\n- **Cannot guarantee delivery order** — Emails may arrive at your webhook out of order, especially under high volume.\n- **No built-in rate limiting** — All email to your configured domain reaches your endpoint. Implement rate limiting, payload size validation, and content sanitization in your handler.\n\n---\n\n## Next Steps\n\n- **Send email:** `twilio-sendgrid-email-send`\n- **Delivery tracking:** `twilio-sendgrid-webhooks`\n- **Account setup:** `twilio-sendgrid-account-setup`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,56,60,66,109,135,138,144,149,359,367,576,615,618,624,637,640,646,651,661,664,670,751,754,760,809],{"type":42,"tag":43,"props":44,"children":46},"element","h2",{"id":45},"overview",[47],{"type":48,"value":49},"text","Overview",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Inbound Parse converts incoming email into HTTP POST requests to your webhook endpoint. SendGrid receives the email at your domain's MX records and forwards the parsed content to your application.",{"type":42,"tag":57,"props":58,"children":59},"hr",{},[],{"type":42,"tag":43,"props":61,"children":63},{"id":62},"setup",[64],{"type":48,"value":65},"Setup",{"type":42,"tag":67,"props":68,"children":69},"ol",{},[70,89,99],{"type":42,"tag":71,"props":72,"children":73},"li",{},[74,80,82],{"type":42,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":48,"value":79},"Configure MX records:",{"type":48,"value":81}," Point your domain (or subdomain) to ",{"type":42,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":48,"value":88},"mx.sendgrid.net",{"type":42,"tag":71,"props":90,"children":91},{},[92,97],{"type":42,"tag":75,"props":93,"children":94},{},[95],{"type":48,"value":96},"Add webhook:",{"type":48,"value":98}," SendGrid Console > Settings > Inbound Parse > Add Host & URL",{"type":42,"tag":71,"props":100,"children":101},{},[102,107],{"type":42,"tag":75,"props":103,"children":104},{},[105],{"type":48,"value":106},"Choose mode:",{"type":48,"value":108}," Parsed (default) or Raw",{"type":42,"tag":51,"props":110,"children":111},{},[112,117,119,125,127,133],{"type":42,"tag":75,"props":113,"children":114},{},[115],{"type":48,"value":116},"Subdomain recommended:",{"type":48,"value":118}," Use ",{"type":42,"tag":83,"props":120,"children":122},{"className":121},[],[123],{"type":48,"value":124},"inbound.yourdomain.com",{"type":48,"value":126}," to avoid disrupting existing email on ",{"type":42,"tag":83,"props":128,"children":130},{"className":129},[],[131],{"type":48,"value":132},"yourdomain.com",{"type":48,"value":134},".",{"type":42,"tag":57,"props":136,"children":137},{},[],{"type":42,"tag":43,"props":139,"children":141},{"id":140},"parsed-mode-default",[142],{"type":48,"value":143},"Parsed Mode (Default)",{"type":42,"tag":51,"props":145,"children":146},{},[147],{"type":48,"value":148},"SendGrid extracts fields and POSTs them as form data:",{"type":42,"tag":150,"props":151,"children":152},"table",{},[153,172],{"type":42,"tag":154,"props":155,"children":156},"thead",{},[157],{"type":42,"tag":158,"props":159,"children":160},"tr",{},[161,167],{"type":42,"tag":162,"props":163,"children":164},"th",{},[165],{"type":48,"value":166},"Field",{"type":42,"tag":162,"props":168,"children":169},{},[170],{"type":48,"value":171},"Description",{"type":42,"tag":173,"props":174,"children":175},"tbody",{},[176,202,219,236,252,269,298,315,332],{"type":42,"tag":158,"props":177,"children":178},{},[179,189],{"type":42,"tag":180,"props":181,"children":182},"td",{},[183],{"type":42,"tag":83,"props":184,"children":186},{"className":185},[],[187],{"type":48,"value":188},"from",{"type":42,"tag":180,"props":190,"children":191},{},[192,194,200],{"type":48,"value":193},"Sender address (",{"type":42,"tag":83,"props":195,"children":197},{"className":196},[],[198],{"type":48,"value":199},"\"Name \u003Cemail@example.com>\"",{"type":48,"value":201},")",{"type":42,"tag":158,"props":203,"children":204},{},[205,214],{"type":42,"tag":180,"props":206,"children":207},{},[208],{"type":42,"tag":83,"props":209,"children":211},{"className":210},[],[212],{"type":48,"value":213},"to",{"type":42,"tag":180,"props":215,"children":216},{},[217],{"type":48,"value":218},"Envelope recipient",{"type":42,"tag":158,"props":220,"children":221},{},[222,231],{"type":42,"tag":180,"props":223,"children":224},{},[225],{"type":42,"tag":83,"props":226,"children":228},{"className":227},[],[229],{"type":48,"value":230},"subject",{"type":42,"tag":180,"props":232,"children":233},{},[234],{"type":48,"value":235},"Email subject line",{"type":42,"tag":158,"props":237,"children":238},{},[239,247],{"type":42,"tag":180,"props":240,"children":241},{},[242],{"type":42,"tag":83,"props":243,"children":245},{"className":244},[],[246],{"type":48,"value":48},{"type":42,"tag":180,"props":248,"children":249},{},[250],{"type":48,"value":251},"Plain text body",{"type":42,"tag":158,"props":253,"children":254},{},[255,264],{"type":42,"tag":180,"props":256,"children":257},{},[258],{"type":42,"tag":83,"props":259,"children":261},{"className":260},[],[262],{"type":48,"value":263},"html",{"type":42,"tag":180,"props":265,"children":266},{},[267],{"type":48,"value":268},"HTML body",{"type":42,"tag":158,"props":270,"children":271},{},[272,281],{"type":42,"tag":180,"props":273,"children":274},{},[275],{"type":42,"tag":83,"props":276,"children":278},{"className":277},[],[279],{"type":48,"value":280},"envelope",{"type":42,"tag":180,"props":282,"children":283},{},[284,286,291,293],{"type":48,"value":285},"JSON string with ",{"type":42,"tag":83,"props":287,"children":289},{"className":288},[],[290],{"type":48,"value":213},{"type":48,"value":292}," array and ",{"type":42,"tag":83,"props":294,"children":296},{"className":295},[],[297],{"type":48,"value":188},{"type":42,"tag":158,"props":299,"children":300},{},[301,310],{"type":42,"tag":180,"props":302,"children":303},{},[304],{"type":42,"tag":83,"props":305,"children":307},{"className":306},[],[308],{"type":48,"value":309},"attachments",{"type":42,"tag":180,"props":311,"children":312},{},[313],{"type":48,"value":314},"Number of attachments (as string)",{"type":42,"tag":158,"props":316,"children":317},{},[318,327],{"type":42,"tag":180,"props":319,"children":320},{},[321],{"type":42,"tag":83,"props":322,"children":324},{"className":323},[],[325],{"type":48,"value":326},"attachment-info",{"type":42,"tag":180,"props":328,"children":329},{},[330],{"type":48,"value":331},"JSON metadata for each attachment",{"type":42,"tag":158,"props":333,"children":334},{},[335,354],{"type":42,"tag":180,"props":336,"children":337},{},[338,344,346,352],{"type":42,"tag":83,"props":339,"children":341},{"className":340},[],[342],{"type":48,"value":343},"attachment1",{"type":48,"value":345},", ",{"type":42,"tag":83,"props":347,"children":349},{"className":348},[],[350],{"type":48,"value":351},"attachment2",{"type":48,"value":353},"...",{"type":42,"tag":180,"props":355,"children":356},{},[357],{"type":48,"value":358},"Actual attachment files",{"type":42,"tag":51,"props":360,"children":361},{},[362],{"type":42,"tag":75,"props":363,"children":364},{},[365],{"type":48,"value":366},"Python (Flask)",{"type":42,"tag":368,"props":369,"children":374},"pre",{"className":370,"code":371,"language":372,"meta":373,"style":373},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","from flask import Flask, request\nimport json\n\napp = Flask(__name__)\n\n@app.route(\"\u002Finbound\", methods=[\"POST\"])\ndef handle_inbound():\n    sender = request.form.get(\"from\")\n    subject = request.form.get(\"subject\")\n    text_body = request.form.get(\"text\")\n    html_body = request.form.get(\"html\")\n    envelope = json.loads(request.form.get(\"envelope\", \"{}\"))\n    attachment_count = int(request.form.get(\"attachments\", \"0\"))\n    \n    print(f\"From: {sender}, Subject: {subject}\")\n    \n    for i in range(1, attachment_count + 1):\n        attachment = request.files.get(f\"attachment{i}\")\n        if attachment:\n            print(f\"Attachment: {attachment.filename}, {attachment.content_type}\")\n    \n    return \"\", 200\n","python","",[375],{"type":42,"tag":83,"props":376,"children":377},{"__ignoreMap":373},[378,389,398,408,417,425,434,443,452,461,470,479,488,497,506,515,523,532,541,550,559,567],{"type":42,"tag":379,"props":380,"children":383},"span",{"class":381,"line":382},"line",1,[384],{"type":42,"tag":379,"props":385,"children":386},{},[387],{"type":48,"value":388},"from flask import Flask, request\n",{"type":42,"tag":379,"props":390,"children":392},{"class":381,"line":391},2,[393],{"type":42,"tag":379,"props":394,"children":395},{},[396],{"type":48,"value":397},"import json\n",{"type":42,"tag":379,"props":399,"children":401},{"class":381,"line":400},3,[402],{"type":42,"tag":379,"props":403,"children":405},{"emptyLinePlaceholder":404},true,[406],{"type":48,"value":407},"\n",{"type":42,"tag":379,"props":409,"children":411},{"class":381,"line":410},4,[412],{"type":42,"tag":379,"props":413,"children":414},{},[415],{"type":48,"value":416},"app = Flask(__name__)\n",{"type":42,"tag":379,"props":418,"children":420},{"class":381,"line":419},5,[421],{"type":42,"tag":379,"props":422,"children":423},{"emptyLinePlaceholder":404},[424],{"type":48,"value":407},{"type":42,"tag":379,"props":426,"children":428},{"class":381,"line":427},6,[429],{"type":42,"tag":379,"props":430,"children":431},{},[432],{"type":48,"value":433},"@app.route(\"\u002Finbound\", methods=[\"POST\"])\n",{"type":42,"tag":379,"props":435,"children":437},{"class":381,"line":436},7,[438],{"type":42,"tag":379,"props":439,"children":440},{},[441],{"type":48,"value":442},"def handle_inbound():\n",{"type":42,"tag":379,"props":444,"children":446},{"class":381,"line":445},8,[447],{"type":42,"tag":379,"props":448,"children":449},{},[450],{"type":48,"value":451},"    sender = request.form.get(\"from\")\n",{"type":42,"tag":379,"props":453,"children":455},{"class":381,"line":454},9,[456],{"type":42,"tag":379,"props":457,"children":458},{},[459],{"type":48,"value":460},"    subject = request.form.get(\"subject\")\n",{"type":42,"tag":379,"props":462,"children":464},{"class":381,"line":463},10,[465],{"type":42,"tag":379,"props":466,"children":467},{},[468],{"type":48,"value":469},"    text_body = request.form.get(\"text\")\n",{"type":42,"tag":379,"props":471,"children":473},{"class":381,"line":472},11,[474],{"type":42,"tag":379,"props":475,"children":476},{},[477],{"type":48,"value":478},"    html_body = request.form.get(\"html\")\n",{"type":42,"tag":379,"props":480,"children":482},{"class":381,"line":481},12,[483],{"type":42,"tag":379,"props":484,"children":485},{},[486],{"type":48,"value":487},"    envelope = json.loads(request.form.get(\"envelope\", \"{}\"))\n",{"type":42,"tag":379,"props":489,"children":491},{"class":381,"line":490},13,[492],{"type":42,"tag":379,"props":493,"children":494},{},[495],{"type":48,"value":496},"    attachment_count = int(request.form.get(\"attachments\", \"0\"))\n",{"type":42,"tag":379,"props":498,"children":500},{"class":381,"line":499},14,[501],{"type":42,"tag":379,"props":502,"children":503},{},[504],{"type":48,"value":505},"    \n",{"type":42,"tag":379,"props":507,"children":509},{"class":381,"line":508},15,[510],{"type":42,"tag":379,"props":511,"children":512},{},[513],{"type":48,"value":514},"    print(f\"From: {sender}, Subject: {subject}\")\n",{"type":42,"tag":379,"props":516,"children":518},{"class":381,"line":517},16,[519],{"type":42,"tag":379,"props":520,"children":521},{},[522],{"type":48,"value":505},{"type":42,"tag":379,"props":524,"children":526},{"class":381,"line":525},17,[527],{"type":42,"tag":379,"props":528,"children":529},{},[530],{"type":48,"value":531},"    for i in range(1, attachment_count + 1):\n",{"type":42,"tag":379,"props":533,"children":535},{"class":381,"line":534},18,[536],{"type":42,"tag":379,"props":537,"children":538},{},[539],{"type":48,"value":540},"        attachment = request.files.get(f\"attachment{i}\")\n",{"type":42,"tag":379,"props":542,"children":544},{"class":381,"line":543},19,[545],{"type":42,"tag":379,"props":546,"children":547},{},[548],{"type":48,"value":549},"        if attachment:\n",{"type":42,"tag":379,"props":551,"children":553},{"class":381,"line":552},20,[554],{"type":42,"tag":379,"props":555,"children":556},{},[557],{"type":48,"value":558},"            print(f\"Attachment: {attachment.filename}, {attachment.content_type}\")\n",{"type":42,"tag":379,"props":560,"children":562},{"class":381,"line":561},21,[563],{"type":42,"tag":379,"props":564,"children":565},{},[566],{"type":48,"value":505},{"type":42,"tag":379,"props":568,"children":570},{"class":381,"line":569},22,[571],{"type":42,"tag":379,"props":572,"children":573},{},[574],{"type":48,"value":575},"    return \"\", 200\n",{"type":42,"tag":577,"props":578,"children":579},"blockquote",{},[580],{"type":42,"tag":51,"props":581,"children":582},{},[583,588,590,595,596,601,602,607,608,613],{"type":42,"tag":75,"props":584,"children":585},{},[586],{"type":48,"value":587},"Security:",{"type":48,"value":589}," All inbound email content (",{"type":42,"tag":83,"props":591,"children":593},{"className":592},[],[594],{"type":48,"value":188},{"type":48,"value":345},{"type":42,"tag":83,"props":597,"children":599},{"className":598},[],[600],{"type":48,"value":230},{"type":48,"value":345},{"type":42,"tag":83,"props":603,"children":605},{"className":604},[],[606],{"type":48,"value":48},{"type":48,"value":345},{"type":42,"tag":83,"props":609,"children":611},{"className":610},[],[612],{"type":48,"value":263},{"type":48,"value":614},", attachments) is untrusted external input. Sanitize HTML to prevent XSS before rendering. If feeding content to an LLM, isolate it as user input — never concatenate into system prompts. Verify webhook authenticity using signed webhooks (see Security section below).",{"type":42,"tag":57,"props":616,"children":617},{},[],{"type":42,"tag":43,"props":619,"children":621},{"id":620},"raw-mode",[622],{"type":48,"value":623},"Raw Mode",{"type":42,"tag":51,"props":625,"children":626},{},[627,629,635],{"type":48,"value":628},"Posts the entire MIME message as ",{"type":42,"tag":83,"props":630,"children":632},{"className":631},[],[633],{"type":48,"value":634},"rawEmail",{"type":48,"value":636}," field. Use when you need full headers, DKIM signatures, or non-standard MIME parts. You must parse the MIME message yourself.",{"type":42,"tag":57,"props":638,"children":639},{},[],{"type":42,"tag":43,"props":641,"children":643},{"id":642},"signed-inbound-parse-webhook-security",[644],{"type":48,"value":645},"Signed Inbound Parse Webhook (Security)",{"type":42,"tag":51,"props":647,"children":648},{},[649],{"type":48,"value":650},"SendGrid supports ECDSA signature verification for Inbound Parse, the same mechanism used for Event Webhooks. Enable it to cryptographically verify that payloads originate from SendGrid.",{"type":42,"tag":51,"props":652,"children":653},{},[654,659],{"type":42,"tag":75,"props":655,"children":656},{},[657],{"type":48,"value":658},"Strongly recommended over IP allowlisting",{"type":48,"value":660}," — SendGrid's webhook traffic comes from dynamic cloud infrastructure where IPs change frequently. Signature verification is more reliable and secure.",{"type":42,"tag":57,"props":662,"children":663},{},[],{"type":42,"tag":43,"props":665,"children":667},{"id":666},"cannot",[668],{"type":48,"value":669},"CANNOT",{"type":42,"tag":671,"props":672,"children":673},"ul",{},[674,691,701,711,721,731,741],{"type":42,"tag":71,"props":675,"children":676},{},[677,682,684,689],{"type":42,"tag":75,"props":678,"children":679},{},[680],{"type":48,"value":681},"Cannot use Inbound Parse on a domain that already receives email",{"type":48,"value":683}," — MX records must point to ",{"type":42,"tag":83,"props":685,"children":687},{"className":686},[],[688],{"type":48,"value":88},{"type":48,"value":690},". Use a subdomain to avoid disrupting existing email (e.g., Google Workspace, Microsoft 365).",{"type":42,"tag":71,"props":692,"children":693},{},[694,699],{"type":42,"tag":75,"props":695,"children":696},{},[697],{"type":48,"value":698},"Cannot receive email without MX record changes",{"type":48,"value":700}," — DNS access is required. If you can't modify MX records, you can't use Inbound Parse.",{"type":42,"tag":71,"props":702,"children":703},{},[704,709],{"type":42,"tag":75,"props":705,"children":706},{},[707],{"type":48,"value":708},"Cannot receive emails larger than 30MB",{"type":48,"value":710}," — Inbound messages exceeding 30MB are rejected.",{"type":42,"tag":71,"props":712,"children":713},{},[714,719],{"type":42,"tag":75,"props":715,"children":716},{},[717],{"type":48,"value":718},"Cannot filter inbound email before it hits your webhook",{"type":48,"value":720}," — All email sent to the configured domain reaches your endpoint. Implement filtering in your handler.",{"type":42,"tag":71,"props":722,"children":723},{},[724,729],{"type":42,"tag":75,"props":725,"children":726},{},[727],{"type":48,"value":728},"Cannot route to different endpoints per address",{"type":48,"value":730}," — All mail for the configured domain\u002Fsubdomain goes to a single webhook URL.",{"type":42,"tag":71,"props":732,"children":733},{},[734,739],{"type":42,"tag":75,"props":735,"children":736},{},[737],{"type":48,"value":738},"Cannot guarantee delivery order",{"type":48,"value":740}," — Emails may arrive at your webhook out of order, especially under high volume.",{"type":42,"tag":71,"props":742,"children":743},{},[744,749],{"type":42,"tag":75,"props":745,"children":746},{},[747],{"type":48,"value":748},"No built-in rate limiting",{"type":48,"value":750}," — All email to your configured domain reaches your endpoint. Implement rate limiting, payload size validation, and content sanitization in your handler.",{"type":42,"tag":57,"props":752,"children":753},{},[],{"type":42,"tag":43,"props":755,"children":757},{"id":756},"next-steps",[758],{"type":48,"value":759},"Next Steps",{"type":42,"tag":671,"props":761,"children":762},{},[763,779,794],{"type":42,"tag":71,"props":764,"children":765},{},[766,771,773],{"type":42,"tag":75,"props":767,"children":768},{},[769],{"type":48,"value":770},"Send email:",{"type":48,"value":772}," ",{"type":42,"tag":83,"props":774,"children":776},{"className":775},[],[777],{"type":48,"value":778},"twilio-sendgrid-email-send",{"type":42,"tag":71,"props":780,"children":781},{},[782,787,788],{"type":42,"tag":75,"props":783,"children":784},{},[785],{"type":48,"value":786},"Delivery tracking:",{"type":48,"value":772},{"type":42,"tag":83,"props":789,"children":791},{"className":790},[],[792],{"type":48,"value":793},"twilio-sendgrid-webhooks",{"type":42,"tag":71,"props":795,"children":796},{},[797,802,803],{"type":42,"tag":75,"props":798,"children":799},{},[800],{"type":48,"value":801},"Account setup:",{"type":48,"value":772},{"type":42,"tag":83,"props":804,"children":806},{"className":805},[],[807],{"type":48,"value":808},"twilio-sendgrid-account-setup",{"type":42,"tag":810,"props":811,"children":812},"style",{},[813],{"type":48,"value":814},"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":816,"total":1019},[817,838,861,878,892,911,930,946,962,976,988,1003],{"slug":818,"name":818,"fn":819,"description":820,"org":821,"tags":822,"stars":835,"repoUrl":836,"updatedAt":837},"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},[823,826,829,832],{"name":824,"slug":825,"type":15},"Documents","documents",{"name":827,"slug":828,"type":15},"Healthcare","healthcare",{"name":830,"slug":831,"type":15},"Insurance","insurance",{"name":833,"slug":834,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":839,"name":839,"fn":840,"description":841,"org":842,"tags":843,"stars":858,"repoUrl":859,"updatedAt":860},"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},[844,847,849,852,855],{"name":845,"slug":846,"type":15},".NET","dotnet",{"name":848,"slug":839,"type":15},"ASP.NET Core",{"name":850,"slug":851,"type":15},"Blazor","blazor",{"name":853,"slug":854,"type":15},"C#","csharp",{"name":856,"slug":857,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":862,"name":862,"fn":863,"description":864,"org":865,"tags":866,"stars":858,"repoUrl":859,"updatedAt":877},"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},[867,870,873,876],{"name":868,"slug":869,"type":15},"Apps SDK","apps-sdk",{"name":871,"slug":872,"type":15},"ChatGPT","chatgpt",{"name":874,"slug":875,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":879,"name":879,"fn":880,"description":881,"org":882,"tags":883,"stars":858,"repoUrl":859,"updatedAt":891},"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},[884,885,888],{"name":17,"slug":18,"type":15},{"name":886,"slug":887,"type":15},"CLI","cli",{"name":889,"slug":890,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":893,"name":893,"fn":894,"description":895,"org":896,"tags":897,"stars":858,"repoUrl":859,"updatedAt":910},"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},[898,901,904,907],{"name":899,"slug":900,"type":15},"Cloudflare","cloudflare",{"name":902,"slug":903,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":905,"slug":906,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":908,"slug":909,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":912,"name":912,"fn":913,"description":914,"org":915,"tags":916,"stars":858,"repoUrl":859,"updatedAt":929},"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},[917,920,923,926],{"name":918,"slug":919,"type":15},"Productivity","productivity",{"name":921,"slug":922,"type":15},"Project Management","project-management",{"name":924,"slug":925,"type":15},"Strategy","strategy",{"name":927,"slug":928,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":931,"name":931,"fn":932,"description":933,"org":934,"tags":935,"stars":858,"repoUrl":859,"updatedAt":945},"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},[936,939,941,944],{"name":937,"slug":938,"type":15},"Design","design",{"name":940,"slug":931,"type":15},"Figma",{"name":942,"slug":943,"type":15},"Frontend","frontend",{"name":874,"slug":875,"type":15},"2026-04-12T05:06:47.939943",{"slug":947,"name":947,"fn":948,"description":949,"org":950,"tags":951,"stars":858,"repoUrl":859,"updatedAt":961},"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},[952,953,956,957,958],{"name":937,"slug":938,"type":15},{"name":954,"slug":955,"type":15},"Design System","design-system",{"name":940,"slug":931,"type":15},{"name":942,"slug":943,"type":15},{"name":959,"slug":960,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":963,"name":963,"fn":964,"description":965,"org":966,"tags":967,"stars":858,"repoUrl":859,"updatedAt":975},"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},[968,969,970,973,974],{"name":937,"slug":938,"type":15},{"name":954,"slug":955,"type":15},{"name":971,"slug":972,"type":15},"Documentation","documentation",{"name":940,"slug":931,"type":15},{"name":942,"slug":943,"type":15},"2026-05-16T06:07:47.821474",{"slug":977,"name":977,"fn":978,"description":979,"org":980,"tags":981,"stars":858,"repoUrl":859,"updatedAt":987},"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},[982,983,984,985,986],{"name":937,"slug":938,"type":15},{"name":940,"slug":931,"type":15},{"name":942,"slug":943,"type":15},{"name":959,"slug":960,"type":15},{"name":856,"slug":857,"type":15},"2026-05-16T06:07:40.583615",{"slug":989,"name":989,"fn":990,"description":991,"org":992,"tags":993,"stars":858,"repoUrl":859,"updatedAt":1002},"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},[994,997,998,1001],{"name":995,"slug":996,"type":15},"Animation","animation",{"name":889,"slug":890,"type":15},{"name":999,"slug":1000,"type":15},"Creative","creative",{"name":937,"slug":938,"type":15},"2026-05-02T05:31:48.48485",{"slug":1004,"name":1004,"fn":1005,"description":1006,"org":1007,"tags":1008,"stars":858,"repoUrl":859,"updatedAt":1018},"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},[1009,1010,1011,1014,1017],{"name":999,"slug":1000,"type":15},{"name":937,"slug":938,"type":15},{"name":1012,"slug":1013,"type":15},"Image Generation","image-generation",{"name":1015,"slug":1016,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1021,"total":1134},[1022,1038,1054,1066,1084,1102,1122],{"slug":1023,"name":1023,"fn":1024,"description":1025,"org":1026,"tags":1027,"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},[1028,1031,1034,1037],{"name":1029,"slug":1030,"type":15},"Accessibility","accessibility",{"name":1032,"slug":1033,"type":15},"Charts","charts",{"name":1035,"slug":1036,"type":15},"Data Visualization","data-visualization",{"name":937,"slug":938,"type":15},{"slug":1039,"name":1039,"fn":1040,"description":1041,"org":1042,"tags":1043,"stars":25,"repoUrl":26,"updatedAt":1053},"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},[1044,1047,1050],{"name":1045,"slug":1046,"type":15},"Agents","agents",{"name":1048,"slug":1049,"type":15},"Browser Automation","browser-automation",{"name":1051,"slug":1052,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1055,"name":1055,"fn":1056,"description":1057,"org":1058,"tags":1059,"stars":25,"repoUrl":26,"updatedAt":1065},"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},[1060,1061,1064],{"name":1048,"slug":1049,"type":15},{"name":1062,"slug":1063,"type":15},"Local Development","local-development",{"name":1051,"slug":1052,"type":15},"2026-04-06T18:41:17.526867",{"slug":1067,"name":1067,"fn":1068,"description":1069,"org":1070,"tags":1071,"stars":25,"repoUrl":26,"updatedAt":1083},"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},[1072,1073,1074,1077,1080],{"name":1045,"slug":1046,"type":15},{"name":905,"slug":906,"type":15},{"name":1075,"slug":1076,"type":15},"SDK","sdk",{"name":1078,"slug":1079,"type":15},"Serverless","serverless",{"name":1081,"slug":1082,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1085,"name":1085,"fn":1086,"description":1087,"org":1088,"tags":1089,"stars":25,"repoUrl":26,"updatedAt":1101},"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},[1090,1091,1094,1097,1098],{"name":942,"slug":943,"type":15},{"name":1092,"slug":1093,"type":15},"React","react",{"name":1095,"slug":1096,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":959,"slug":960,"type":15},{"name":1099,"slug":1100,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1103,"name":1103,"fn":1104,"description":1105,"org":1106,"tags":1107,"stars":25,"repoUrl":26,"updatedAt":1121},"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},[1108,1111,1114,1117,1120],{"name":1109,"slug":1110,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1112,"slug":1113,"type":15},"Cost Optimization","cost-optimization",{"name":1115,"slug":1116,"type":15},"LLM","llm",{"name":1118,"slug":1119,"type":15},"Performance","performance",{"name":1099,"slug":1100,"type":15},"2026-04-06T18:40:44.377464",{"slug":1123,"name":1123,"fn":1124,"description":1125,"org":1126,"tags":1127,"stars":25,"repoUrl":26,"updatedAt":1133},"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},[1128,1129,1132],{"name":1112,"slug":1113,"type":15},{"name":1130,"slug":1131,"type":15},"Database","database",{"name":1115,"slug":1116,"type":15},"2026-04-06T18:41:08.513425",600]