[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-compliance-traffic":3,"mdc--sqafer-key":36,"related-repo-openai-twilio-compliance-traffic":1653,"related-org-openai-twilio-compliance-traffic":1776},{"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-compliance-traffic","ensure Twilio messaging and voice compliance","Rules you must follow for Twilio messaging and voice traffic. Covers TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI), FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies, SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively when developers have working traffic to ensure they follow the rules.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"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},"Compliance","compliance","tag",{"name":17,"slug":18,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"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-compliance-traffic","---\nname: twilio-compliance-traffic\ndescription: >\n  Rules you must follow for Twilio messaging and voice traffic. Covers\n  TCPA (consent tiers, quiet hours, DNC), GDPR (EU consent, right to\n  deletion), PCI DSS (payment recording, Pay verb), HIPAA (BAA, PHI),\n  FDCPA (debt collection limits), CAN-SPAM, WhatsApp policies,\n  SHAKEN\u002FSTIR, and consent management patterns. Use this skill proactively\n  when developers have working traffic to ensure they follow the rules.\n---\n\n## Overview\n\nCompliance failures block sends, get numbers suspended, and expose your customer to legal liability. This skill covers the **ongoing rules** that apply to live traffic — what you can send, when, and to whom.\n\n**Lifecycle:** Choose numbers (`twilio-numbers-senders`) → Register them (`twilio-compliance-onboarding`) → Follow traffic rules (this skill) → Secure everything (`twilio-security-hardening`)\n\nFor registrations required before traffic works (A2P 10DLC, toll-free verification, WhatsApp\u002FRCS sender approval, voice trust programs), see `twilio-compliance-onboarding`.\n\n---\n\n## TCPA (Telephone Consumer Protection Act)\n\nApplies to all US voice calls and SMS.\n\n### Consent Requirements\n\n| Communication type | Consent required | Notes |\n|-------------------|-----------------|-------|\n| Informational SMS (order updates) | Prior express consent | Providing phone number during transaction usually qualifies |\n| Marketing SMS | Prior express written consent | Must be clear and conspicuous, separate from T&C |\n| Manual voice calls | None for existing business relationship | 18-month window |\n| Autodialed \u002F prerecorded voice | Prior express consent (informational) or written (marketing) | AI voice agents typically count as autodialed and must disclose who is calling |\n| Emergency \u002F fraud alerts | No consent required | Must be genuinely urgent |\n\n### Quiet Hours\n\n- **8:00 AM – 9:00 PM** in the recipient's local time zone\n- Applies to telemarketing and non-emergency calls\n- Your application must determine the recipient's time zone — Twilio does not enforce this\n- Use `twilio-lookup-phone-intelligence` to determine carrier\u002Fregion for time zone inference\n\n### Do Not Call\n\n- Maintain an internal Do Not Call list\n- Honor opt-outs within 10 business days (best practice: immediately)\n- Scrub against the National Do Not Call Registry for telemarketing\n\n---\n\n## GDPR (EU\u002FEEA)\n\n### Consent for Communications\n\n| Basis | When it applies | Requirements |\n|-------|----------------|-------------|\n| Explicit consent | Marketing messages, new customer outreach | Must be freely given, specific, informed, unambiguous. Pre-checked boxes do NOT qualify. |\n| Legitimate interest | Transactional messages, existing customer relationship | Requires documented balancing test. Must offer opt-out. |\n| Contractual necessity | Order confirmations, shipping updates | Directly related to contract performance |\n\n### Right to Deletion\n\nApplies to ALL data stored by your application via Twilio:\n- Call recordings and transcripts\n- SMS\u002Fmessaging logs\n- Conversation Memory observations and profiles\n- Conversation Intelligence operator results\n- Customer profiles in your database\n\n**Implementation:** Build a deletion endpoint that removes data from all systems. Twilio retains message logs for 400 days — you can delete recordings via API but cannot delete message logs from Twilio's system before the retention window.\n\n### Call Recording Consent\n\n- EU calls require explicit consent before recording, or a documented legitimate interest basis\n- Play a recording notice at the start of every call: `\u003CSay>This call may be recorded for quality assurance.\u003C\u002FSay>`\n- Store consent records with timestamp\n\n---\n\n## PCI DSS (Payment Card Industry)\n\n### Never Record Card Numbers\n\n- If recording calls, **pause recording** during payment:\n\n**Python**\n```python\n# Pause recording when customer gives card number\nclient.calls(call_sid).recordings(recording_sid).update(status=\"paused\")\n\n# Use \u003CPay> verb instead of collecting card numbers verbally\nresponse = VoiceResponse()\nresponse.pay(\n    payment_connector=\"stripe_connector\",\n    charge_amount=\"49.99\",\n    currency=\"usd\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fpay-status\"\n)\n```\n\n- Never let an LLM process, log, or repeat card numbers\n- Never store card numbers in Conversation Memory observations or Conversation Intelligence transcripts\n\n### PCI Mode Warning\n\n**PCI Mode is IRREVERSIBLE and account-wide.** Once enabled:\n- All recordings are encrypted\n- Transcript access is restricted\n- Cannot be disabled — ever\n\n**Recommendation:** If you need PCI compliance for one use case, create a separate sub-account. See `twilio-account-setup`.\n\n---\n\n## HIPAA (Healthcare)\n\n### Requirements\n\n- **BAA required:** Execute a Business Associate Agreement with Twilio before handling PHI\n- **Recording encryption:** Mandatory for any call recording containing PHI\n- **PHI minimization in TTS:** Don't speak full patient details via `\u003CSay>`. Use minimum necessary information.\n- **API key rotation:** Regular rotation required. See `twilio-iam-auth-setup`\n- **Access controls:** Restrict who can access recordings and transcripts\n\n### Safe Notification Content\n\n| Channel | Safe | Unsafe |\n|---------|------|--------|\n| SMS | \"Your appointment is tomorrow at 2pm\" | \"Your appointment with Dr. Smith for diabetes follow-up\" |\n| Voice IVR | \"Press 1 to confirm your upcoming appointment\" | \"Press 1 to confirm your cardiology appointment\" |\n| Email | Can include more detail if encrypted\u002Fauthenticated | Never send PHI in subject line |\n\n---\n\n## FDCPA \u002F Regulation F (Debt Collection)\n\n### Requirements\n\n- **Mini-Miranda disclosure** required on every communication: \"This is an attempt to collect a debt and any information obtained will be used for that purpose.\"\n- **Call attempt limits:** Max 7 call attempts per debt per 7-day rolling window\n- **Voicemail:** Must include disclosure or use limited-content message (name, phone number, request to call back — no mention of debt)\n- **SMS consent:** Requires separate consent from voice consent\n- **Time restrictions:** Same as TCPA quiet hours (8am-9pm local time)\n- **Developer responsibility:** Twilio does NOT enforce FDCPA limits. Your application must track attempt counts and timing.\n\n**Python**\n```python\n# Track call attempts per debt\ndef can_attempt_call(debt_id, db):\n    seven_days_ago = datetime.now() - timedelta(days=7)\n    attempts = db.count_attempts(debt_id, since=seven_days_ago)\n    return attempts \u003C 7\n\n# Include Mini-Miranda in IVR\nresponse = VoiceResponse()\nresponse.say(\"This is an attempt to collect a debt and any information obtained will be used for that purpose.\")\nresponse.pause(length=1)\nresponse.say(\"Please press 1 to speak with a representative.\")\nresponse.gather(num_digits=1, action=\"\u002Fhandle-keypress\")\n```\n\n---\n\n## WhatsApp Compliance\n\n### Template Requirements\n- Outbound messages require pre-approved Message Templates (submitted to Meta, 24-48 hour approval)\n- Free-form messages only within 24-hour service window after customer initiates\n- Template rejections: vague descriptions, missing variables, promotional language in utility templates\n\n### Quality Rating\n- WhatsApp enforces quality scoring — too many blocks\u002Freports = rate limited or suspended\n- Monitor quality in WhatsApp Manager dashboard\n- Opt-in required before sending any WhatsApp messages\n\n### Opt-In Best Practices\n- Collect WhatsApp-specific consent (separate from SMS consent)\n- Clearly state what types of messages will be sent\n- Provide easy opt-out (reply STOP)\n\n---\n\n## CAN-SPAM (Email)\n\n- Physical mailing address required in every marketing email\n- One-click unsubscribe required (SendGrid handles automatically via List-Unsubscribe header)\n- Honor unsubscribe within 10 business days\n- Subject line must not be misleading\n- \"From\" address must be accurate\n\nSee `twilio-sendgrid-email-send` for SendGrid-specific compliance features.\n\n---\n\n## SHAKEN\u002FSTIR (Caller ID Verification)\n\n### Attestation Levels\n\n| Level | Meaning | Caller ID display |\n|-------|---------|-------------------|\n| **A (Full)** | Carrier vouches for caller identity and right to use number | Green checkmark ✅ |\n| **B (Partial)** | Carrier vouches for caller but not number ownership | Neutral display |\n| **C (Gateway)** | Carrier knows where call entered network, nothing else | May show \"Spam Likely\" |\n\n- Only Level A produces a trusted caller ID display\n- Affects answer rates significantly for outbound campaigns\n- E.164 formatting required for proper attestation\n- Twilio signs outbound calls automatically when you own the number\n\n---\n\n## Consent Management Pattern\n\n### Store Consent Records\n\n```python\n# Minimum consent record\nconsent_record = {\n    \"phone\": \"+15558675310\",\n    \"channel\": \"sms\",                    # sms, voice, whatsapp, email\n    \"consent_type\": \"marketing\",         # marketing, transactional, debt_collection\n    \"consent_method\": \"web_form\",        # web_form, verbal, paper, api\n    \"consent_timestamp\": \"2026-04-13T14:30:00Z\",\n    \"consent_source\": \"checkout_page\",   # where consent was collected\n    \"ip_address\": \"203.0.113.42\",        # for web consent\n    \"opted_out\": False,\n    \"opt_out_timestamp\": None\n}\n```\n\n### Opt-Out Handling\n\n- Process STOP\u002FCANCEL\u002FUNSUBSCRIBE\u002FEND\u002FQUIT keywords immediately\n- Messaging Services handle keyword opt-out automatically for SMS\n- For voice: maintain your own Do Not Call list\n- For WhatsApp: handle via webhook when user blocks\n- For email: SendGrid manages suppression lists automatically\n\n---\n\n## CANNOT\n\n- **Cannot rely on Twilio to enforce compliance rules** — Your application must implement TCPA, GDPR, PCI, and other rules. Twilio provides tools, not enforcement.\n- **Cannot apply A2P 10DLC registration outside the US** — Other countries have their own regimes\n- **Cannot use public link shorteners (bit.ly, tinyurl, goo.gl, short.io, etc.)** — Messages with public short links are categorically filtered by carriers. Use a branded\u002Fvanity short domain (e.g., `go.yourcompany.com`) configured in your Messaging Service. Twilio's shared `twil.io` domain is not sufficient — you must register your own branded domain in Console under Messaging > Link Shortening.\n- **Cannot reverse PCI Mode** — Irreversible and account-wide once enabled\n- **Cannot fully clear message logs via GDPR deletion** — Twilio retains internal message logs for 400 days regardless of deletion requests\n- **Cannot assume regulations are static** — Compliance requirements change. Verify current regulations before launch.\n- **Cannot apply this skill's guidance outside US\u002FEU** — India TRAI DLT, Brazil LGPD, Australia Spam Act, and other jurisdictions require additional research\n\n---\n\n## Next Steps\n\n- **Registration before traffic works:** `twilio-compliance-onboarding`\n- **WhatsApp sender setup:** `twilio-whatsapp-manage-senders`\n- **Credential security:** `twilio-iam-auth-setup`\n- **Account structure for PCI isolation:** `twilio-account-setup`\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,64,99,111,115,121,126,133,256,262,300,306,324,327,333,339,420,426,431,459,469,475,499,502,508,514,529,537,650,663,669,679,697,714,717,723,728,795,801,882,885,891,896,959,966,1068,1071,1077,1083,1101,1107,1125,1131,1149,1152,1158,1186,1199,1202,1208,1214,1304,1327,1330,1336,1342,1445,1451,1479,1482,1488,1577,1580,1586,1647],{"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,62],{"type":48,"value":55},"Compliance failures block sends, get numbers suspended, and expose your customer to legal liability. This skill covers the ",{"type":42,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":48,"value":61},"ongoing rules",{"type":48,"value":63}," that apply to live traffic — what you can send, when, and to whom.",{"type":42,"tag":51,"props":65,"children":66},{},[67,72,74,81,83,89,91,97],{"type":42,"tag":57,"props":68,"children":69},{},[70],{"type":48,"value":71},"Lifecycle:",{"type":48,"value":73}," Choose numbers (",{"type":42,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":48,"value":80},"twilio-numbers-senders",{"type":48,"value":82},") → Register them (",{"type":42,"tag":75,"props":84,"children":86},{"className":85},[],[87],{"type":48,"value":88},"twilio-compliance-onboarding",{"type":48,"value":90},") → Follow traffic rules (this skill) → Secure everything (",{"type":42,"tag":75,"props":92,"children":94},{"className":93},[],[95],{"type":48,"value":96},"twilio-security-hardening",{"type":48,"value":98},")",{"type":42,"tag":51,"props":100,"children":101},{},[102,104,109],{"type":48,"value":103},"For registrations required before traffic works (A2P 10DLC, toll-free verification, WhatsApp\u002FRCS sender approval, voice trust programs), see ",{"type":42,"tag":75,"props":105,"children":107},{"className":106},[],[108],{"type":48,"value":88},{"type":48,"value":110},".",{"type":42,"tag":112,"props":113,"children":114},"hr",{},[],{"type":42,"tag":43,"props":116,"children":118},{"id":117},"tcpa-telephone-consumer-protection-act",[119],{"type":48,"value":120},"TCPA (Telephone Consumer Protection Act)",{"type":42,"tag":51,"props":122,"children":123},{},[124],{"type":48,"value":125},"Applies to all US voice calls and SMS.",{"type":42,"tag":127,"props":128,"children":130},"h3",{"id":129},"consent-requirements",[131],{"type":48,"value":132},"Consent Requirements",{"type":42,"tag":134,"props":135,"children":136},"table",{},[137,161],{"type":42,"tag":138,"props":139,"children":140},"thead",{},[141],{"type":42,"tag":142,"props":143,"children":144},"tr",{},[145,151,156],{"type":42,"tag":146,"props":147,"children":148},"th",{},[149],{"type":48,"value":150},"Communication type",{"type":42,"tag":146,"props":152,"children":153},{},[154],{"type":48,"value":155},"Consent required",{"type":42,"tag":146,"props":157,"children":158},{},[159],{"type":48,"value":160},"Notes",{"type":42,"tag":162,"props":163,"children":164},"tbody",{},[165,184,202,220,238],{"type":42,"tag":142,"props":166,"children":167},{},[168,174,179],{"type":42,"tag":169,"props":170,"children":171},"td",{},[172],{"type":48,"value":173},"Informational SMS (order updates)",{"type":42,"tag":169,"props":175,"children":176},{},[177],{"type":48,"value":178},"Prior express consent",{"type":42,"tag":169,"props":180,"children":181},{},[182],{"type":48,"value":183},"Providing phone number during transaction usually qualifies",{"type":42,"tag":142,"props":185,"children":186},{},[187,192,197],{"type":42,"tag":169,"props":188,"children":189},{},[190],{"type":48,"value":191},"Marketing SMS",{"type":42,"tag":169,"props":193,"children":194},{},[195],{"type":48,"value":196},"Prior express written consent",{"type":42,"tag":169,"props":198,"children":199},{},[200],{"type":48,"value":201},"Must be clear and conspicuous, separate from T&C",{"type":42,"tag":142,"props":203,"children":204},{},[205,210,215],{"type":42,"tag":169,"props":206,"children":207},{},[208],{"type":48,"value":209},"Manual voice calls",{"type":42,"tag":169,"props":211,"children":212},{},[213],{"type":48,"value":214},"None for existing business relationship",{"type":42,"tag":169,"props":216,"children":217},{},[218],{"type":48,"value":219},"18-month window",{"type":42,"tag":142,"props":221,"children":222},{},[223,228,233],{"type":42,"tag":169,"props":224,"children":225},{},[226],{"type":48,"value":227},"Autodialed \u002F prerecorded voice",{"type":42,"tag":169,"props":229,"children":230},{},[231],{"type":48,"value":232},"Prior express consent (informational) or written (marketing)",{"type":42,"tag":169,"props":234,"children":235},{},[236],{"type":48,"value":237},"AI voice agents typically count as autodialed and must disclose who is calling",{"type":42,"tag":142,"props":239,"children":240},{},[241,246,251],{"type":42,"tag":169,"props":242,"children":243},{},[244],{"type":48,"value":245},"Emergency \u002F fraud alerts",{"type":42,"tag":169,"props":247,"children":248},{},[249],{"type":48,"value":250},"No consent required",{"type":42,"tag":169,"props":252,"children":253},{},[254],{"type":48,"value":255},"Must be genuinely urgent",{"type":42,"tag":127,"props":257,"children":259},{"id":258},"quiet-hours",[260],{"type":48,"value":261},"Quiet Hours",{"type":42,"tag":263,"props":264,"children":265},"ul",{},[266,277,282,287],{"type":42,"tag":267,"props":268,"children":269},"li",{},[270,275],{"type":42,"tag":57,"props":271,"children":272},{},[273],{"type":48,"value":274},"8:00 AM – 9:00 PM",{"type":48,"value":276}," in the recipient's local time zone",{"type":42,"tag":267,"props":278,"children":279},{},[280],{"type":48,"value":281},"Applies to telemarketing and non-emergency calls",{"type":42,"tag":267,"props":283,"children":284},{},[285],{"type":48,"value":286},"Your application must determine the recipient's time zone — Twilio does not enforce this",{"type":42,"tag":267,"props":288,"children":289},{},[290,292,298],{"type":48,"value":291},"Use ",{"type":42,"tag":75,"props":293,"children":295},{"className":294},[],[296],{"type":48,"value":297},"twilio-lookup-phone-intelligence",{"type":48,"value":299}," to determine carrier\u002Fregion for time zone inference",{"type":42,"tag":127,"props":301,"children":303},{"id":302},"do-not-call",[304],{"type":48,"value":305},"Do Not Call",{"type":42,"tag":263,"props":307,"children":308},{},[309,314,319],{"type":42,"tag":267,"props":310,"children":311},{},[312],{"type":48,"value":313},"Maintain an internal Do Not Call list",{"type":42,"tag":267,"props":315,"children":316},{},[317],{"type":48,"value":318},"Honor opt-outs within 10 business days (best practice: immediately)",{"type":42,"tag":267,"props":320,"children":321},{},[322],{"type":48,"value":323},"Scrub against the National Do Not Call Registry for telemarketing",{"type":42,"tag":112,"props":325,"children":326},{},[],{"type":42,"tag":43,"props":328,"children":330},{"id":329},"gdpr-eueea",[331],{"type":48,"value":332},"GDPR (EU\u002FEEA)",{"type":42,"tag":127,"props":334,"children":336},{"id":335},"consent-for-communications",[337],{"type":48,"value":338},"Consent for Communications",{"type":42,"tag":134,"props":340,"children":341},{},[342,363],{"type":42,"tag":138,"props":343,"children":344},{},[345],{"type":42,"tag":142,"props":346,"children":347},{},[348,353,358],{"type":42,"tag":146,"props":349,"children":350},{},[351],{"type":48,"value":352},"Basis",{"type":42,"tag":146,"props":354,"children":355},{},[356],{"type":48,"value":357},"When it applies",{"type":42,"tag":146,"props":359,"children":360},{},[361],{"type":48,"value":362},"Requirements",{"type":42,"tag":162,"props":364,"children":365},{},[366,384,402],{"type":42,"tag":142,"props":367,"children":368},{},[369,374,379],{"type":42,"tag":169,"props":370,"children":371},{},[372],{"type":48,"value":373},"Explicit consent",{"type":42,"tag":169,"props":375,"children":376},{},[377],{"type":48,"value":378},"Marketing messages, new customer outreach",{"type":42,"tag":169,"props":380,"children":381},{},[382],{"type":48,"value":383},"Must be freely given, specific, informed, unambiguous. Pre-checked boxes do NOT qualify.",{"type":42,"tag":142,"props":385,"children":386},{},[387,392,397],{"type":42,"tag":169,"props":388,"children":389},{},[390],{"type":48,"value":391},"Legitimate interest",{"type":42,"tag":169,"props":393,"children":394},{},[395],{"type":48,"value":396},"Transactional messages, existing customer relationship",{"type":42,"tag":169,"props":398,"children":399},{},[400],{"type":48,"value":401},"Requires documented balancing test. Must offer opt-out.",{"type":42,"tag":142,"props":403,"children":404},{},[405,410,415],{"type":42,"tag":169,"props":406,"children":407},{},[408],{"type":48,"value":409},"Contractual necessity",{"type":42,"tag":169,"props":411,"children":412},{},[413],{"type":48,"value":414},"Order confirmations, shipping updates",{"type":42,"tag":169,"props":416,"children":417},{},[418],{"type":48,"value":419},"Directly related to contract performance",{"type":42,"tag":127,"props":421,"children":423},{"id":422},"right-to-deletion",[424],{"type":48,"value":425},"Right to Deletion",{"type":42,"tag":51,"props":427,"children":428},{},[429],{"type":48,"value":430},"Applies to ALL data stored by your application via Twilio:",{"type":42,"tag":263,"props":432,"children":433},{},[434,439,444,449,454],{"type":42,"tag":267,"props":435,"children":436},{},[437],{"type":48,"value":438},"Call recordings and transcripts",{"type":42,"tag":267,"props":440,"children":441},{},[442],{"type":48,"value":443},"SMS\u002Fmessaging logs",{"type":42,"tag":267,"props":445,"children":446},{},[447],{"type":48,"value":448},"Conversation Memory observations and profiles",{"type":42,"tag":267,"props":450,"children":451},{},[452],{"type":48,"value":453},"Conversation Intelligence operator results",{"type":42,"tag":267,"props":455,"children":456},{},[457],{"type":48,"value":458},"Customer profiles in your database",{"type":42,"tag":51,"props":460,"children":461},{},[462,467],{"type":42,"tag":57,"props":463,"children":464},{},[465],{"type":48,"value":466},"Implementation:",{"type":48,"value":468}," Build a deletion endpoint that removes data from all systems. Twilio retains message logs for 400 days — you can delete recordings via API but cannot delete message logs from Twilio's system before the retention window.",{"type":42,"tag":127,"props":470,"children":472},{"id":471},"call-recording-consent",[473],{"type":48,"value":474},"Call Recording Consent",{"type":42,"tag":263,"props":476,"children":477},{},[478,483,494],{"type":42,"tag":267,"props":479,"children":480},{},[481],{"type":48,"value":482},"EU calls require explicit consent before recording, or a documented legitimate interest basis",{"type":42,"tag":267,"props":484,"children":485},{},[486,488],{"type":48,"value":487},"Play a recording notice at the start of every call: ",{"type":42,"tag":75,"props":489,"children":491},{"className":490},[],[492],{"type":48,"value":493},"\u003CSay>This call may be recorded for quality assurance.\u003C\u002FSay>",{"type":42,"tag":267,"props":495,"children":496},{},[497],{"type":48,"value":498},"Store consent records with timestamp",{"type":42,"tag":112,"props":500,"children":501},{},[],{"type":42,"tag":43,"props":503,"children":505},{"id":504},"pci-dss-payment-card-industry",[506],{"type":48,"value":507},"PCI DSS (Payment Card Industry)",{"type":42,"tag":127,"props":509,"children":511},{"id":510},"never-record-card-numbers",[512],{"type":48,"value":513},"Never Record Card Numbers",{"type":42,"tag":263,"props":515,"children":516},{},[517],{"type":42,"tag":267,"props":518,"children":519},{},[520,522,527],{"type":48,"value":521},"If recording calls, ",{"type":42,"tag":57,"props":523,"children":524},{},[525],{"type":48,"value":526},"pause recording",{"type":48,"value":528}," during payment:",{"type":42,"tag":51,"props":530,"children":531},{},[532],{"type":42,"tag":57,"props":533,"children":534},{},[535],{"type":48,"value":536},"Python",{"type":42,"tag":538,"props":539,"children":544},"pre",{"className":540,"code":541,"language":542,"meta":543,"style":543},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Pause recording when customer gives card number\nclient.calls(call_sid).recordings(recording_sid).update(status=\"paused\")\n\n# Use \u003CPay> verb instead of collecting card numbers verbally\nresponse = VoiceResponse()\nresponse.pay(\n    payment_connector=\"stripe_connector\",\n    charge_amount=\"49.99\",\n    currency=\"usd\",\n    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fpay-status\"\n)\n","python","",[545],{"type":42,"tag":75,"props":546,"children":547},{"__ignoreMap":543},[548,559,568,578,587,596,605,614,623,632,641],{"type":42,"tag":549,"props":550,"children":553},"span",{"class":551,"line":552},"line",1,[554],{"type":42,"tag":549,"props":555,"children":556},{},[557],{"type":48,"value":558},"# Pause recording when customer gives card number\n",{"type":42,"tag":549,"props":560,"children":562},{"class":551,"line":561},2,[563],{"type":42,"tag":549,"props":564,"children":565},{},[566],{"type":48,"value":567},"client.calls(call_sid).recordings(recording_sid).update(status=\"paused\")\n",{"type":42,"tag":549,"props":569,"children":571},{"class":551,"line":570},3,[572],{"type":42,"tag":549,"props":573,"children":575},{"emptyLinePlaceholder":574},true,[576],{"type":48,"value":577},"\n",{"type":42,"tag":549,"props":579,"children":581},{"class":551,"line":580},4,[582],{"type":42,"tag":549,"props":583,"children":584},{},[585],{"type":48,"value":586},"# Use \u003CPay> verb instead of collecting card numbers verbally\n",{"type":42,"tag":549,"props":588,"children":590},{"class":551,"line":589},5,[591],{"type":42,"tag":549,"props":592,"children":593},{},[594],{"type":48,"value":595},"response = VoiceResponse()\n",{"type":42,"tag":549,"props":597,"children":599},{"class":551,"line":598},6,[600],{"type":42,"tag":549,"props":601,"children":602},{},[603],{"type":48,"value":604},"response.pay(\n",{"type":42,"tag":549,"props":606,"children":608},{"class":551,"line":607},7,[609],{"type":42,"tag":549,"props":610,"children":611},{},[612],{"type":48,"value":613},"    payment_connector=\"stripe_connector\",\n",{"type":42,"tag":549,"props":615,"children":617},{"class":551,"line":616},8,[618],{"type":42,"tag":549,"props":619,"children":620},{},[621],{"type":48,"value":622},"    charge_amount=\"49.99\",\n",{"type":42,"tag":549,"props":624,"children":626},{"class":551,"line":625},9,[627],{"type":42,"tag":549,"props":628,"children":629},{},[630],{"type":48,"value":631},"    currency=\"usd\",\n",{"type":42,"tag":549,"props":633,"children":635},{"class":551,"line":634},10,[636],{"type":42,"tag":549,"props":637,"children":638},{},[639],{"type":48,"value":640},"    status_callback=\"https:\u002F\u002Fyourapp.com\u002Fpay-status\"\n",{"type":42,"tag":549,"props":642,"children":644},{"class":551,"line":643},11,[645],{"type":42,"tag":549,"props":646,"children":647},{},[648],{"type":48,"value":649},")\n",{"type":42,"tag":263,"props":651,"children":652},{},[653,658],{"type":42,"tag":267,"props":654,"children":655},{},[656],{"type":48,"value":657},"Never let an LLM process, log, or repeat card numbers",{"type":42,"tag":267,"props":659,"children":660},{},[661],{"type":48,"value":662},"Never store card numbers in Conversation Memory observations or Conversation Intelligence transcripts",{"type":42,"tag":127,"props":664,"children":666},{"id":665},"pci-mode-warning",[667],{"type":48,"value":668},"PCI Mode Warning",{"type":42,"tag":51,"props":670,"children":671},{},[672,677],{"type":42,"tag":57,"props":673,"children":674},{},[675],{"type":48,"value":676},"PCI Mode is IRREVERSIBLE and account-wide.",{"type":48,"value":678}," Once enabled:",{"type":42,"tag":263,"props":680,"children":681},{},[682,687,692],{"type":42,"tag":267,"props":683,"children":684},{},[685],{"type":48,"value":686},"All recordings are encrypted",{"type":42,"tag":267,"props":688,"children":689},{},[690],{"type":48,"value":691},"Transcript access is restricted",{"type":42,"tag":267,"props":693,"children":694},{},[695],{"type":48,"value":696},"Cannot be disabled — ever",{"type":42,"tag":51,"props":698,"children":699},{},[700,705,707,713],{"type":42,"tag":57,"props":701,"children":702},{},[703],{"type":48,"value":704},"Recommendation:",{"type":48,"value":706}," If you need PCI compliance for one use case, create a separate sub-account. See ",{"type":42,"tag":75,"props":708,"children":710},{"className":709},[],[711],{"type":48,"value":712},"twilio-account-setup",{"type":48,"value":110},{"type":42,"tag":112,"props":715,"children":716},{},[],{"type":42,"tag":43,"props":718,"children":720},{"id":719},"hipaa-healthcare",[721],{"type":48,"value":722},"HIPAA (Healthcare)",{"type":42,"tag":127,"props":724,"children":726},{"id":725},"requirements",[727],{"type":48,"value":362},{"type":42,"tag":263,"props":729,"children":730},{},[731,741,751,769,785],{"type":42,"tag":267,"props":732,"children":733},{},[734,739],{"type":42,"tag":57,"props":735,"children":736},{},[737],{"type":48,"value":738},"BAA required:",{"type":48,"value":740}," Execute a Business Associate Agreement with Twilio before handling PHI",{"type":42,"tag":267,"props":742,"children":743},{},[744,749],{"type":42,"tag":57,"props":745,"children":746},{},[747],{"type":48,"value":748},"Recording encryption:",{"type":48,"value":750}," Mandatory for any call recording containing PHI",{"type":42,"tag":267,"props":752,"children":753},{},[754,759,761,767],{"type":42,"tag":57,"props":755,"children":756},{},[757],{"type":48,"value":758},"PHI minimization in TTS:",{"type":48,"value":760}," Don't speak full patient details via ",{"type":42,"tag":75,"props":762,"children":764},{"className":763},[],[765],{"type":48,"value":766},"\u003CSay>",{"type":48,"value":768},". Use minimum necessary information.",{"type":42,"tag":267,"props":770,"children":771},{},[772,777,779],{"type":42,"tag":57,"props":773,"children":774},{},[775],{"type":48,"value":776},"API key rotation:",{"type":48,"value":778}," Regular rotation required. See ",{"type":42,"tag":75,"props":780,"children":782},{"className":781},[],[783],{"type":48,"value":784},"twilio-iam-auth-setup",{"type":42,"tag":267,"props":786,"children":787},{},[788,793],{"type":42,"tag":57,"props":789,"children":790},{},[791],{"type":48,"value":792},"Access controls:",{"type":48,"value":794}," Restrict who can access recordings and transcripts",{"type":42,"tag":127,"props":796,"children":798},{"id":797},"safe-notification-content",[799],{"type":48,"value":800},"Safe Notification Content",{"type":42,"tag":134,"props":802,"children":803},{},[804,825],{"type":42,"tag":138,"props":805,"children":806},{},[807],{"type":42,"tag":142,"props":808,"children":809},{},[810,815,820],{"type":42,"tag":146,"props":811,"children":812},{},[813],{"type":48,"value":814},"Channel",{"type":42,"tag":146,"props":816,"children":817},{},[818],{"type":48,"value":819},"Safe",{"type":42,"tag":146,"props":821,"children":822},{},[823],{"type":48,"value":824},"Unsafe",{"type":42,"tag":162,"props":826,"children":827},{},[828,846,864],{"type":42,"tag":142,"props":829,"children":830},{},[831,836,841],{"type":42,"tag":169,"props":832,"children":833},{},[834],{"type":48,"value":835},"SMS",{"type":42,"tag":169,"props":837,"children":838},{},[839],{"type":48,"value":840},"\"Your appointment is tomorrow at 2pm\"",{"type":42,"tag":169,"props":842,"children":843},{},[844],{"type":48,"value":845},"\"Your appointment with Dr. Smith for diabetes follow-up\"",{"type":42,"tag":142,"props":847,"children":848},{},[849,854,859],{"type":42,"tag":169,"props":850,"children":851},{},[852],{"type":48,"value":853},"Voice IVR",{"type":42,"tag":169,"props":855,"children":856},{},[857],{"type":48,"value":858},"\"Press 1 to confirm your upcoming appointment\"",{"type":42,"tag":169,"props":860,"children":861},{},[862],{"type":48,"value":863},"\"Press 1 to confirm your cardiology appointment\"",{"type":42,"tag":142,"props":865,"children":866},{},[867,872,877],{"type":42,"tag":169,"props":868,"children":869},{},[870],{"type":48,"value":871},"Email",{"type":42,"tag":169,"props":873,"children":874},{},[875],{"type":48,"value":876},"Can include more detail if encrypted\u002Fauthenticated",{"type":42,"tag":169,"props":878,"children":879},{},[880],{"type":48,"value":881},"Never send PHI in subject line",{"type":42,"tag":112,"props":883,"children":884},{},[],{"type":42,"tag":43,"props":886,"children":888},{"id":887},"fdcpa-regulation-f-debt-collection",[889],{"type":48,"value":890},"FDCPA \u002F Regulation F (Debt Collection)",{"type":42,"tag":127,"props":892,"children":894},{"id":893},"requirements-1",[895],{"type":48,"value":362},{"type":42,"tag":263,"props":897,"children":898},{},[899,909,919,929,939,949],{"type":42,"tag":267,"props":900,"children":901},{},[902,907],{"type":42,"tag":57,"props":903,"children":904},{},[905],{"type":48,"value":906},"Mini-Miranda disclosure",{"type":48,"value":908}," required on every communication: \"This is an attempt to collect a debt and any information obtained will be used for that purpose.\"",{"type":42,"tag":267,"props":910,"children":911},{},[912,917],{"type":42,"tag":57,"props":913,"children":914},{},[915],{"type":48,"value":916},"Call attempt limits:",{"type":48,"value":918}," Max 7 call attempts per debt per 7-day rolling window",{"type":42,"tag":267,"props":920,"children":921},{},[922,927],{"type":42,"tag":57,"props":923,"children":924},{},[925],{"type":48,"value":926},"Voicemail:",{"type":48,"value":928}," Must include disclosure or use limited-content message (name, phone number, request to call back — no mention of debt)",{"type":42,"tag":267,"props":930,"children":931},{},[932,937],{"type":42,"tag":57,"props":933,"children":934},{},[935],{"type":48,"value":936},"SMS consent:",{"type":48,"value":938}," Requires separate consent from voice consent",{"type":42,"tag":267,"props":940,"children":941},{},[942,947],{"type":42,"tag":57,"props":943,"children":944},{},[945],{"type":48,"value":946},"Time restrictions:",{"type":48,"value":948}," Same as TCPA quiet hours (8am-9pm local time)",{"type":42,"tag":267,"props":950,"children":951},{},[952,957],{"type":42,"tag":57,"props":953,"children":954},{},[955],{"type":48,"value":956},"Developer responsibility:",{"type":48,"value":958}," Twilio does NOT enforce FDCPA limits. Your application must track attempt counts and timing.",{"type":42,"tag":51,"props":960,"children":961},{},[962],{"type":42,"tag":57,"props":963,"children":964},{},[965],{"type":48,"value":536},{"type":42,"tag":538,"props":967,"children":969},{"className":540,"code":968,"language":542,"meta":543,"style":543},"# Track call attempts per debt\ndef can_attempt_call(debt_id, db):\n    seven_days_ago = datetime.now() - timedelta(days=7)\n    attempts = db.count_attempts(debt_id, since=seven_days_ago)\n    return attempts \u003C 7\n\n# Include Mini-Miranda in IVR\nresponse = VoiceResponse()\nresponse.say(\"This is an attempt to collect a debt and any information obtained will be used for that purpose.\")\nresponse.pause(length=1)\nresponse.say(\"Please press 1 to speak with a representative.\")\nresponse.gather(num_digits=1, action=\"\u002Fhandle-keypress\")\n",[970],{"type":42,"tag":75,"props":971,"children":972},{"__ignoreMap":543},[973,981,989,997,1005,1013,1020,1028,1035,1043,1051,1059],{"type":42,"tag":549,"props":974,"children":975},{"class":551,"line":552},[976],{"type":42,"tag":549,"props":977,"children":978},{},[979],{"type":48,"value":980},"# Track call attempts per debt\n",{"type":42,"tag":549,"props":982,"children":983},{"class":551,"line":561},[984],{"type":42,"tag":549,"props":985,"children":986},{},[987],{"type":48,"value":988},"def can_attempt_call(debt_id, db):\n",{"type":42,"tag":549,"props":990,"children":991},{"class":551,"line":570},[992],{"type":42,"tag":549,"props":993,"children":994},{},[995],{"type":48,"value":996},"    seven_days_ago = datetime.now() - timedelta(days=7)\n",{"type":42,"tag":549,"props":998,"children":999},{"class":551,"line":580},[1000],{"type":42,"tag":549,"props":1001,"children":1002},{},[1003],{"type":48,"value":1004},"    attempts = db.count_attempts(debt_id, since=seven_days_ago)\n",{"type":42,"tag":549,"props":1006,"children":1007},{"class":551,"line":589},[1008],{"type":42,"tag":549,"props":1009,"children":1010},{},[1011],{"type":48,"value":1012},"    return attempts \u003C 7\n",{"type":42,"tag":549,"props":1014,"children":1015},{"class":551,"line":598},[1016],{"type":42,"tag":549,"props":1017,"children":1018},{"emptyLinePlaceholder":574},[1019],{"type":48,"value":577},{"type":42,"tag":549,"props":1021,"children":1022},{"class":551,"line":607},[1023],{"type":42,"tag":549,"props":1024,"children":1025},{},[1026],{"type":48,"value":1027},"# Include Mini-Miranda in IVR\n",{"type":42,"tag":549,"props":1029,"children":1030},{"class":551,"line":616},[1031],{"type":42,"tag":549,"props":1032,"children":1033},{},[1034],{"type":48,"value":595},{"type":42,"tag":549,"props":1036,"children":1037},{"class":551,"line":625},[1038],{"type":42,"tag":549,"props":1039,"children":1040},{},[1041],{"type":48,"value":1042},"response.say(\"This is an attempt to collect a debt and any information obtained will be used for that purpose.\")\n",{"type":42,"tag":549,"props":1044,"children":1045},{"class":551,"line":634},[1046],{"type":42,"tag":549,"props":1047,"children":1048},{},[1049],{"type":48,"value":1050},"response.pause(length=1)\n",{"type":42,"tag":549,"props":1052,"children":1053},{"class":551,"line":643},[1054],{"type":42,"tag":549,"props":1055,"children":1056},{},[1057],{"type":48,"value":1058},"response.say(\"Please press 1 to speak with a representative.\")\n",{"type":42,"tag":549,"props":1060,"children":1062},{"class":551,"line":1061},12,[1063],{"type":42,"tag":549,"props":1064,"children":1065},{},[1066],{"type":48,"value":1067},"response.gather(num_digits=1, action=\"\u002Fhandle-keypress\")\n",{"type":42,"tag":112,"props":1069,"children":1070},{},[],{"type":42,"tag":43,"props":1072,"children":1074},{"id":1073},"whatsapp-compliance",[1075],{"type":48,"value":1076},"WhatsApp Compliance",{"type":42,"tag":127,"props":1078,"children":1080},{"id":1079},"template-requirements",[1081],{"type":48,"value":1082},"Template Requirements",{"type":42,"tag":263,"props":1084,"children":1085},{},[1086,1091,1096],{"type":42,"tag":267,"props":1087,"children":1088},{},[1089],{"type":48,"value":1090},"Outbound messages require pre-approved Message Templates (submitted to Meta, 24-48 hour approval)",{"type":42,"tag":267,"props":1092,"children":1093},{},[1094],{"type":48,"value":1095},"Free-form messages only within 24-hour service window after customer initiates",{"type":42,"tag":267,"props":1097,"children":1098},{},[1099],{"type":48,"value":1100},"Template rejections: vague descriptions, missing variables, promotional language in utility templates",{"type":42,"tag":127,"props":1102,"children":1104},{"id":1103},"quality-rating",[1105],{"type":48,"value":1106},"Quality Rating",{"type":42,"tag":263,"props":1108,"children":1109},{},[1110,1115,1120],{"type":42,"tag":267,"props":1111,"children":1112},{},[1113],{"type":48,"value":1114},"WhatsApp enforces quality scoring — too many blocks\u002Freports = rate limited or suspended",{"type":42,"tag":267,"props":1116,"children":1117},{},[1118],{"type":48,"value":1119},"Monitor quality in WhatsApp Manager dashboard",{"type":42,"tag":267,"props":1121,"children":1122},{},[1123],{"type":48,"value":1124},"Opt-in required before sending any WhatsApp messages",{"type":42,"tag":127,"props":1126,"children":1128},{"id":1127},"opt-in-best-practices",[1129],{"type":48,"value":1130},"Opt-In Best Practices",{"type":42,"tag":263,"props":1132,"children":1133},{},[1134,1139,1144],{"type":42,"tag":267,"props":1135,"children":1136},{},[1137],{"type":48,"value":1138},"Collect WhatsApp-specific consent (separate from SMS consent)",{"type":42,"tag":267,"props":1140,"children":1141},{},[1142],{"type":48,"value":1143},"Clearly state what types of messages will be sent",{"type":42,"tag":267,"props":1145,"children":1146},{},[1147],{"type":48,"value":1148},"Provide easy opt-out (reply STOP)",{"type":42,"tag":112,"props":1150,"children":1151},{},[],{"type":42,"tag":43,"props":1153,"children":1155},{"id":1154},"can-spam-email",[1156],{"type":48,"value":1157},"CAN-SPAM (Email)",{"type":42,"tag":263,"props":1159,"children":1160},{},[1161,1166,1171,1176,1181],{"type":42,"tag":267,"props":1162,"children":1163},{},[1164],{"type":48,"value":1165},"Physical mailing address required in every marketing email",{"type":42,"tag":267,"props":1167,"children":1168},{},[1169],{"type":48,"value":1170},"One-click unsubscribe required (SendGrid handles automatically via List-Unsubscribe header)",{"type":42,"tag":267,"props":1172,"children":1173},{},[1174],{"type":48,"value":1175},"Honor unsubscribe within 10 business days",{"type":42,"tag":267,"props":1177,"children":1178},{},[1179],{"type":48,"value":1180},"Subject line must not be misleading",{"type":42,"tag":267,"props":1182,"children":1183},{},[1184],{"type":48,"value":1185},"\"From\" address must be accurate",{"type":42,"tag":51,"props":1187,"children":1188},{},[1189,1191,1197],{"type":48,"value":1190},"See ",{"type":42,"tag":75,"props":1192,"children":1194},{"className":1193},[],[1195],{"type":48,"value":1196},"twilio-sendgrid-email-send",{"type":48,"value":1198}," for SendGrid-specific compliance features.",{"type":42,"tag":112,"props":1200,"children":1201},{},[],{"type":42,"tag":43,"props":1203,"children":1205},{"id":1204},"shakenstir-caller-id-verification",[1206],{"type":48,"value":1207},"SHAKEN\u002FSTIR (Caller ID Verification)",{"type":42,"tag":127,"props":1209,"children":1211},{"id":1210},"attestation-levels",[1212],{"type":48,"value":1213},"Attestation Levels",{"type":42,"tag":134,"props":1215,"children":1216},{},[1217,1238],{"type":42,"tag":138,"props":1218,"children":1219},{},[1220],{"type":42,"tag":142,"props":1221,"children":1222},{},[1223,1228,1233],{"type":42,"tag":146,"props":1224,"children":1225},{},[1226],{"type":48,"value":1227},"Level",{"type":42,"tag":146,"props":1229,"children":1230},{},[1231],{"type":48,"value":1232},"Meaning",{"type":42,"tag":146,"props":1234,"children":1235},{},[1236],{"type":48,"value":1237},"Caller ID display",{"type":42,"tag":162,"props":1239,"children":1240},{},[1241,1262,1283],{"type":42,"tag":142,"props":1242,"children":1243},{},[1244,1252,1257],{"type":42,"tag":169,"props":1245,"children":1246},{},[1247],{"type":42,"tag":57,"props":1248,"children":1249},{},[1250],{"type":48,"value":1251},"A (Full)",{"type":42,"tag":169,"props":1253,"children":1254},{},[1255],{"type":48,"value":1256},"Carrier vouches for caller identity and right to use number",{"type":42,"tag":169,"props":1258,"children":1259},{},[1260],{"type":48,"value":1261},"Green checkmark ✅",{"type":42,"tag":142,"props":1263,"children":1264},{},[1265,1273,1278],{"type":42,"tag":169,"props":1266,"children":1267},{},[1268],{"type":42,"tag":57,"props":1269,"children":1270},{},[1271],{"type":48,"value":1272},"B (Partial)",{"type":42,"tag":169,"props":1274,"children":1275},{},[1276],{"type":48,"value":1277},"Carrier vouches for caller but not number ownership",{"type":42,"tag":169,"props":1279,"children":1280},{},[1281],{"type":48,"value":1282},"Neutral display",{"type":42,"tag":142,"props":1284,"children":1285},{},[1286,1294,1299],{"type":42,"tag":169,"props":1287,"children":1288},{},[1289],{"type":42,"tag":57,"props":1290,"children":1291},{},[1292],{"type":48,"value":1293},"C (Gateway)",{"type":42,"tag":169,"props":1295,"children":1296},{},[1297],{"type":48,"value":1298},"Carrier knows where call entered network, nothing else",{"type":42,"tag":169,"props":1300,"children":1301},{},[1302],{"type":48,"value":1303},"May show \"Spam Likely\"",{"type":42,"tag":263,"props":1305,"children":1306},{},[1307,1312,1317,1322],{"type":42,"tag":267,"props":1308,"children":1309},{},[1310],{"type":48,"value":1311},"Only Level A produces a trusted caller ID display",{"type":42,"tag":267,"props":1313,"children":1314},{},[1315],{"type":48,"value":1316},"Affects answer rates significantly for outbound campaigns",{"type":42,"tag":267,"props":1318,"children":1319},{},[1320],{"type":48,"value":1321},"E.164 formatting required for proper attestation",{"type":42,"tag":267,"props":1323,"children":1324},{},[1325],{"type":48,"value":1326},"Twilio signs outbound calls automatically when you own the number",{"type":42,"tag":112,"props":1328,"children":1329},{},[],{"type":42,"tag":43,"props":1331,"children":1333},{"id":1332},"consent-management-pattern",[1334],{"type":48,"value":1335},"Consent Management Pattern",{"type":42,"tag":127,"props":1337,"children":1339},{"id":1338},"store-consent-records",[1340],{"type":48,"value":1341},"Store Consent Records",{"type":42,"tag":538,"props":1343,"children":1345},{"className":540,"code":1344,"language":542,"meta":543,"style":543},"# Minimum consent record\nconsent_record = {\n    \"phone\": \"+15558675310\",\n    \"channel\": \"sms\",                    # sms, voice, whatsapp, email\n    \"consent_type\": \"marketing\",         # marketing, transactional, debt_collection\n    \"consent_method\": \"web_form\",        # web_form, verbal, paper, api\n    \"consent_timestamp\": \"2026-04-13T14:30:00Z\",\n    \"consent_source\": \"checkout_page\",   # where consent was collected\n    \"ip_address\": \"203.0.113.42\",        # for web consent\n    \"opted_out\": False,\n    \"opt_out_timestamp\": None\n}\n",[1346],{"type":42,"tag":75,"props":1347,"children":1348},{"__ignoreMap":543},[1349,1357,1365,1373,1381,1389,1397,1405,1413,1421,1429,1437],{"type":42,"tag":549,"props":1350,"children":1351},{"class":551,"line":552},[1352],{"type":42,"tag":549,"props":1353,"children":1354},{},[1355],{"type":48,"value":1356},"# Minimum consent record\n",{"type":42,"tag":549,"props":1358,"children":1359},{"class":551,"line":561},[1360],{"type":42,"tag":549,"props":1361,"children":1362},{},[1363],{"type":48,"value":1364},"consent_record = {\n",{"type":42,"tag":549,"props":1366,"children":1367},{"class":551,"line":570},[1368],{"type":42,"tag":549,"props":1369,"children":1370},{},[1371],{"type":48,"value":1372},"    \"phone\": \"+15558675310\",\n",{"type":42,"tag":549,"props":1374,"children":1375},{"class":551,"line":580},[1376],{"type":42,"tag":549,"props":1377,"children":1378},{},[1379],{"type":48,"value":1380},"    \"channel\": \"sms\",                    # sms, voice, whatsapp, email\n",{"type":42,"tag":549,"props":1382,"children":1383},{"class":551,"line":589},[1384],{"type":42,"tag":549,"props":1385,"children":1386},{},[1387],{"type":48,"value":1388},"    \"consent_type\": \"marketing\",         # marketing, transactional, debt_collection\n",{"type":42,"tag":549,"props":1390,"children":1391},{"class":551,"line":598},[1392],{"type":42,"tag":549,"props":1393,"children":1394},{},[1395],{"type":48,"value":1396},"    \"consent_method\": \"web_form\",        # web_form, verbal, paper, api\n",{"type":42,"tag":549,"props":1398,"children":1399},{"class":551,"line":607},[1400],{"type":42,"tag":549,"props":1401,"children":1402},{},[1403],{"type":48,"value":1404},"    \"consent_timestamp\": \"2026-04-13T14:30:00Z\",\n",{"type":42,"tag":549,"props":1406,"children":1407},{"class":551,"line":616},[1408],{"type":42,"tag":549,"props":1409,"children":1410},{},[1411],{"type":48,"value":1412},"    \"consent_source\": \"checkout_page\",   # where consent was collected\n",{"type":42,"tag":549,"props":1414,"children":1415},{"class":551,"line":625},[1416],{"type":42,"tag":549,"props":1417,"children":1418},{},[1419],{"type":48,"value":1420},"    \"ip_address\": \"203.0.113.42\",        # for web consent\n",{"type":42,"tag":549,"props":1422,"children":1423},{"class":551,"line":634},[1424],{"type":42,"tag":549,"props":1425,"children":1426},{},[1427],{"type":48,"value":1428},"    \"opted_out\": False,\n",{"type":42,"tag":549,"props":1430,"children":1431},{"class":551,"line":643},[1432],{"type":42,"tag":549,"props":1433,"children":1434},{},[1435],{"type":48,"value":1436},"    \"opt_out_timestamp\": None\n",{"type":42,"tag":549,"props":1438,"children":1439},{"class":551,"line":1061},[1440],{"type":42,"tag":549,"props":1441,"children":1442},{},[1443],{"type":48,"value":1444},"}\n",{"type":42,"tag":127,"props":1446,"children":1448},{"id":1447},"opt-out-handling",[1449],{"type":48,"value":1450},"Opt-Out Handling",{"type":42,"tag":263,"props":1452,"children":1453},{},[1454,1459,1464,1469,1474],{"type":42,"tag":267,"props":1455,"children":1456},{},[1457],{"type":48,"value":1458},"Process STOP\u002FCANCEL\u002FUNSUBSCRIBE\u002FEND\u002FQUIT keywords immediately",{"type":42,"tag":267,"props":1460,"children":1461},{},[1462],{"type":48,"value":1463},"Messaging Services handle keyword opt-out automatically for SMS",{"type":42,"tag":267,"props":1465,"children":1466},{},[1467],{"type":48,"value":1468},"For voice: maintain your own Do Not Call list",{"type":42,"tag":267,"props":1470,"children":1471},{},[1472],{"type":48,"value":1473},"For WhatsApp: handle via webhook when user blocks",{"type":42,"tag":267,"props":1475,"children":1476},{},[1477],{"type":48,"value":1478},"For email: SendGrid manages suppression lists automatically",{"type":42,"tag":112,"props":1480,"children":1481},{},[],{"type":42,"tag":43,"props":1483,"children":1485},{"id":1484},"cannot",[1486],{"type":48,"value":1487},"CANNOT",{"type":42,"tag":263,"props":1489,"children":1490},{},[1491,1501,1511,1537,1547,1557,1567],{"type":42,"tag":267,"props":1492,"children":1493},{},[1494,1499],{"type":42,"tag":57,"props":1495,"children":1496},{},[1497],{"type":48,"value":1498},"Cannot rely on Twilio to enforce compliance rules",{"type":48,"value":1500}," — Your application must implement TCPA, GDPR, PCI, and other rules. Twilio provides tools, not enforcement.",{"type":42,"tag":267,"props":1502,"children":1503},{},[1504,1509],{"type":42,"tag":57,"props":1505,"children":1506},{},[1507],{"type":48,"value":1508},"Cannot apply A2P 10DLC registration outside the US",{"type":48,"value":1510}," — Other countries have their own regimes",{"type":42,"tag":267,"props":1512,"children":1513},{},[1514,1519,1521,1527,1529,1535],{"type":42,"tag":57,"props":1515,"children":1516},{},[1517],{"type":48,"value":1518},"Cannot use public link shorteners (bit.ly, tinyurl, goo.gl, short.io, etc.)",{"type":48,"value":1520}," — Messages with public short links are categorically filtered by carriers. Use a branded\u002Fvanity short domain (e.g., ",{"type":42,"tag":75,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":48,"value":1526},"go.yourcompany.com",{"type":48,"value":1528},") configured in your Messaging Service. Twilio's shared ",{"type":42,"tag":75,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":48,"value":1534},"twil.io",{"type":48,"value":1536}," domain is not sufficient — you must register your own branded domain in Console under Messaging > Link Shortening.",{"type":42,"tag":267,"props":1538,"children":1539},{},[1540,1545],{"type":42,"tag":57,"props":1541,"children":1542},{},[1543],{"type":48,"value":1544},"Cannot reverse PCI Mode",{"type":48,"value":1546}," — Irreversible and account-wide once enabled",{"type":42,"tag":267,"props":1548,"children":1549},{},[1550,1555],{"type":42,"tag":57,"props":1551,"children":1552},{},[1553],{"type":48,"value":1554},"Cannot fully clear message logs via GDPR deletion",{"type":48,"value":1556}," — Twilio retains internal message logs for 400 days regardless of deletion requests",{"type":42,"tag":267,"props":1558,"children":1559},{},[1560,1565],{"type":42,"tag":57,"props":1561,"children":1562},{},[1563],{"type":48,"value":1564},"Cannot assume regulations are static",{"type":48,"value":1566}," — Compliance requirements change. Verify current regulations before launch.",{"type":42,"tag":267,"props":1568,"children":1569},{},[1570,1575],{"type":42,"tag":57,"props":1571,"children":1572},{},[1573],{"type":48,"value":1574},"Cannot apply this skill's guidance outside US\u002FEU",{"type":48,"value":1576}," — India TRAI DLT, Brazil LGPD, Australia Spam Act, and other jurisdictions require additional research",{"type":42,"tag":112,"props":1578,"children":1579},{},[],{"type":42,"tag":43,"props":1581,"children":1583},{"id":1582},"next-steps",[1584],{"type":48,"value":1585},"Next Steps",{"type":42,"tag":263,"props":1587,"children":1588},{},[1589,1604,1619,1633],{"type":42,"tag":267,"props":1590,"children":1591},{},[1592,1597,1599],{"type":42,"tag":57,"props":1593,"children":1594},{},[1595],{"type":48,"value":1596},"Registration before traffic works:",{"type":48,"value":1598}," ",{"type":42,"tag":75,"props":1600,"children":1602},{"className":1601},[],[1603],{"type":48,"value":88},{"type":42,"tag":267,"props":1605,"children":1606},{},[1607,1612,1613],{"type":42,"tag":57,"props":1608,"children":1609},{},[1610],{"type":48,"value":1611},"WhatsApp sender setup:",{"type":48,"value":1598},{"type":42,"tag":75,"props":1614,"children":1616},{"className":1615},[],[1617],{"type":48,"value":1618},"twilio-whatsapp-manage-senders",{"type":42,"tag":267,"props":1620,"children":1621},{},[1622,1627,1628],{"type":42,"tag":57,"props":1623,"children":1624},{},[1625],{"type":48,"value":1626},"Credential security:",{"type":48,"value":1598},{"type":42,"tag":75,"props":1629,"children":1631},{"className":1630},[],[1632],{"type":48,"value":784},{"type":42,"tag":267,"props":1634,"children":1635},{},[1636,1641,1642],{"type":42,"tag":57,"props":1637,"children":1638},{},[1639],{"type":48,"value":1640},"Account structure for PCI isolation:",{"type":48,"value":1598},{"type":42,"tag":75,"props":1643,"children":1645},{"className":1644},[],[1646],{"type":48,"value":712},{"type":42,"tag":1648,"props":1649,"children":1650},"style",{},[1651],{"type":48,"value":1652},"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":1654,"total":1775},[1655,1673,1689,1701,1721,1743,1763],{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"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},[1661,1664,1667,1670],{"name":1662,"slug":1663,"type":15},"Accessibility","accessibility",{"name":1665,"slug":1666,"type":15},"Charts","charts",{"name":1668,"slug":1669,"type":15},"Data Visualization","data-visualization",{"name":1671,"slug":1672,"type":15},"Design","design",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":25,"repoUrl":26,"updatedAt":1688},"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},[1679,1682,1685],{"name":1680,"slug":1681,"type":15},"Agents","agents",{"name":1683,"slug":1684,"type":15},"Browser Automation","browser-automation",{"name":1686,"slug":1687,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1690,"name":1690,"fn":1691,"description":1692,"org":1693,"tags":1694,"stars":25,"repoUrl":26,"updatedAt":1700},"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},[1695,1696,1699],{"name":1683,"slug":1684,"type":15},{"name":1697,"slug":1698,"type":15},"Local Development","local-development",{"name":1686,"slug":1687,"type":15},"2026-04-06T18:41:17.526867",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":25,"repoUrl":26,"updatedAt":1720},"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},[1707,1708,1711,1714,1717],{"name":1680,"slug":1681,"type":15},{"name":1709,"slug":1710,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1712,"slug":1713,"type":15},"SDK","sdk",{"name":1715,"slug":1716,"type":15},"Serverless","serverless",{"name":1718,"slug":1719,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1722,"name":1722,"fn":1723,"description":1724,"org":1725,"tags":1726,"stars":25,"repoUrl":26,"updatedAt":1742},"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},[1727,1730,1733,1736,1739],{"name":1728,"slug":1729,"type":15},"Frontend","frontend",{"name":1731,"slug":1732,"type":15},"React","react",{"name":1734,"slug":1735,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1737,"slug":1738,"type":15},"UI Components","ui-components",{"name":1740,"slug":1741,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1744,"name":1744,"fn":1745,"description":1746,"org":1747,"tags":1748,"stars":25,"repoUrl":26,"updatedAt":1762},"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},[1749,1752,1755,1758,1761],{"name":1750,"slug":1751,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1753,"slug":1754,"type":15},"Cost Optimization","cost-optimization",{"name":1756,"slug":1757,"type":15},"LLM","llm",{"name":1759,"slug":1760,"type":15},"Performance","performance",{"name":1740,"slug":1741,"type":15},"2026-04-06T18:40:44.377464",{"slug":1764,"name":1764,"fn":1765,"description":1766,"org":1767,"tags":1768,"stars":25,"repoUrl":26,"updatedAt":1774},"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},[1769,1770,1773],{"name":1753,"slug":1754,"type":15},{"name":1771,"slug":1772,"type":15},"Database","database",{"name":1756,"slug":1757,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1777,"total":1972},[1778,1797,1820,1837,1853,1870,1889,1901,1915,1929,1941,1956],{"slug":1779,"name":1779,"fn":1780,"description":1781,"org":1782,"tags":1783,"stars":1794,"repoUrl":1795,"updatedAt":1796},"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},[1784,1787,1790,1793],{"name":1785,"slug":1786,"type":15},"Documents","documents",{"name":1788,"slug":1789,"type":15},"Healthcare","healthcare",{"name":1791,"slug":1792,"type":15},"Insurance","insurance",{"name":17,"slug":18,"type":15},28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1798,"name":1798,"fn":1799,"description":1800,"org":1801,"tags":1802,"stars":1817,"repoUrl":1818,"updatedAt":1819},"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},[1803,1806,1808,1811,1814],{"name":1804,"slug":1805,"type":15},".NET","dotnet",{"name":1807,"slug":1798,"type":15},"ASP.NET Core",{"name":1809,"slug":1810,"type":15},"Blazor","blazor",{"name":1812,"slug":1813,"type":15},"C#","csharp",{"name":1815,"slug":1816,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1821,"name":1821,"fn":1822,"description":1823,"org":1824,"tags":1825,"stars":1817,"repoUrl":1818,"updatedAt":1836},"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},[1826,1829,1832,1835],{"name":1827,"slug":1828,"type":15},"Apps SDK","apps-sdk",{"name":1830,"slug":1831,"type":15},"ChatGPT","chatgpt",{"name":1833,"slug":1834,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1838,"name":1838,"fn":1839,"description":1840,"org":1841,"tags":1842,"stars":1817,"repoUrl":1818,"updatedAt":1852},"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},[1843,1846,1849],{"name":1844,"slug":1845,"type":15},"API Development","api-development",{"name":1847,"slug":1848,"type":15},"CLI","cli",{"name":1850,"slug":1851,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1854,"name":1854,"fn":1855,"description":1856,"org":1857,"tags":1858,"stars":1817,"repoUrl":1818,"updatedAt":1869},"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},[1859,1862,1865,1866],{"name":1860,"slug":1861,"type":15},"Cloudflare","cloudflare",{"name":1863,"slug":1864,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1709,"slug":1710,"type":15},{"name":1867,"slug":1868,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1871,"name":1871,"fn":1872,"description":1873,"org":1874,"tags":1875,"stars":1817,"repoUrl":1818,"updatedAt":1888},"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},[1876,1879,1882,1885],{"name":1877,"slug":1878,"type":15},"Productivity","productivity",{"name":1880,"slug":1881,"type":15},"Project Management","project-management",{"name":1883,"slug":1884,"type":15},"Strategy","strategy",{"name":1886,"slug":1887,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1890,"name":1890,"fn":1891,"description":1892,"org":1893,"tags":1894,"stars":1817,"repoUrl":1818,"updatedAt":1900},"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},[1895,1896,1898,1899],{"name":1671,"slug":1672,"type":15},{"name":1897,"slug":1890,"type":15},"Figma",{"name":1728,"slug":1729,"type":15},{"name":1833,"slug":1834,"type":15},"2026-04-12T05:06:47.939943",{"slug":1902,"name":1902,"fn":1903,"description":1904,"org":1905,"tags":1906,"stars":1817,"repoUrl":1818,"updatedAt":1914},"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},[1907,1908,1911,1912,1913],{"name":1671,"slug":1672,"type":15},{"name":1909,"slug":1910,"type":15},"Design System","design-system",{"name":1897,"slug":1890,"type":15},{"name":1728,"slug":1729,"type":15},{"name":1737,"slug":1738,"type":15},"2026-05-10T05:59:52.971881",{"slug":1916,"name":1916,"fn":1917,"description":1918,"org":1919,"tags":1920,"stars":1817,"repoUrl":1818,"updatedAt":1928},"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},[1921,1922,1923,1926,1927],{"name":1671,"slug":1672,"type":15},{"name":1909,"slug":1910,"type":15},{"name":1924,"slug":1925,"type":15},"Documentation","documentation",{"name":1897,"slug":1890,"type":15},{"name":1728,"slug":1729,"type":15},"2026-05-16T06:07:47.821474",{"slug":1930,"name":1930,"fn":1931,"description":1932,"org":1933,"tags":1934,"stars":1817,"repoUrl":1818,"updatedAt":1940},"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},[1935,1936,1937,1938,1939],{"name":1671,"slug":1672,"type":15},{"name":1897,"slug":1890,"type":15},{"name":1728,"slug":1729,"type":15},{"name":1737,"slug":1738,"type":15},{"name":1815,"slug":1816,"type":15},"2026-05-16T06:07:40.583615",{"slug":1942,"name":1942,"fn":1943,"description":1944,"org":1945,"tags":1946,"stars":1817,"repoUrl":1818,"updatedAt":1955},"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},[1947,1950,1951,1954],{"name":1948,"slug":1949,"type":15},"Animation","animation",{"name":1850,"slug":1851,"type":15},{"name":1952,"slug":1953,"type":15},"Creative","creative",{"name":1671,"slug":1672,"type":15},"2026-05-02T05:31:48.48485",{"slug":1957,"name":1957,"fn":1958,"description":1959,"org":1960,"tags":1961,"stars":1817,"repoUrl":1818,"updatedAt":1971},"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},[1962,1963,1964,1967,1970],{"name":1952,"slug":1953,"type":15},{"name":1671,"slug":1672,"type":15},{"name":1965,"slug":1966,"type":15},"Image Generation","image-generation",{"name":1968,"slug":1969,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]