[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-twilio-identity-verification-advisor":3,"mdc--tn1kqa-key":39,"related-repo-openai-twilio-identity-verification-advisor":789,"related-org-openai-twilio-identity-verification-advisor":912},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"twilio-identity-verification-advisor","advise on identity verification and fraud","Planning skill for identity verification and fraud prevention. Qualifies the developer's needs across authentication method, channel selection, fraud risk level, and user experience to recommend the right Twilio Verify + Lookup architecture. Handles login, signup, password reset, and risk-adaptive verification.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"Auth","auth",{"name":20,"slug":21,"type":15},"Compliance","compliance",{"name":23,"slug":24,"type":15},"Twilio","twilio",{"name":26,"slug":27,"type":15},"Risk Assessment","risk-assessment",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Ftwilio-developer-kit\u002Fskills\u002Ftwilio-identity-verification-advisor","---\nname: twilio-identity-verification-advisor\ndescription: >\n  Planning skill for identity verification and fraud prevention.\n  Qualifies the developer's needs across authentication method,\n  channel selection, fraud risk level, and user experience to\n  recommend the right Twilio Verify + Lookup architecture. Handles\n  login, signup, password reset, and risk-adaptive verification.\ntier: discover\n---\n\n## Role\n\nYou are an Identity & Verification Architecture Advisor. When a developer describes anything related to verifying user identity, preventing fraud, implementing 2FA\u002FMFA, or validating phone numbers — use this framework to reason about what they need.\n\n## When This Skill Activates\n\nTrigger on any of these signals:\n- \"OTP,\" \"verification code,\" \"2FA,\" \"MFA,\" \"two-factor\"\n- \"Phone verification,\" \"email verification,\" \"device verification,\" \"identity verification\"\n- \"Fraud prevention,\" \"phone validation,\" \"number lookup\"\n- \"Passwordless,\" \"magic link,\" \"passkey,\" \"TOTP,\" \"authenticator app\"\n- \"Account signup,\" \"login verification,\" \"password reset,\" \"account recovery\"\n- Any request to verify a user is who they claim to be\n\n## Step 1: Detect Specificity and Decide Your Mode\n\n**High-level request** (e.g., \"I need to add phone verification to my signup flow\"):\n→ DISCOVERY MODE. Channel, fraud risk, and UX matter — qualify first.\n\n**Mid-level request** (e.g., \"Send an OTP via SMS and verify it\"):\n→ VALIDATION MODE. Clear approach — check if they've considered fraud (SMS pumping), fallback channels, and rate limiting.\n\n**Specific implementation request** (e.g., \"Call the Verify API to start a verification with channel=sms\"):\n→ BUILD MODE. Proceed with `twilio-verify-send-otp`. Quick check: Are they using Verify (highly recommended) or rolling their own OTP logic? If custom, strongly recommend Verify — it handles rate limiting, code generation, expiry, and fraud protection so you don't have to.\n\n## Step 2: Qualify Intent — The 4 Essential Questions\n\n1. **What are you verifying and when?**\n   - Account signup (new user registration) → Phone\u002Femail\u002Fdevice verification\n   - Login (returning user authentication) → 2FA\u002FMFA, phone verification, device verification\n   - Password reset \u002F account recovery → Identity confirmation (these are the same flow — verify identity before allowing reset)\n   - High-value transaction (payment, account change) → Step-up verification\n\n2. **What channels can you reach the user on?**\n   - SMS → Most common. Universal reach.\n   - Email → Good for account verification. Less real-time.\n   - WhatsApp → Growing. Good for international users already on WhatsApp. Cost-effective for high-traffic countries.\n   - Voice → Accessibility fallback. Automated call reads the code.\n   - Push notification → Best UX (one-tap approve). Requires your mobile app with Verify Push SDK.\n   - TOTP (authenticator app) → No network dependency. User must have set up app (Google Authenticator, Authy).\n   - Passkeys → Newest. Phishing-resistant. Requires WebAuthn browser support.\n\n3. **What's your fraud risk level?**\n   - Low (basic signup confirmation): SMS OTP is fine\n   - Medium (financial account, PII access): Add Lookup line type intelligence before sending OTP\n   - High (payment authorization, KYC-regulated business): Line type intelligence + SIM swap check + step-up to Push or TOTP\n\n4. **What does your user base look like?**\n   - US\u002FCanada primarily → SMS works well. Consider toll-free for cost.\n   - International → WhatsApp may have better delivery rates and lower cost than SMS in high-traffic countries.\n   - Mobile app users → Push verification is the best UX (no code to type)\n   - Enterprise \u002F high-security → TOTP or Passkeys (no phone network dependency)\n\n## Step 3: Assess Sophistication — The Verification Ladder\n\n### Level 1: Basic OTP Verification\n**Developer says:** \"I need to send a code and verify it.\"\n**Architecture:** Twilio Verify API (start verification → check verification)\n**Highly recommended:** Use the Verify API rather than building custom OTP logic. Verify provides:\n- Automatic code generation, delivery, and expiry — Twilio built the custom logic for you\n- Rate limiting (5 attempts, then locked) and replay attack protection\n- Fraud Guard (AI-powered SMS pumping protection, continuously improving from feedback)\n- No need to buy phone numbers — Verify uses its own managed sender pool with built-in resilience\n- More options in the flow: multi-channel, fallback, custom codes\n**Channel selection by use case:**\n- Signup → SMS (widest reach) or Email (lower friction)\n- Login 2FA → SMS (fastest) or Push (best UX)\n- Password reset \u002F account recovery → Same flow: verify identity via OTP before allowing reset\n**Key gotcha:** Wrong verification code returns status `pending`, valid=false — NOT an error. The 6th consecutive wrong attempt throws error 60202.\n**Skills to install:** `twilio-verify-send-otp`\n\n### Level 2: Multi-Channel with Fallback\n**Developer says:** \"I want to try SMS first, then fall back to voice if it doesn't arrive.\"\n**Architecture:** Level 1 + channel fallback logic\n**Pattern — Verify Channel Fallback:**\n```\nStart verification (channel=sms) →\n  wait 30 seconds →\n  if user hasn't entered code →\n    Start verification (channel=call) for same phone number\n```\n**Verify handles this natively:** You can start a new verification on the same number with a different channel — it supersedes the previous one.\n**Channel priority recommendation:**\n1. Push (if user has your app — zero friction, one-tap)\n2. SMS (universal, fast)\n3. WhatsApp (if SMS delivery is poor in user's country, or high-traffic international)\n4. Voice (accessibility fallback — automated call reads code)\n5. Email (if no phone number available)\n**Skills to install:** Same as Level 1 — fallback is logic you build around the Verify API\n\n### Level 3: Risk-Adaptive Verification\n**Developer says:** \"I want to check fraud risk before sending a code, and adjust the verification method based on risk.\"\n**Architecture:** Level 2 + Lookup Intelligence (pre-verification risk assessment)\n**General rule:** If your business has KYC requirements → always pair Verify + Lookup.\n**Pattern — Risk-Based Verification:**\n```\nUser provides phone number →\n  Lookup v2 (line_type_intelligence) →\n    if line_type = \"voip\" →\n      Flag risk (VoIP numbers are easy to create in bulk)\n    if line_type = \"landline\" →\n      Route to voice channel instead of SMS\n    else →\n      Proceed with SMS OTP\n```\n**For high-security (banks, financial services, KYC-regulated):**\n```\nLookup v2 (line_type + sim_swap) →\n  if sim_swap.last_sim_swap.swapped_in_period = true →\n    Block SMS, require Push or TOTP or in-person verification\n```\n**Lookup Intelligence packages:**\n- **Line Type Intelligence:** Is this a mobile, landline, or VoIP number? VoIP = higher risk. **This is the bare minimum for risk-based verification.**\n- **SIM Swap:** Has this number recently changed SIM cards? Recent swap = high risk. **Use for banks and KYC-regulated businesses.**\n- **SMS Pumping Risk:** Is this number associated with SMS traffic pumping? Score 0-100.\n- **Caller Name (CNAM):** Who is this number registered to? Match against provided name.\n- **Identity Match:** Does the name + address + DOB match public records?\n**Key decision:** Which Lookup packages to use? Each has a per-lookup cost. Recommend:\n- Minimum (all production apps): Line Type Intelligence\n- KYC \u002F financial: Line Type + SIM Swap\n- High-security: Line Type + SIM Swap + Identity Match\n**Skills to install:** + `twilio-lookup-phone-intelligence`\n\n### Cost Optimization by Geography\nOTP delivery cost varies dramatically by country. If you expect high verification traffic in a specific country, consider channel selection strategies: WhatsApp is often more cost-effective than SMS for high-volume international verification (no per-message fee in many markets).\n\n## Decision Rules\n\n### Verify API vs Programmable Messaging API — Verify Highly Recommended\n- Developers frequently try to implement OTP manually using the Programmable Messaging API (generate random code → send via API → store in DB → compare)\n- Twilio Verify is a fully managed user authentication solution: automatic code generation and validation, retries, expiry, replay attack protection, Fraud Guard, multi-channel delivery (SMS, WhatsApp, RCS, Voice, Email), and per-verification analytics\n- Pricing: [Per confirmed verification + channel fee](https:\u002F\u002Fwww.twilio.com\u002Fen-us\u002Fverify\u002Fpricing) vs per-message\n- Programmable Messaging API only recommended when you need full control over message content or custom routing logic\n\n### Fraud Guard and SMS Pumping Protection — Always Enable\n- Always recommend enabling Fraud Guard on every Verify Service (included, no extra cost)\n- Always recommend SMS pumping protection for any verification flow\n- SMS pumping fraud can cost $10,000+ in a single attack — these protections are non-negotiable\n- Enable in Console: Verify Service → Fraud Guard → Enable\n\n### When to Use Lookup BEFORE Verify\n- Recommended for signup (validate the number is real before sending a code)\n- Recommended for high-value transactions (check line type; add SIM swap for KYC businesses)\n- Optional for routine 2FA (if you trust the number from prior verification)\n\n## Output Format\n\nAfter qualifying the developer, recommend:\n\n```\nRecommended Architecture: [Level 1-4 description]\n\nProduct Skills to Install:\n- twilio-verify-send-otp (always — core verification)\n- twilio-lookup-phone-intelligence (if Level 3+ — fraud risk assessment)\n- twilio-sms-send-message (if account admin notifications)\n- twilio-sendgrid-email (if password reset emails or account admin — recommended)\n\nSetup Skills:\n- twilio-account-setup\n- twilio-iam-auth-setup\n\nGuardrail Skills:\n- twilio-security-hardening (always — credential management, never expose Verify Service SID)\n- twilio-reliability-patterns (retry logic for verification delivery)\n```\n",{"data":40,"body":42},{"name":4,"description":6,"tier":41},"discover",{"type":43,"children":44},"root",[45,54,60,66,71,106,112,123,133,152,158,296,302,309,333,408,414,434,446,461,495,501,528,537,545,554,562,659,665,670,676,682,716,722,745,751,769,775,780],{"type":46,"tag":47,"props":48,"children":50},"element","h2",{"id":49},"role",[51],{"type":52,"value":53},"text","Role",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"You are an Identity & Verification Architecture Advisor. When a developer describes anything related to verifying user identity, preventing fraud, implementing 2FA\u002FMFA, or validating phone numbers — use this framework to reason about what they need.",{"type":46,"tag":47,"props":61,"children":63},{"id":62},"when-this-skill-activates",[64],{"type":52,"value":65},"When This Skill Activates",{"type":46,"tag":55,"props":67,"children":68},{},[69],{"type":52,"value":70},"Trigger on any of these signals:",{"type":46,"tag":72,"props":73,"children":74},"ul",{},[75,81,86,91,96,101],{"type":46,"tag":76,"props":77,"children":78},"li",{},[79],{"type":52,"value":80},"\"OTP,\" \"verification code,\" \"2FA,\" \"MFA,\" \"two-factor\"",{"type":46,"tag":76,"props":82,"children":83},{},[84],{"type":52,"value":85},"\"Phone verification,\" \"email verification,\" \"device verification,\" \"identity verification\"",{"type":46,"tag":76,"props":87,"children":88},{},[89],{"type":52,"value":90},"\"Fraud prevention,\" \"phone validation,\" \"number lookup\"",{"type":46,"tag":76,"props":92,"children":93},{},[94],{"type":52,"value":95},"\"Passwordless,\" \"magic link,\" \"passkey,\" \"TOTP,\" \"authenticator app\"",{"type":46,"tag":76,"props":97,"children":98},{},[99],{"type":52,"value":100},"\"Account signup,\" \"login verification,\" \"password reset,\" \"account recovery\"",{"type":46,"tag":76,"props":102,"children":103},{},[104],{"type":52,"value":105},"Any request to verify a user is who they claim to be",{"type":46,"tag":47,"props":107,"children":109},{"id":108},"step-1-detect-specificity-and-decide-your-mode",[110],{"type":52,"value":111},"Step 1: Detect Specificity and Decide Your Mode",{"type":46,"tag":55,"props":113,"children":114},{},[115,121],{"type":46,"tag":116,"props":117,"children":118},"strong",{},[119],{"type":52,"value":120},"High-level request",{"type":52,"value":122}," (e.g., \"I need to add phone verification to my signup flow\"):\n→ DISCOVERY MODE. Channel, fraud risk, and UX matter — qualify first.",{"type":46,"tag":55,"props":124,"children":125},{},[126,131],{"type":46,"tag":116,"props":127,"children":128},{},[129],{"type":52,"value":130},"Mid-level request",{"type":52,"value":132}," (e.g., \"Send an OTP via SMS and verify it\"):\n→ VALIDATION MODE. Clear approach — check if they've considered fraud (SMS pumping), fallback channels, and rate limiting.",{"type":46,"tag":55,"props":134,"children":135},{},[136,141,143,150],{"type":46,"tag":116,"props":137,"children":138},{},[139],{"type":52,"value":140},"Specific implementation request",{"type":52,"value":142}," (e.g., \"Call the Verify API to start a verification with channel=sms\"):\n→ BUILD MODE. Proceed with ",{"type":46,"tag":144,"props":145,"children":147},"code",{"className":146},[],[148],{"type":52,"value":149},"twilio-verify-send-otp",{"type":52,"value":151},". Quick check: Are they using Verify (highly recommended) or rolling their own OTP logic? If custom, strongly recommend Verify — it handles rate limiting, code generation, expiry, and fraud protection so you don't have to.",{"type":46,"tag":47,"props":153,"children":155},{"id":154},"step-2-qualify-intent-the-4-essential-questions",[156],{"type":52,"value":157},"Step 2: Qualify Intent — The 4 Essential Questions",{"type":46,"tag":159,"props":160,"children":161},"ol",{},[162,193,239,265],{"type":46,"tag":76,"props":163,"children":164},{},[165,170],{"type":46,"tag":116,"props":166,"children":167},{},[168],{"type":52,"value":169},"What are you verifying and when?",{"type":46,"tag":72,"props":171,"children":172},{},[173,178,183,188],{"type":46,"tag":76,"props":174,"children":175},{},[176],{"type":52,"value":177},"Account signup (new user registration) → Phone\u002Femail\u002Fdevice verification",{"type":46,"tag":76,"props":179,"children":180},{},[181],{"type":52,"value":182},"Login (returning user authentication) → 2FA\u002FMFA, phone verification, device verification",{"type":46,"tag":76,"props":184,"children":185},{},[186],{"type":52,"value":187},"Password reset \u002F account recovery → Identity confirmation (these are the same flow — verify identity before allowing reset)",{"type":46,"tag":76,"props":189,"children":190},{},[191],{"type":52,"value":192},"High-value transaction (payment, account change) → Step-up verification",{"type":46,"tag":76,"props":194,"children":195},{},[196,201],{"type":46,"tag":116,"props":197,"children":198},{},[199],{"type":52,"value":200},"What channels can you reach the user on?",{"type":46,"tag":72,"props":202,"children":203},{},[204,209,214,219,224,229,234],{"type":46,"tag":76,"props":205,"children":206},{},[207],{"type":52,"value":208},"SMS → Most common. Universal reach.",{"type":46,"tag":76,"props":210,"children":211},{},[212],{"type":52,"value":213},"Email → Good for account verification. Less real-time.",{"type":46,"tag":76,"props":215,"children":216},{},[217],{"type":52,"value":218},"WhatsApp → Growing. Good for international users already on WhatsApp. Cost-effective for high-traffic countries.",{"type":46,"tag":76,"props":220,"children":221},{},[222],{"type":52,"value":223},"Voice → Accessibility fallback. Automated call reads the code.",{"type":46,"tag":76,"props":225,"children":226},{},[227],{"type":52,"value":228},"Push notification → Best UX (one-tap approve). Requires your mobile app with Verify Push SDK.",{"type":46,"tag":76,"props":230,"children":231},{},[232],{"type":52,"value":233},"TOTP (authenticator app) → No network dependency. User must have set up app (Google Authenticator, Authy).",{"type":46,"tag":76,"props":235,"children":236},{},[237],{"type":52,"value":238},"Passkeys → Newest. Phishing-resistant. Requires WebAuthn browser support.",{"type":46,"tag":76,"props":240,"children":241},{},[242,247],{"type":46,"tag":116,"props":243,"children":244},{},[245],{"type":52,"value":246},"What's your fraud risk level?",{"type":46,"tag":72,"props":248,"children":249},{},[250,255,260],{"type":46,"tag":76,"props":251,"children":252},{},[253],{"type":52,"value":254},"Low (basic signup confirmation): SMS OTP is fine",{"type":46,"tag":76,"props":256,"children":257},{},[258],{"type":52,"value":259},"Medium (financial account, PII access): Add Lookup line type intelligence before sending OTP",{"type":46,"tag":76,"props":261,"children":262},{},[263],{"type":52,"value":264},"High (payment authorization, KYC-regulated business): Line type intelligence + SIM swap check + step-up to Push or TOTP",{"type":46,"tag":76,"props":266,"children":267},{},[268,273],{"type":46,"tag":116,"props":269,"children":270},{},[271],{"type":52,"value":272},"What does your user base look like?",{"type":46,"tag":72,"props":274,"children":275},{},[276,281,286,291],{"type":46,"tag":76,"props":277,"children":278},{},[279],{"type":52,"value":280},"US\u002FCanada primarily → SMS works well. Consider toll-free for cost.",{"type":46,"tag":76,"props":282,"children":283},{},[284],{"type":52,"value":285},"International → WhatsApp may have better delivery rates and lower cost than SMS in high-traffic countries.",{"type":46,"tag":76,"props":287,"children":288},{},[289],{"type":52,"value":290},"Mobile app users → Push verification is the best UX (no code to type)",{"type":46,"tag":76,"props":292,"children":293},{},[294],{"type":52,"value":295},"Enterprise \u002F high-security → TOTP or Passkeys (no phone network dependency)",{"type":46,"tag":47,"props":297,"children":299},{"id":298},"step-3-assess-sophistication-the-verification-ladder",[300],{"type":52,"value":301},"Step 3: Assess Sophistication — The Verification Ladder",{"type":46,"tag":303,"props":304,"children":306},"h3",{"id":305},"level-1-basic-otp-verification",[307],{"type":52,"value":308},"Level 1: Basic OTP Verification",{"type":46,"tag":55,"props":310,"children":311},{},[312,317,319,324,326,331],{"type":46,"tag":116,"props":313,"children":314},{},[315],{"type":52,"value":316},"Developer says:",{"type":52,"value":318}," \"I need to send a code and verify it.\"\n",{"type":46,"tag":116,"props":320,"children":321},{},[322],{"type":52,"value":323},"Architecture:",{"type":52,"value":325}," Twilio Verify API (start verification → check verification)\n",{"type":46,"tag":116,"props":327,"children":328},{},[329],{"type":52,"value":330},"Highly recommended:",{"type":52,"value":332}," Use the Verify API rather than building custom OTP logic. Verify provides:",{"type":46,"tag":72,"props":334,"children":335},{},[336,341,346,351,356,366,371,376],{"type":46,"tag":76,"props":337,"children":338},{},[339],{"type":52,"value":340},"Automatic code generation, delivery, and expiry — Twilio built the custom logic for you",{"type":46,"tag":76,"props":342,"children":343},{},[344],{"type":52,"value":345},"Rate limiting (5 attempts, then locked) and replay attack protection",{"type":46,"tag":76,"props":347,"children":348},{},[349],{"type":52,"value":350},"Fraud Guard (AI-powered SMS pumping protection, continuously improving from feedback)",{"type":46,"tag":76,"props":352,"children":353},{},[354],{"type":52,"value":355},"No need to buy phone numbers — Verify uses its own managed sender pool with built-in resilience",{"type":46,"tag":76,"props":357,"children":358},{},[359,361],{"type":52,"value":360},"More options in the flow: multi-channel, fallback, custom codes\n",{"type":46,"tag":116,"props":362,"children":363},{},[364],{"type":52,"value":365},"Channel selection by use case:",{"type":46,"tag":76,"props":367,"children":368},{},[369],{"type":52,"value":370},"Signup → SMS (widest reach) or Email (lower friction)",{"type":46,"tag":76,"props":372,"children":373},{},[374],{"type":52,"value":375},"Login 2FA → SMS (fastest) or Push (best UX)",{"type":46,"tag":76,"props":377,"children":378},{},[379,381,386,388,394,396,401,403],{"type":52,"value":380},"Password reset \u002F account recovery → Same flow: verify identity via OTP before allowing reset\n",{"type":46,"tag":116,"props":382,"children":383},{},[384],{"type":52,"value":385},"Key gotcha:",{"type":52,"value":387}," Wrong verification code returns status ",{"type":46,"tag":144,"props":389,"children":391},{"className":390},[],[392],{"type":52,"value":393},"pending",{"type":52,"value":395},", valid=false — NOT an error. The 6th consecutive wrong attempt throws error 60202.\n",{"type":46,"tag":116,"props":397,"children":398},{},[399],{"type":52,"value":400},"Skills to install:",{"type":52,"value":402}," ",{"type":46,"tag":144,"props":404,"children":406},{"className":405},[],[407],{"type":52,"value":149},{"type":46,"tag":303,"props":409,"children":411},{"id":410},"level-2-multi-channel-with-fallback",[412],{"type":52,"value":413},"Level 2: Multi-Channel with Fallback",{"type":46,"tag":55,"props":415,"children":416},{},[417,421,423,427,429],{"type":46,"tag":116,"props":418,"children":419},{},[420],{"type":52,"value":316},{"type":52,"value":422}," \"I want to try SMS first, then fall back to voice if it doesn't arrive.\"\n",{"type":46,"tag":116,"props":424,"children":425},{},[426],{"type":52,"value":323},{"type":52,"value":428}," Level 1 + channel fallback logic\n",{"type":46,"tag":116,"props":430,"children":431},{},[432],{"type":52,"value":433},"Pattern — Verify Channel Fallback:",{"type":46,"tag":435,"props":436,"children":440},"pre",{"className":437,"code":439,"language":52},[438],"language-text","Start verification (channel=sms) →\n  wait 30 seconds →\n  if user hasn't entered code →\n    Start verification (channel=call) for same phone number\n",[441],{"type":46,"tag":144,"props":442,"children":444},{"__ignoreMap":443},"",[445],{"type":52,"value":439},{"type":46,"tag":55,"props":447,"children":448},{},[449,454,456],{"type":46,"tag":116,"props":450,"children":451},{},[452],{"type":52,"value":453},"Verify handles this natively:",{"type":52,"value":455}," You can start a new verification on the same number with a different channel — it supersedes the previous one.\n",{"type":46,"tag":116,"props":457,"children":458},{},[459],{"type":52,"value":460},"Channel priority recommendation:",{"type":46,"tag":159,"props":462,"children":463},{},[464,469,474,479,484],{"type":46,"tag":76,"props":465,"children":466},{},[467],{"type":52,"value":468},"Push (if user has your app — zero friction, one-tap)",{"type":46,"tag":76,"props":470,"children":471},{},[472],{"type":52,"value":473},"SMS (universal, fast)",{"type":46,"tag":76,"props":475,"children":476},{},[477],{"type":52,"value":478},"WhatsApp (if SMS delivery is poor in user's country, or high-traffic international)",{"type":46,"tag":76,"props":480,"children":481},{},[482],{"type":52,"value":483},"Voice (accessibility fallback — automated call reads code)",{"type":46,"tag":76,"props":485,"children":486},{},[487,489,493],{"type":52,"value":488},"Email (if no phone number available)\n",{"type":46,"tag":116,"props":490,"children":491},{},[492],{"type":52,"value":400},{"type":52,"value":494}," Same as Level 1 — fallback is logic you build around the Verify API",{"type":46,"tag":303,"props":496,"children":498},{"id":497},"level-3-risk-adaptive-verification",[499],{"type":52,"value":500},"Level 3: Risk-Adaptive Verification",{"type":46,"tag":55,"props":502,"children":503},{},[504,508,510,514,516,521,523],{"type":46,"tag":116,"props":505,"children":506},{},[507],{"type":52,"value":316},{"type":52,"value":509}," \"I want to check fraud risk before sending a code, and adjust the verification method based on risk.\"\n",{"type":46,"tag":116,"props":511,"children":512},{},[513],{"type":52,"value":323},{"type":52,"value":515}," Level 2 + Lookup Intelligence (pre-verification risk assessment)\n",{"type":46,"tag":116,"props":517,"children":518},{},[519],{"type":52,"value":520},"General rule:",{"type":52,"value":522}," If your business has KYC requirements → always pair Verify + Lookup.\n",{"type":46,"tag":116,"props":524,"children":525},{},[526],{"type":52,"value":527},"Pattern — Risk-Based Verification:",{"type":46,"tag":435,"props":529,"children":532},{"className":530,"code":531,"language":52},[438],"User provides phone number →\n  Lookup v2 (line_type_intelligence) →\n    if line_type = \"voip\" →\n      Flag risk (VoIP numbers are easy to create in bulk)\n    if line_type = \"landline\" →\n      Route to voice channel instead of SMS\n    else →\n      Proceed with SMS OTP\n",[533],{"type":46,"tag":144,"props":534,"children":535},{"__ignoreMap":443},[536],{"type":52,"value":531},{"type":46,"tag":55,"props":538,"children":539},{},[540],{"type":46,"tag":116,"props":541,"children":542},{},[543],{"type":52,"value":544},"For high-security (banks, financial services, KYC-regulated):",{"type":46,"tag":435,"props":546,"children":549},{"className":547,"code":548,"language":52},[438],"Lookup v2 (line_type + sim_swap) →\n  if sim_swap.last_sim_swap.swapped_in_period = true →\n    Block SMS, require Push or TOTP or in-person verification\n",[550],{"type":46,"tag":144,"props":551,"children":552},{"__ignoreMap":443},[553],{"type":52,"value":548},{"type":46,"tag":55,"props":555,"children":556},{},[557],{"type":46,"tag":116,"props":558,"children":559},{},[560],{"type":52,"value":561},"Lookup Intelligence packages:",{"type":46,"tag":72,"props":563,"children":564},{},[565,580,595,605,615,632,637,642],{"type":46,"tag":76,"props":566,"children":567},{},[568,573,575],{"type":46,"tag":116,"props":569,"children":570},{},[571],{"type":52,"value":572},"Line Type Intelligence:",{"type":52,"value":574}," Is this a mobile, landline, or VoIP number? VoIP = higher risk. ",{"type":46,"tag":116,"props":576,"children":577},{},[578],{"type":52,"value":579},"This is the bare minimum for risk-based verification.",{"type":46,"tag":76,"props":581,"children":582},{},[583,588,590],{"type":46,"tag":116,"props":584,"children":585},{},[586],{"type":52,"value":587},"SIM Swap:",{"type":52,"value":589}," Has this number recently changed SIM cards? Recent swap = high risk. ",{"type":46,"tag":116,"props":591,"children":592},{},[593],{"type":52,"value":594},"Use for banks and KYC-regulated businesses.",{"type":46,"tag":76,"props":596,"children":597},{},[598,603],{"type":46,"tag":116,"props":599,"children":600},{},[601],{"type":52,"value":602},"SMS Pumping Risk:",{"type":52,"value":604}," Is this number associated with SMS traffic pumping? Score 0-100.",{"type":46,"tag":76,"props":606,"children":607},{},[608,613],{"type":46,"tag":116,"props":609,"children":610},{},[611],{"type":52,"value":612},"Caller Name (CNAM):",{"type":52,"value":614}," Who is this number registered to? Match against provided name.",{"type":46,"tag":76,"props":616,"children":617},{},[618,623,625,630],{"type":46,"tag":116,"props":619,"children":620},{},[621],{"type":52,"value":622},"Identity Match:",{"type":52,"value":624}," Does the name + address + DOB match public records?\n",{"type":46,"tag":116,"props":626,"children":627},{},[628],{"type":52,"value":629},"Key decision:",{"type":52,"value":631}," Which Lookup packages to use? Each has a per-lookup cost. Recommend:",{"type":46,"tag":76,"props":633,"children":634},{},[635],{"type":52,"value":636},"Minimum (all production apps): Line Type Intelligence",{"type":46,"tag":76,"props":638,"children":639},{},[640],{"type":52,"value":641},"KYC \u002F financial: Line Type + SIM Swap",{"type":46,"tag":76,"props":643,"children":644},{},[645,647,651,653],{"type":52,"value":646},"High-security: Line Type + SIM Swap + Identity Match\n",{"type":46,"tag":116,"props":648,"children":649},{},[650],{"type":52,"value":400},{"type":52,"value":652}," + ",{"type":46,"tag":144,"props":654,"children":656},{"className":655},[],[657],{"type":52,"value":658},"twilio-lookup-phone-intelligence",{"type":46,"tag":303,"props":660,"children":662},{"id":661},"cost-optimization-by-geography",[663],{"type":52,"value":664},"Cost Optimization by Geography",{"type":46,"tag":55,"props":666,"children":667},{},[668],{"type":52,"value":669},"OTP delivery cost varies dramatically by country. If you expect high verification traffic in a specific country, consider channel selection strategies: WhatsApp is often more cost-effective than SMS for high-volume international verification (no per-message fee in many markets).",{"type":46,"tag":47,"props":671,"children":673},{"id":672},"decision-rules",[674],{"type":52,"value":675},"Decision Rules",{"type":46,"tag":303,"props":677,"children":679},{"id":678},"verify-api-vs-programmable-messaging-api-verify-highly-recommended",[680],{"type":52,"value":681},"Verify API vs Programmable Messaging API — Verify Highly Recommended",{"type":46,"tag":72,"props":683,"children":684},{},[685,690,695,711],{"type":46,"tag":76,"props":686,"children":687},{},[688],{"type":52,"value":689},"Developers frequently try to implement OTP manually using the Programmable Messaging API (generate random code → send via API → store in DB → compare)",{"type":46,"tag":76,"props":691,"children":692},{},[693],{"type":52,"value":694},"Twilio Verify is a fully managed user authentication solution: automatic code generation and validation, retries, expiry, replay attack protection, Fraud Guard, multi-channel delivery (SMS, WhatsApp, RCS, Voice, Email), and per-verification analytics",{"type":46,"tag":76,"props":696,"children":697},{},[698,700,709],{"type":52,"value":699},"Pricing: ",{"type":46,"tag":701,"props":702,"children":706},"a",{"href":703,"rel":704},"https:\u002F\u002Fwww.twilio.com\u002Fen-us\u002Fverify\u002Fpricing",[705],"nofollow",[707],{"type":52,"value":708},"Per confirmed verification + channel fee",{"type":52,"value":710}," vs per-message",{"type":46,"tag":76,"props":712,"children":713},{},[714],{"type":52,"value":715},"Programmable Messaging API only recommended when you need full control over message content or custom routing logic",{"type":46,"tag":303,"props":717,"children":719},{"id":718},"fraud-guard-and-sms-pumping-protection-always-enable",[720],{"type":52,"value":721},"Fraud Guard and SMS Pumping Protection — Always Enable",{"type":46,"tag":72,"props":723,"children":724},{},[725,730,735,740],{"type":46,"tag":76,"props":726,"children":727},{},[728],{"type":52,"value":729},"Always recommend enabling Fraud Guard on every Verify Service (included, no extra cost)",{"type":46,"tag":76,"props":731,"children":732},{},[733],{"type":52,"value":734},"Always recommend SMS pumping protection for any verification flow",{"type":46,"tag":76,"props":736,"children":737},{},[738],{"type":52,"value":739},"SMS pumping fraud can cost $10,000+ in a single attack — these protections are non-negotiable",{"type":46,"tag":76,"props":741,"children":742},{},[743],{"type":52,"value":744},"Enable in Console: Verify Service → Fraud Guard → Enable",{"type":46,"tag":303,"props":746,"children":748},{"id":747},"when-to-use-lookup-before-verify",[749],{"type":52,"value":750},"When to Use Lookup BEFORE Verify",{"type":46,"tag":72,"props":752,"children":753},{},[754,759,764],{"type":46,"tag":76,"props":755,"children":756},{},[757],{"type":52,"value":758},"Recommended for signup (validate the number is real before sending a code)",{"type":46,"tag":76,"props":760,"children":761},{},[762],{"type":52,"value":763},"Recommended for high-value transactions (check line type; add SIM swap for KYC businesses)",{"type":46,"tag":76,"props":765,"children":766},{},[767],{"type":52,"value":768},"Optional for routine 2FA (if you trust the number from prior verification)",{"type":46,"tag":47,"props":770,"children":772},{"id":771},"output-format",[773],{"type":52,"value":774},"Output Format",{"type":46,"tag":55,"props":776,"children":777},{},[778],{"type":52,"value":779},"After qualifying the developer, recommend:",{"type":46,"tag":435,"props":781,"children":784},{"className":782,"code":783,"language":52},[438],"Recommended Architecture: [Level 1-4 description]\n\nProduct Skills to Install:\n- twilio-verify-send-otp (always — core verification)\n- twilio-lookup-phone-intelligence (if Level 3+ — fraud risk assessment)\n- twilio-sms-send-message (if account admin notifications)\n- twilio-sendgrid-email (if password reset emails or account admin — recommended)\n\nSetup Skills:\n- twilio-account-setup\n- twilio-iam-auth-setup\n\nGuardrail Skills:\n- twilio-security-hardening (always — credential management, never expose Verify Service SID)\n- twilio-reliability-patterns (retry logic for verification delivery)\n",[785],{"type":46,"tag":144,"props":786,"children":787},{"__ignoreMap":443},[788],{"type":52,"value":783},{"items":790,"total":911},[791,809,825,837,857,879,899],{"slug":792,"name":792,"fn":793,"description":794,"org":795,"tags":796,"stars":28,"repoUrl":29,"updatedAt":30},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[797,800,803,806],{"name":798,"slug":799,"type":15},"Accessibility","accessibility",{"name":801,"slug":802,"type":15},"Charts","charts",{"name":804,"slug":805,"type":15},"Data Visualization","data-visualization",{"name":807,"slug":808,"type":15},"Design","design",{"slug":810,"name":810,"fn":811,"description":812,"org":813,"tags":814,"stars":28,"repoUrl":29,"updatedAt":824},"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},[815,818,821],{"name":816,"slug":817,"type":15},"Agents","agents",{"name":819,"slug":820,"type":15},"Browser Automation","browser-automation",{"name":822,"slug":823,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":826,"name":826,"fn":827,"description":828,"org":829,"tags":830,"stars":28,"repoUrl":29,"updatedAt":836},"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},[831,832,835],{"name":819,"slug":820,"type":15},{"name":833,"slug":834,"type":15},"Local Development","local-development",{"name":822,"slug":823,"type":15},"2026-04-06T18:41:17.526867",{"slug":838,"name":838,"fn":839,"description":840,"org":841,"tags":842,"stars":28,"repoUrl":29,"updatedAt":856},"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},[843,844,847,850,853],{"name":816,"slug":817,"type":15},{"name":845,"slug":846,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":848,"slug":849,"type":15},"SDK","sdk",{"name":851,"slug":852,"type":15},"Serverless","serverless",{"name":854,"slug":855,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":858,"name":858,"fn":859,"description":860,"org":861,"tags":862,"stars":28,"repoUrl":29,"updatedAt":878},"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},[863,866,869,872,875],{"name":864,"slug":865,"type":15},"Frontend","frontend",{"name":867,"slug":868,"type":15},"React","react",{"name":870,"slug":871,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":873,"slug":874,"type":15},"UI Components","ui-components",{"name":876,"slug":877,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":880,"name":880,"fn":881,"description":882,"org":883,"tags":884,"stars":28,"repoUrl":29,"updatedAt":898},"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},[885,888,891,894,897],{"name":886,"slug":887,"type":15},"AI Infrastructure","ai-infrastructure",{"name":889,"slug":890,"type":15},"Cost Optimization","cost-optimization",{"name":892,"slug":893,"type":15},"LLM","llm",{"name":895,"slug":896,"type":15},"Performance","performance",{"name":876,"slug":877,"type":15},"2026-04-06T18:40:44.377464",{"slug":900,"name":900,"fn":901,"description":902,"org":903,"tags":904,"stars":28,"repoUrl":29,"updatedAt":910},"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},[905,906,909],{"name":889,"slug":890,"type":15},{"name":907,"slug":908,"type":15},"Database","database",{"name":892,"slug":893,"type":15},"2026-04-06T18:41:08.513425",600,{"items":913,"total":1110},[914,935,958,975,991,1008,1027,1039,1053,1067,1079,1094],{"slug":915,"name":915,"fn":916,"description":917,"org":918,"tags":919,"stars":932,"repoUrl":933,"updatedAt":934},"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},[920,923,926,929],{"name":921,"slug":922,"type":15},"Documents","documents",{"name":924,"slug":925,"type":15},"Healthcare","healthcare",{"name":927,"slug":928,"type":15},"Insurance","insurance",{"name":930,"slug":931,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":936,"name":936,"fn":937,"description":938,"org":939,"tags":940,"stars":955,"repoUrl":956,"updatedAt":957},"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},[941,944,946,949,952],{"name":942,"slug":943,"type":15},".NET","dotnet",{"name":945,"slug":936,"type":15},"ASP.NET Core",{"name":947,"slug":948,"type":15},"Blazor","blazor",{"name":950,"slug":951,"type":15},"C#","csharp",{"name":953,"slug":954,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":955,"repoUrl":956,"updatedAt":974},"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},[964,967,970,973],{"name":965,"slug":966,"type":15},"Apps SDK","apps-sdk",{"name":968,"slug":969,"type":15},"ChatGPT","chatgpt",{"name":971,"slug":972,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":976,"name":976,"fn":977,"description":978,"org":979,"tags":980,"stars":955,"repoUrl":956,"updatedAt":990},"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},[981,984,987],{"name":982,"slug":983,"type":15},"API Development","api-development",{"name":985,"slug":986,"type":15},"CLI","cli",{"name":988,"slug":989,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":992,"name":992,"fn":993,"description":994,"org":995,"tags":996,"stars":955,"repoUrl":956,"updatedAt":1007},"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},[997,1000,1003,1004],{"name":998,"slug":999,"type":15},"Cloudflare","cloudflare",{"name":1001,"slug":1002,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":845,"slug":846,"type":15},{"name":1005,"slug":1006,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1009,"name":1009,"fn":1010,"description":1011,"org":1012,"tags":1013,"stars":955,"repoUrl":956,"updatedAt":1026},"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},[1014,1017,1020,1023],{"name":1015,"slug":1016,"type":15},"Productivity","productivity",{"name":1018,"slug":1019,"type":15},"Project Management","project-management",{"name":1021,"slug":1022,"type":15},"Strategy","strategy",{"name":1024,"slug":1025,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1028,"name":1028,"fn":1029,"description":1030,"org":1031,"tags":1032,"stars":955,"repoUrl":956,"updatedAt":1038},"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},[1033,1034,1036,1037],{"name":807,"slug":808,"type":15},{"name":1035,"slug":1028,"type":15},"Figma",{"name":864,"slug":865,"type":15},{"name":971,"slug":972,"type":15},"2026-04-12T05:06:47.939943",{"slug":1040,"name":1040,"fn":1041,"description":1042,"org":1043,"tags":1044,"stars":955,"repoUrl":956,"updatedAt":1052},"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},[1045,1046,1049,1050,1051],{"name":807,"slug":808,"type":15},{"name":1047,"slug":1048,"type":15},"Design System","design-system",{"name":1035,"slug":1028,"type":15},{"name":864,"slug":865,"type":15},{"name":873,"slug":874,"type":15},"2026-05-10T05:59:52.971881",{"slug":1054,"name":1054,"fn":1055,"description":1056,"org":1057,"tags":1058,"stars":955,"repoUrl":956,"updatedAt":1066},"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},[1059,1060,1061,1064,1065],{"name":807,"slug":808,"type":15},{"name":1047,"slug":1048,"type":15},{"name":1062,"slug":1063,"type":15},"Documentation","documentation",{"name":1035,"slug":1028,"type":15},{"name":864,"slug":865,"type":15},"2026-05-16T06:07:47.821474",{"slug":1068,"name":1068,"fn":1069,"description":1070,"org":1071,"tags":1072,"stars":955,"repoUrl":956,"updatedAt":1078},"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},[1073,1074,1075,1076,1077],{"name":807,"slug":808,"type":15},{"name":1035,"slug":1028,"type":15},{"name":864,"slug":865,"type":15},{"name":873,"slug":874,"type":15},{"name":953,"slug":954,"type":15},"2026-05-16T06:07:40.583615",{"slug":1080,"name":1080,"fn":1081,"description":1082,"org":1083,"tags":1084,"stars":955,"repoUrl":956,"updatedAt":1093},"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},[1085,1088,1089,1092],{"name":1086,"slug":1087,"type":15},"Animation","animation",{"name":988,"slug":989,"type":15},{"name":1090,"slug":1091,"type":15},"Creative","creative",{"name":807,"slug":808,"type":15},"2026-05-02T05:31:48.48485",{"slug":1095,"name":1095,"fn":1096,"description":1097,"org":1098,"tags":1099,"stars":955,"repoUrl":956,"updatedAt":1109},"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},[1100,1101,1102,1105,1108],{"name":1090,"slug":1091,"type":15},{"name":807,"slug":808,"type":15},{"name":1103,"slug":1104,"type":15},"Image Generation","image-generation",{"name":1106,"slug":1107,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]