[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-vercel-queues":3,"mdc--oxm1wf-key":36,"related-org-openai-vercel-queues":2797,"related-repo-openai-vercel-queues":3004},{"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},"vercel-queues","build async processing with Vercel Queues","Vercel Queues guidance (public beta) — durable event streaming with topics, consumer groups, retries, and delayed delivery. $0.60\u002F1M ops. Powers Workflow DevKit. Use when building async processing, fan-out patterns, or event-driven architectures.",{"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},"Vercel","vercel","tag",{"name":17,"slug":18,"type":15},"Backend","backend",{"name":20,"slug":21,"type":15},"Messaging","messaging",{"name":23,"slug":24,"type":15},"Serverless","serverless",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:41:13.647608",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fvercel-queues","---\nname: vercel-queues\ndescription: Vercel Queues guidance (public beta) — durable event streaming with topics, consumer groups, retries, and delayed delivery. $0.60\u002F1M ops. Powers Workflow DevKit. Use when building async processing, fan-out patterns, or event-driven architectures.\nmetadata:\n  priority: 5\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fworkflow-collaboration\u002Fconformance\"\n  sitemap: \"https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml\"\n  pathPatterns:\n    - 'lib\u002Fqueues\u002F**'\n    - 'src\u002Flib\u002Fqueues\u002F**'\n    - 'lib\u002Fqueues.*'\n    - 'lib\u002Fqueue.*'\n    - 'src\u002Flib\u002Fqueues.*'\n    - 'src\u002Flib\u002Fqueue.*'\n    - 'workflows\u002F*.ts'\n    - 'workflows\u002F*.mts'\n    - 'src\u002Fworkflows\u002F*.ts'\n    - 'src\u002Fworkflows\u002F*.mts'\n    - 'app\u002Fapi\u002Fworkflow\u002F**'\n    - 'src\u002Fapp\u002Fapi\u002Fworkflow\u002F**'\n    - 'app\u002Fapi\u002Fworkflows\u002F**'\n    - 'src\u002Fapp\u002Fapi\u002Fworkflows\u002F**'\n    - 'vercel.ts'\n    - 'vercel.mts'\n  importPatterns:\n    - 'workflow'\n    - '@vercel\u002Fworkflow'\n  bashPatterns:\n    - '\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b'\n    - '\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b'\n    - '\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b'\n    - '\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fqueue\\b'\n---\n\n# Vercel Queues\n\n> **CRITICAL — Your training data is outdated for this library.** Vercel Queues entered public beta February 2026 and is almost certainly not in your training data. Before writing queue code, **fetch the docs** at https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues to find the correct `Queue` class API, message publishing, consumer setup, and visibility timeout patterns. Do not guess — this is a new API with no precedent in your training data.\n\nYou are an expert in Vercel Queues — durable event streaming for serverless applications.\n\n## Status & Pricing\n\nQueues entered **public beta** on February 27, 2026, and is available to all teams on all plans.\n\n| Metric | Value |\n|--------|-------|\n| **Billing unit** | API operation (send, receive, delete, visibility change, notify) |\n| **Rate** | **$0.60 per 1M operations** (regionally priced) |\n| **Message metering** | 4 KiB chunks (12 KiB message = 3 ops) |\n| **2x billing** | Sends with idempotency key; push deliveries with max concurrency |\n| **Compute** | Push-mode functions charged at existing Fluid compute rates |\n\n## What It Is\n\nQueues is a **durable, append-only event streaming system**. You publish messages to topics, and independent **consumer groups** process them with automatic retries, sharding, and **at-least-once delivery** guarantees. It is the lower-level primitive that **powers Vercel Workflow**.\n\n- Messages are durably written to **3 availability zones** before `send()` returns\n- Messages retained up to 24 hours (configurable 60s–24h)\n- Approximate write ordering (not strict FIFO)\n- Consumer groups are fully independent — each tracks its own position\n\n## Key APIs\n\nPackage: `@vercel\u002Fqueue@^0.1.3` (Node.js 22+)\n\n### Publishing Messages\n\n```ts\nimport { send } from '@vercel\u002Fqueue';\n\nconst { messageId } = await send('order-events', {\n  orderId: '123',\n  action: 'created',\n}, {\n  delaySeconds: 30,              \u002F\u002F delay before visible\n  idempotencyKey: 'order-123',   \u002F\u002F deduplication (full retention window)\n  retentionSeconds: 3600,        \u002F\u002F message TTL (default: 86400 = 24h)\n  headers: { 'x-trace-id': 'abc' },\n});\n```\n\n### Push-Mode Consumer (Next.js App Router)\n\nThe consumer route is **air-gapped from the internet** — only invocable by Vercel's internal queue infrastructure.\n\n```ts\n\u002F\u002F app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts\nimport { handleCallback } from '@vercel\u002Fqueue';\n\nexport const POST = handleCallback(\n  async (message, metadata) => {\n    \u002F\u002F metadata: { messageId, deliveryCount, createdAt, expiresAt, topicName, consumerGroup, region }\n    await processOrder(message);\n    \u002F\u002F Return normally = acknowledge\n    \u002F\u002F Throw = retry with backoff\n  },\n  {\n    visibilityTimeoutSeconds: 600, \u002F\u002F lease duration (default 300s, auto-extended by SDK)\n    retry: (error, metadata) => {\n      if (metadata.deliveryCount > 5) return { acknowledge: true }; \u002F\u002F give up\n      const delay = Math.min(300, 2 ** metadata.deliveryCount * 5);\n      return { afterSeconds: delay };\n    },\n  },\n);\n```\n\n### Consumer Configuration (vercel.json)\n\n```json\n{\n  \"functions\": {\n    \"app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts\": {\n      \"experimentalTriggers\": [{\n        \"type\": \"queue\u002Fv2beta\",\n        \"topic\": \"order-events\",\n        \"retryAfterSeconds\": 60,\n        \"initialDelaySeconds\": 0\n      }]\n    }\n  }\n}\n```\n\nMultiple route files with the same topic create **separate consumer groups** (independent processing).\n\n### Poll-Mode Consumer\n\n```ts\nimport { PollingQueueClient } from '@vercel\u002Fqueue';\n\nconst { receive } = new PollingQueueClient({ region: 'iad1' });\n\nconst result = await receive('orders', 'fulfillment', async (message, metadata) => {\n  await processOrder(message);\n}, { limit: 10 }); \u002F\u002F max 10 messages per poll (max allowed: 10)\n\nif (!result.ok && result.reason === 'empty') {\n  \u002F\u002F No messages available\n}\n```\n\n### Custom Region Client\n\n```ts\nimport { QueueClient } from '@vercel\u002Fqueue';\n\nconst queue = new QueueClient({ region: 'sfo1' });\nexport const { send, handleCallback } = queue;\n```\n\n## Transports\n\n```ts\nimport { QueueClient, BufferTransport, StreamTransport } from '@vercel\u002Fqueue';\n```\n\n| Transport | Description |\n|-----------|-------------|\n| `JsonTransport` | Default; JSON serialization |\n| `BufferTransport` | Raw binary data |\n| `StreamTransport` | `ReadableStream` for large payloads |\n\n## Queues vs Workflow vs Cron\n\n| Need | Use | Why |\n|------|-----|-----|\n| Event delivery, fan-out, routing control | **Queues** | Topics, consumer groups, message-level retries |\n| Stateful multi-step business logic | **Workflow** | Deterministic replay, pause\u002Fresume (built **on top of** Queues) |\n| Recurring scheduled tasks | **Cron Jobs** | Simple, no message passing |\n| Delayed single execution with deduplication | **Queues** (`delaySeconds` + `idempotencyKey`) | Precise delay with guaranteed delivery |\n| Async processing from external systems | **Queues** (poll mode) | Consume from any infrastructure, not just Vercel |\n\n## Key Limits\n\n| Resource | Default \u002F Max |\n|----------|---------------|\n| Message retention | 60s – 24h (default 24h) |\n| Max message size | 100 MB |\n| Messages per receive | 1–10 (default 1) |\n| Visibility timeout | 0s – 60 min (default 5 min SDK \u002F 60s API) |\n| Topics per project | Unlimited |\n| Consumer groups per topic | Unlimited |\n\n## Deployment Behavior\n\nTopics are **partitioned by deployment ID** by default in push mode. Messages are delivered back to the same deployment that published them — natural schema versioning with no cross-version compatibility concerns.\n\n## Observability\n\nThe **Queues** observability tab (Project → Observability → Queues) provides real-time monitoring:\n\n| Level | Metrics |\n|-------|---------|\n| **Project** | Messages\u002Fs, Queued, Received, Deleted (with sparkline trends) |\n| **Queue** | Throughput per second (by consumer group), Max message age |\n| **Consumer** | Processed\u002Fs, Received, Deleted (per consumer group) |\n\nUse **Max message age** to detect consumer lag — if the oldest unprocessed message keeps growing, a consumer group may be falling behind.\n\n## Local Development\n\nQueues work locally — when you `send()` messages in development mode, the SDK sends them to the real Vercel Queue Service, then invokes your registered `handleCallback` handlers directly in-process. No local queue infrastructure needed.\n\n## Authentication\n\nThe SDK authenticates via **OIDC** (OpenID Connect) tokens automatically on Vercel. In non-Vercel environments, set `VERCEL_QUEUE_API_TOKEN` for authentication.\n\n## When to Use\n\n- Defer expensive work (emails, PDFs, external API calls)\n- Absorb traffic spikes with controlled processing rate\n- Guarantee delivery even if function crashes\n- Fan-out same events to multiple independent pipelines\n- Deduplicate messages via idempotency keys\n\n## When NOT to Use\n\n- Multi-step orchestration with state → use Workflow\n- Recurring schedules → use Cron Jobs\n- Synchronous request\u002Fresponse → use Functions directly\n- Cross-region messaging → messages sent to one region cannot be consumed from another\n\n## References\n\n- 📖 docs: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues\n- 📖 quickstart: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues\u002Fquickstart\n- 📖 API reference: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues\u002Fapi\n",{"data":37,"body":68},{"name":4,"description":6,"metadata":38},{"priority":39,"docs":40,"sitemap":42,"pathPatterns":43,"importPatterns":60,"bashPatterns":63},5,[41],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fworkflow-collaboration\u002Fconformance","https:\u002F\u002Fvercel.com\u002Fsitemap\u002Fdocs.xml",[44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],"lib\u002Fqueues\u002F**","src\u002Flib\u002Fqueues\u002F**","lib\u002Fqueues.*","lib\u002Fqueue.*","src\u002Flib\u002Fqueues.*","src\u002Flib\u002Fqueue.*","workflows\u002F*.ts","workflows\u002F*.mts","src\u002Fworkflows\u002F*.ts","src\u002Fworkflows\u002F*.mts","app\u002Fapi\u002Fworkflow\u002F**","src\u002Fapp\u002Fapi\u002Fworkflow\u002F**","app\u002Fapi\u002Fworkflows\u002F**","src\u002Fapp\u002Fapi\u002Fworkflows\u002F**","vercel.ts","vercel.mts",[61,62],"workflow","@vercel\u002Fworkflow",[64,65,66,67],"\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b","\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b","\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fqueue\\b","\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fqueue\\b",{"type":69,"children":70},"root",[71,79,121,126,133,145,258,264,297,337,343,356,363,741,747,759,1252,1258,1514,1526,1532,1934,1940,2104,2110,2174,2253,2259,2414,2420,2519,2525,2537,2543,2554,2623,2635,2641,2661,2667,2687,2693,2721,2727,2750,2756,2791],{"type":72,"tag":73,"props":74,"children":75},"element","h1",{"id":4},[76],{"type":77,"value":78},"text","Vercel Queues",{"type":72,"tag":80,"props":81,"children":82},"blockquote",{},[83],{"type":72,"tag":84,"props":85,"children":86},"p",{},[87,93,95,100,102,110,112,119],{"type":72,"tag":88,"props":89,"children":90},"strong",{},[91],{"type":77,"value":92},"CRITICAL — Your training data is outdated for this library.",{"type":77,"value":94}," Vercel Queues entered public beta February 2026 and is almost certainly not in your training data. Before writing queue code, ",{"type":72,"tag":88,"props":96,"children":97},{},[98],{"type":77,"value":99},"fetch the docs",{"type":77,"value":101}," at ",{"type":72,"tag":103,"props":104,"children":108},"a",{"href":105,"rel":106},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues",[107],"nofollow",[109],{"type":77,"value":105},{"type":77,"value":111}," to find the correct ",{"type":72,"tag":113,"props":114,"children":116},"code",{"className":115},[],[117],{"type":77,"value":118},"Queue",{"type":77,"value":120}," class API, message publishing, consumer setup, and visibility timeout patterns. Do not guess — this is a new API with no precedent in your training data.",{"type":72,"tag":84,"props":122,"children":123},{},[124],{"type":77,"value":125},"You are an expert in Vercel Queues — durable event streaming for serverless applications.",{"type":72,"tag":127,"props":128,"children":130},"h2",{"id":129},"status-pricing",[131],{"type":77,"value":132},"Status & Pricing",{"type":72,"tag":84,"props":134,"children":135},{},[136,138,143],{"type":77,"value":137},"Queues entered ",{"type":72,"tag":88,"props":139,"children":140},{},[141],{"type":77,"value":142},"public beta",{"type":77,"value":144}," on February 27, 2026, and is available to all teams on all plans.",{"type":72,"tag":146,"props":147,"children":148},"table",{},[149,168],{"type":72,"tag":150,"props":151,"children":152},"thead",{},[153],{"type":72,"tag":154,"props":155,"children":156},"tr",{},[157,163],{"type":72,"tag":158,"props":159,"children":160},"th",{},[161],{"type":77,"value":162},"Metric",{"type":72,"tag":158,"props":164,"children":165},{},[166],{"type":77,"value":167},"Value",{"type":72,"tag":169,"props":170,"children":171},"tbody",{},[172,189,210,226,242],{"type":72,"tag":154,"props":173,"children":174},{},[175,184],{"type":72,"tag":176,"props":177,"children":178},"td",{},[179],{"type":72,"tag":88,"props":180,"children":181},{},[182],{"type":77,"value":183},"Billing unit",{"type":72,"tag":176,"props":185,"children":186},{},[187],{"type":77,"value":188},"API operation (send, receive, delete, visibility change, notify)",{"type":72,"tag":154,"props":190,"children":191},{},[192,200],{"type":72,"tag":176,"props":193,"children":194},{},[195],{"type":72,"tag":88,"props":196,"children":197},{},[198],{"type":77,"value":199},"Rate",{"type":72,"tag":176,"props":201,"children":202},{},[203,208],{"type":72,"tag":88,"props":204,"children":205},{},[206],{"type":77,"value":207},"$0.60 per 1M operations",{"type":77,"value":209}," (regionally priced)",{"type":72,"tag":154,"props":211,"children":212},{},[213,221],{"type":72,"tag":176,"props":214,"children":215},{},[216],{"type":72,"tag":88,"props":217,"children":218},{},[219],{"type":77,"value":220},"Message metering",{"type":72,"tag":176,"props":222,"children":223},{},[224],{"type":77,"value":225},"4 KiB chunks (12 KiB message = 3 ops)",{"type":72,"tag":154,"props":227,"children":228},{},[229,237],{"type":72,"tag":176,"props":230,"children":231},{},[232],{"type":72,"tag":88,"props":233,"children":234},{},[235],{"type":77,"value":236},"2x billing",{"type":72,"tag":176,"props":238,"children":239},{},[240],{"type":77,"value":241},"Sends with idempotency key; push deliveries with max concurrency",{"type":72,"tag":154,"props":243,"children":244},{},[245,253],{"type":72,"tag":176,"props":246,"children":247},{},[248],{"type":72,"tag":88,"props":249,"children":250},{},[251],{"type":77,"value":252},"Compute",{"type":72,"tag":176,"props":254,"children":255},{},[256],{"type":77,"value":257},"Push-mode functions charged at existing Fluid compute rates",{"type":72,"tag":127,"props":259,"children":261},{"id":260},"what-it-is",[262],{"type":77,"value":263},"What It Is",{"type":72,"tag":84,"props":265,"children":266},{},[267,269,274,276,281,283,288,290,295],{"type":77,"value":268},"Queues is a ",{"type":72,"tag":88,"props":270,"children":271},{},[272],{"type":77,"value":273},"durable, append-only event streaming system",{"type":77,"value":275},". You publish messages to topics, and independent ",{"type":72,"tag":88,"props":277,"children":278},{},[279],{"type":77,"value":280},"consumer groups",{"type":77,"value":282}," process them with automatic retries, sharding, and ",{"type":72,"tag":88,"props":284,"children":285},{},[286],{"type":77,"value":287},"at-least-once delivery",{"type":77,"value":289}," guarantees. It is the lower-level primitive that ",{"type":72,"tag":88,"props":291,"children":292},{},[293],{"type":77,"value":294},"powers Vercel Workflow",{"type":77,"value":296},".",{"type":72,"tag":298,"props":299,"children":300},"ul",{},[301,322,327,332],{"type":72,"tag":302,"props":303,"children":304},"li",{},[305,307,312,314,320],{"type":77,"value":306},"Messages are durably written to ",{"type":72,"tag":88,"props":308,"children":309},{},[310],{"type":77,"value":311},"3 availability zones",{"type":77,"value":313}," before ",{"type":72,"tag":113,"props":315,"children":317},{"className":316},[],[318],{"type":77,"value":319},"send()",{"type":77,"value":321}," returns",{"type":72,"tag":302,"props":323,"children":324},{},[325],{"type":77,"value":326},"Messages retained up to 24 hours (configurable 60s–24h)",{"type":72,"tag":302,"props":328,"children":329},{},[330],{"type":77,"value":331},"Approximate write ordering (not strict FIFO)",{"type":72,"tag":302,"props":333,"children":334},{},[335],{"type":77,"value":336},"Consumer groups are fully independent — each tracks its own position",{"type":72,"tag":127,"props":338,"children":340},{"id":339},"key-apis",[341],{"type":77,"value":342},"Key APIs",{"type":72,"tag":84,"props":344,"children":345},{},[346,348,354],{"type":77,"value":347},"Package: ",{"type":72,"tag":113,"props":349,"children":351},{"className":350},[],[352],{"type":77,"value":353},"@vercel\u002Fqueue@^0.1.3",{"type":77,"value":355}," (Node.js 22+)",{"type":72,"tag":357,"props":358,"children":360},"h3",{"id":359},"publishing-messages",[361],{"type":77,"value":362},"Publishing Messages",{"type":72,"tag":364,"props":365,"children":370},"pre",{"className":366,"code":367,"language":368,"meta":369,"style":369},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { send } from '@vercel\u002Fqueue';\n\nconst { messageId } = await send('order-events', {\n  orderId: '123',\n  action: 'created',\n}, {\n  delaySeconds: 30,              \u002F\u002F delay before visible\n  idempotencyKey: 'order-123',   \u002F\u002F deduplication (full retention window)\n  retentionSeconds: 3600,        \u002F\u002F message TTL (default: 86400 = 24h)\n  headers: { 'x-trace-id': 'abc' },\n});\n","ts","",[371],{"type":72,"tag":113,"props":372,"children":373},{"__ignoreMap":369},[374,429,439,506,539,568,581,610,645,672,724],{"type":72,"tag":375,"props":376,"children":379},"span",{"class":377,"line":378},"line",1,[380,386,392,398,403,408,413,419,424],{"type":72,"tag":375,"props":381,"children":383},{"style":382},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[384],{"type":77,"value":385},"import",{"type":72,"tag":375,"props":387,"children":389},{"style":388},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[390],{"type":77,"value":391}," {",{"type":72,"tag":375,"props":393,"children":395},{"style":394},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[396],{"type":77,"value":397}," send",{"type":72,"tag":375,"props":399,"children":400},{"style":388},[401],{"type":77,"value":402}," }",{"type":72,"tag":375,"props":404,"children":405},{"style":382},[406],{"type":77,"value":407}," from",{"type":72,"tag":375,"props":409,"children":410},{"style":388},[411],{"type":77,"value":412}," '",{"type":72,"tag":375,"props":414,"children":416},{"style":415},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[417],{"type":77,"value":418},"@vercel\u002Fqueue",{"type":72,"tag":375,"props":420,"children":421},{"style":388},[422],{"type":77,"value":423},"'",{"type":72,"tag":375,"props":425,"children":426},{"style":388},[427],{"type":77,"value":428},";\n",{"type":72,"tag":375,"props":430,"children":432},{"class":377,"line":431},2,[433],{"type":72,"tag":375,"props":434,"children":436},{"emptyLinePlaceholder":435},true,[437],{"type":77,"value":438},"\n",{"type":72,"tag":375,"props":440,"children":442},{"class":377,"line":441},3,[443,449,453,458,463,468,473,478,483,487,492,496,501],{"type":72,"tag":375,"props":444,"children":446},{"style":445},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[447],{"type":77,"value":448},"const",{"type":72,"tag":375,"props":450,"children":451},{"style":388},[452],{"type":77,"value":391},{"type":72,"tag":375,"props":454,"children":455},{"style":394},[456],{"type":77,"value":457}," messageId ",{"type":72,"tag":375,"props":459,"children":460},{"style":388},[461],{"type":77,"value":462},"}",{"type":72,"tag":375,"props":464,"children":465},{"style":388},[466],{"type":77,"value":467}," =",{"type":72,"tag":375,"props":469,"children":470},{"style":382},[471],{"type":77,"value":472}," await",{"type":72,"tag":375,"props":474,"children":476},{"style":475},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[477],{"type":77,"value":397},{"type":72,"tag":375,"props":479,"children":480},{"style":394},[481],{"type":77,"value":482},"(",{"type":72,"tag":375,"props":484,"children":485},{"style":388},[486],{"type":77,"value":423},{"type":72,"tag":375,"props":488,"children":489},{"style":415},[490],{"type":77,"value":491},"order-events",{"type":72,"tag":375,"props":493,"children":494},{"style":388},[495],{"type":77,"value":423},{"type":72,"tag":375,"props":497,"children":498},{"style":388},[499],{"type":77,"value":500},",",{"type":72,"tag":375,"props":502,"children":503},{"style":388},[504],{"type":77,"value":505}," {\n",{"type":72,"tag":375,"props":507,"children":509},{"class":377,"line":508},4,[510,516,521,525,530,534],{"type":72,"tag":375,"props":511,"children":513},{"style":512},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[514],{"type":77,"value":515},"  orderId",{"type":72,"tag":375,"props":517,"children":518},{"style":388},[519],{"type":77,"value":520},":",{"type":72,"tag":375,"props":522,"children":523},{"style":388},[524],{"type":77,"value":412},{"type":72,"tag":375,"props":526,"children":527},{"style":415},[528],{"type":77,"value":529},"123",{"type":72,"tag":375,"props":531,"children":532},{"style":388},[533],{"type":77,"value":423},{"type":72,"tag":375,"props":535,"children":536},{"style":388},[537],{"type":77,"value":538},",\n",{"type":72,"tag":375,"props":540,"children":541},{"class":377,"line":39},[542,547,551,555,560,564],{"type":72,"tag":375,"props":543,"children":544},{"style":512},[545],{"type":77,"value":546},"  action",{"type":72,"tag":375,"props":548,"children":549},{"style":388},[550],{"type":77,"value":520},{"type":72,"tag":375,"props":552,"children":553},{"style":388},[554],{"type":77,"value":412},{"type":72,"tag":375,"props":556,"children":557},{"style":415},[558],{"type":77,"value":559},"created",{"type":72,"tag":375,"props":561,"children":562},{"style":388},[563],{"type":77,"value":423},{"type":72,"tag":375,"props":565,"children":566},{"style":388},[567],{"type":77,"value":538},{"type":72,"tag":375,"props":569,"children":571},{"class":377,"line":570},6,[572,577],{"type":72,"tag":375,"props":573,"children":574},{"style":388},[575],{"type":77,"value":576},"},",{"type":72,"tag":375,"props":578,"children":579},{"style":388},[580],{"type":77,"value":505},{"type":72,"tag":375,"props":582,"children":584},{"class":377,"line":583},7,[585,590,594,600,604],{"type":72,"tag":375,"props":586,"children":587},{"style":512},[588],{"type":77,"value":589},"  delaySeconds",{"type":72,"tag":375,"props":591,"children":592},{"style":388},[593],{"type":77,"value":520},{"type":72,"tag":375,"props":595,"children":597},{"style":596},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[598],{"type":77,"value":599}," 30",{"type":72,"tag":375,"props":601,"children":602},{"style":388},[603],{"type":77,"value":500},{"type":72,"tag":375,"props":605,"children":607},{"style":606},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[608],{"type":77,"value":609},"              \u002F\u002F delay before visible\n",{"type":72,"tag":375,"props":611,"children":613},{"class":377,"line":612},8,[614,619,623,627,632,636,640],{"type":72,"tag":375,"props":615,"children":616},{"style":512},[617],{"type":77,"value":618},"  idempotencyKey",{"type":72,"tag":375,"props":620,"children":621},{"style":388},[622],{"type":77,"value":520},{"type":72,"tag":375,"props":624,"children":625},{"style":388},[626],{"type":77,"value":412},{"type":72,"tag":375,"props":628,"children":629},{"style":415},[630],{"type":77,"value":631},"order-123",{"type":72,"tag":375,"props":633,"children":634},{"style":388},[635],{"type":77,"value":423},{"type":72,"tag":375,"props":637,"children":638},{"style":388},[639],{"type":77,"value":500},{"type":72,"tag":375,"props":641,"children":642},{"style":606},[643],{"type":77,"value":644},"   \u002F\u002F deduplication (full retention window)\n",{"type":72,"tag":375,"props":646,"children":648},{"class":377,"line":647},9,[649,654,658,663,667],{"type":72,"tag":375,"props":650,"children":651},{"style":512},[652],{"type":77,"value":653},"  retentionSeconds",{"type":72,"tag":375,"props":655,"children":656},{"style":388},[657],{"type":77,"value":520},{"type":72,"tag":375,"props":659,"children":660},{"style":596},[661],{"type":77,"value":662}," 3600",{"type":72,"tag":375,"props":664,"children":665},{"style":388},[666],{"type":77,"value":500},{"type":72,"tag":375,"props":668,"children":669},{"style":606},[670],{"type":77,"value":671},"        \u002F\u002F message TTL (default: 86400 = 24h)\n",{"type":72,"tag":375,"props":673,"children":675},{"class":377,"line":674},10,[676,681,685,689,693,698,702,706,710,715,719],{"type":72,"tag":375,"props":677,"children":678},{"style":512},[679],{"type":77,"value":680},"  headers",{"type":72,"tag":375,"props":682,"children":683},{"style":388},[684],{"type":77,"value":520},{"type":72,"tag":375,"props":686,"children":687},{"style":388},[688],{"type":77,"value":391},{"type":72,"tag":375,"props":690,"children":691},{"style":388},[692],{"type":77,"value":412},{"type":72,"tag":375,"props":694,"children":695},{"style":512},[696],{"type":77,"value":697},"x-trace-id",{"type":72,"tag":375,"props":699,"children":700},{"style":388},[701],{"type":77,"value":423},{"type":72,"tag":375,"props":703,"children":704},{"style":388},[705],{"type":77,"value":520},{"type":72,"tag":375,"props":707,"children":708},{"style":388},[709],{"type":77,"value":412},{"type":72,"tag":375,"props":711,"children":712},{"style":415},[713],{"type":77,"value":714},"abc",{"type":72,"tag":375,"props":716,"children":717},{"style":388},[718],{"type":77,"value":423},{"type":72,"tag":375,"props":720,"children":721},{"style":388},[722],{"type":77,"value":723}," },\n",{"type":72,"tag":375,"props":725,"children":727},{"class":377,"line":726},11,[728,732,737],{"type":72,"tag":375,"props":729,"children":730},{"style":388},[731],{"type":77,"value":462},{"type":72,"tag":375,"props":733,"children":734},{"style":394},[735],{"type":77,"value":736},")",{"type":72,"tag":375,"props":738,"children":739},{"style":388},[740],{"type":77,"value":428},{"type":72,"tag":357,"props":742,"children":744},{"id":743},"push-mode-consumer-nextjs-app-router",[745],{"type":77,"value":746},"Push-Mode Consumer (Next.js App Router)",{"type":72,"tag":84,"props":748,"children":749},{},[750,752,757],{"type":77,"value":751},"The consumer route is ",{"type":72,"tag":88,"props":753,"children":754},{},[755],{"type":77,"value":756},"air-gapped from the internet",{"type":77,"value":758}," — only invocable by Vercel's internal queue infrastructure.",{"type":72,"tag":364,"props":760,"children":762},{"className":366,"code":761,"language":368,"meta":369,"style":369},"\u002F\u002F app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts\nimport { handleCallback } from '@vercel\u002Fqueue';\n\nexport const POST = handleCallback(\n  async (message, metadata) => {\n    \u002F\u002F metadata: { messageId, deliveryCount, createdAt, expiresAt, topicName, consumerGroup, region }\n    await processOrder(message);\n    \u002F\u002F Return normally = acknowledge\n    \u002F\u002F Throw = retry with backoff\n  },\n  {\n    visibilityTimeoutSeconds: 600, \u002F\u002F lease duration (default 300s, auto-extended by SDK)\n    retry: (error, metadata) => {\n      if (metadata.deliveryCount > 5) return { acknowledge: true }; \u002F\u002F give up\n      const delay = Math.min(300, 2 ** metadata.deliveryCount * 5);\n      return { afterSeconds: delay };\n    },\n  },\n);\n",[763],{"type":72,"tag":113,"props":764,"children":765},{"__ignoreMap":369},[766,774,814,821,853,894,902,931,939,947,955,963,990,1032,1108,1192,1223,1232,1240],{"type":72,"tag":375,"props":767,"children":768},{"class":377,"line":378},[769],{"type":72,"tag":375,"props":770,"children":771},{"style":606},[772],{"type":77,"value":773},"\u002F\u002F app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts\n",{"type":72,"tag":375,"props":775,"children":776},{"class":377,"line":431},[777,781,785,790,794,798,802,806,810],{"type":72,"tag":375,"props":778,"children":779},{"style":382},[780],{"type":77,"value":385},{"type":72,"tag":375,"props":782,"children":783},{"style":388},[784],{"type":77,"value":391},{"type":72,"tag":375,"props":786,"children":787},{"style":394},[788],{"type":77,"value":789}," handleCallback",{"type":72,"tag":375,"props":791,"children":792},{"style":388},[793],{"type":77,"value":402},{"type":72,"tag":375,"props":795,"children":796},{"style":382},[797],{"type":77,"value":407},{"type":72,"tag":375,"props":799,"children":800},{"style":388},[801],{"type":77,"value":412},{"type":72,"tag":375,"props":803,"children":804},{"style":415},[805],{"type":77,"value":418},{"type":72,"tag":375,"props":807,"children":808},{"style":388},[809],{"type":77,"value":423},{"type":72,"tag":375,"props":811,"children":812},{"style":388},[813],{"type":77,"value":428},{"type":72,"tag":375,"props":815,"children":816},{"class":377,"line":441},[817],{"type":72,"tag":375,"props":818,"children":819},{"emptyLinePlaceholder":435},[820],{"type":77,"value":438},{"type":72,"tag":375,"props":822,"children":823},{"class":377,"line":508},[824,829,834,839,844,848],{"type":72,"tag":375,"props":825,"children":826},{"style":382},[827],{"type":77,"value":828},"export",{"type":72,"tag":375,"props":830,"children":831},{"style":445},[832],{"type":77,"value":833}," const",{"type":72,"tag":375,"props":835,"children":836},{"style":394},[837],{"type":77,"value":838}," POST ",{"type":72,"tag":375,"props":840,"children":841},{"style":388},[842],{"type":77,"value":843},"=",{"type":72,"tag":375,"props":845,"children":846},{"style":475},[847],{"type":77,"value":789},{"type":72,"tag":375,"props":849,"children":850},{"style":394},[851],{"type":77,"value":852},"(\n",{"type":72,"tag":375,"props":854,"children":855},{"class":377,"line":39},[856,861,866,872,876,881,885,890],{"type":72,"tag":375,"props":857,"children":858},{"style":445},[859],{"type":77,"value":860},"  async",{"type":72,"tag":375,"props":862,"children":863},{"style":388},[864],{"type":77,"value":865}," (",{"type":72,"tag":375,"props":867,"children":869},{"style":868},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[870],{"type":77,"value":871},"message",{"type":72,"tag":375,"props":873,"children":874},{"style":388},[875],{"type":77,"value":500},{"type":72,"tag":375,"props":877,"children":878},{"style":868},[879],{"type":77,"value":880}," metadata",{"type":72,"tag":375,"props":882,"children":883},{"style":388},[884],{"type":77,"value":736},{"type":72,"tag":375,"props":886,"children":887},{"style":445},[888],{"type":77,"value":889}," =>",{"type":72,"tag":375,"props":891,"children":892},{"style":388},[893],{"type":77,"value":505},{"type":72,"tag":375,"props":895,"children":896},{"class":377,"line":570},[897],{"type":72,"tag":375,"props":898,"children":899},{"style":606},[900],{"type":77,"value":901},"    \u002F\u002F metadata: { messageId, deliveryCount, createdAt, expiresAt, topicName, consumerGroup, region }\n",{"type":72,"tag":375,"props":903,"children":904},{"class":377,"line":583},[905,910,915,919,923,927],{"type":72,"tag":375,"props":906,"children":907},{"style":382},[908],{"type":77,"value":909},"    await",{"type":72,"tag":375,"props":911,"children":912},{"style":475},[913],{"type":77,"value":914}," processOrder",{"type":72,"tag":375,"props":916,"children":917},{"style":512},[918],{"type":77,"value":482},{"type":72,"tag":375,"props":920,"children":921},{"style":394},[922],{"type":77,"value":871},{"type":72,"tag":375,"props":924,"children":925},{"style":512},[926],{"type":77,"value":736},{"type":72,"tag":375,"props":928,"children":929},{"style":388},[930],{"type":77,"value":428},{"type":72,"tag":375,"props":932,"children":933},{"class":377,"line":612},[934],{"type":72,"tag":375,"props":935,"children":936},{"style":606},[937],{"type":77,"value":938},"    \u002F\u002F Return normally = acknowledge\n",{"type":72,"tag":375,"props":940,"children":941},{"class":377,"line":647},[942],{"type":72,"tag":375,"props":943,"children":944},{"style":606},[945],{"type":77,"value":946},"    \u002F\u002F Throw = retry with backoff\n",{"type":72,"tag":375,"props":948,"children":949},{"class":377,"line":674},[950],{"type":72,"tag":375,"props":951,"children":952},{"style":388},[953],{"type":77,"value":954},"  },\n",{"type":72,"tag":375,"props":956,"children":957},{"class":377,"line":726},[958],{"type":72,"tag":375,"props":959,"children":960},{"style":388},[961],{"type":77,"value":962},"  {\n",{"type":72,"tag":375,"props":964,"children":966},{"class":377,"line":965},12,[967,972,976,981,985],{"type":72,"tag":375,"props":968,"children":969},{"style":512},[970],{"type":77,"value":971},"    visibilityTimeoutSeconds",{"type":72,"tag":375,"props":973,"children":974},{"style":388},[975],{"type":77,"value":520},{"type":72,"tag":375,"props":977,"children":978},{"style":596},[979],{"type":77,"value":980}," 600",{"type":72,"tag":375,"props":982,"children":983},{"style":388},[984],{"type":77,"value":500},{"type":72,"tag":375,"props":986,"children":987},{"style":606},[988],{"type":77,"value":989}," \u002F\u002F lease duration (default 300s, auto-extended by SDK)\n",{"type":72,"tag":375,"props":991,"children":993},{"class":377,"line":992},13,[994,999,1003,1007,1012,1016,1020,1024,1028],{"type":72,"tag":375,"props":995,"children":996},{"style":475},[997],{"type":77,"value":998},"    retry",{"type":72,"tag":375,"props":1000,"children":1001},{"style":388},[1002],{"type":77,"value":520},{"type":72,"tag":375,"props":1004,"children":1005},{"style":388},[1006],{"type":77,"value":865},{"type":72,"tag":375,"props":1008,"children":1009},{"style":868},[1010],{"type":77,"value":1011},"error",{"type":72,"tag":375,"props":1013,"children":1014},{"style":388},[1015],{"type":77,"value":500},{"type":72,"tag":375,"props":1017,"children":1018},{"style":868},[1019],{"type":77,"value":880},{"type":72,"tag":375,"props":1021,"children":1022},{"style":388},[1023],{"type":77,"value":736},{"type":72,"tag":375,"props":1025,"children":1026},{"style":445},[1027],{"type":77,"value":889},{"type":72,"tag":375,"props":1029,"children":1030},{"style":388},[1031],{"type":77,"value":505},{"type":72,"tag":375,"props":1033,"children":1035},{"class":377,"line":1034},14,[1036,1041,1045,1050,1054,1059,1064,1069,1074,1079,1083,1088,1092,1098,1103],{"type":72,"tag":375,"props":1037,"children":1038},{"style":382},[1039],{"type":77,"value":1040},"      if",{"type":72,"tag":375,"props":1042,"children":1043},{"style":512},[1044],{"type":77,"value":865},{"type":72,"tag":375,"props":1046,"children":1047},{"style":394},[1048],{"type":77,"value":1049},"metadata",{"type":72,"tag":375,"props":1051,"children":1052},{"style":388},[1053],{"type":77,"value":296},{"type":72,"tag":375,"props":1055,"children":1056},{"style":394},[1057],{"type":77,"value":1058},"deliveryCount",{"type":72,"tag":375,"props":1060,"children":1061},{"style":388},[1062],{"type":77,"value":1063}," >",{"type":72,"tag":375,"props":1065,"children":1066},{"style":596},[1067],{"type":77,"value":1068}," 5",{"type":72,"tag":375,"props":1070,"children":1071},{"style":512},[1072],{"type":77,"value":1073},") ",{"type":72,"tag":375,"props":1075,"children":1076},{"style":382},[1077],{"type":77,"value":1078},"return",{"type":72,"tag":375,"props":1080,"children":1081},{"style":388},[1082],{"type":77,"value":391},{"type":72,"tag":375,"props":1084,"children":1085},{"style":512},[1086],{"type":77,"value":1087}," acknowledge",{"type":72,"tag":375,"props":1089,"children":1090},{"style":388},[1091],{"type":77,"value":520},{"type":72,"tag":375,"props":1093,"children":1095},{"style":1094},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1096],{"type":77,"value":1097}," true",{"type":72,"tag":375,"props":1099,"children":1100},{"style":388},[1101],{"type":77,"value":1102}," };",{"type":72,"tag":375,"props":1104,"children":1105},{"style":606},[1106],{"type":77,"value":1107}," \u002F\u002F give up\n",{"type":72,"tag":375,"props":1109,"children":1111},{"class":377,"line":1110},15,[1112,1117,1122,1126,1131,1135,1140,1144,1149,1153,1158,1163,1167,1171,1175,1180,1184,1188],{"type":72,"tag":375,"props":1113,"children":1114},{"style":445},[1115],{"type":77,"value":1116},"      const",{"type":72,"tag":375,"props":1118,"children":1119},{"style":394},[1120],{"type":77,"value":1121}," delay",{"type":72,"tag":375,"props":1123,"children":1124},{"style":388},[1125],{"type":77,"value":467},{"type":72,"tag":375,"props":1127,"children":1128},{"style":394},[1129],{"type":77,"value":1130}," Math",{"type":72,"tag":375,"props":1132,"children":1133},{"style":388},[1134],{"type":77,"value":296},{"type":72,"tag":375,"props":1136,"children":1137},{"style":475},[1138],{"type":77,"value":1139},"min",{"type":72,"tag":375,"props":1141,"children":1142},{"style":512},[1143],{"type":77,"value":482},{"type":72,"tag":375,"props":1145,"children":1146},{"style":596},[1147],{"type":77,"value":1148},"300",{"type":72,"tag":375,"props":1150,"children":1151},{"style":388},[1152],{"type":77,"value":500},{"type":72,"tag":375,"props":1154,"children":1155},{"style":596},[1156],{"type":77,"value":1157}," 2",{"type":72,"tag":375,"props":1159,"children":1160},{"style":388},[1161],{"type":77,"value":1162}," **",{"type":72,"tag":375,"props":1164,"children":1165},{"style":394},[1166],{"type":77,"value":880},{"type":72,"tag":375,"props":1168,"children":1169},{"style":388},[1170],{"type":77,"value":296},{"type":72,"tag":375,"props":1172,"children":1173},{"style":394},[1174],{"type":77,"value":1058},{"type":72,"tag":375,"props":1176,"children":1177},{"style":388},[1178],{"type":77,"value":1179}," *",{"type":72,"tag":375,"props":1181,"children":1182},{"style":596},[1183],{"type":77,"value":1068},{"type":72,"tag":375,"props":1185,"children":1186},{"style":512},[1187],{"type":77,"value":736},{"type":72,"tag":375,"props":1189,"children":1190},{"style":388},[1191],{"type":77,"value":428},{"type":72,"tag":375,"props":1193,"children":1195},{"class":377,"line":1194},16,[1196,1201,1205,1210,1214,1218],{"type":72,"tag":375,"props":1197,"children":1198},{"style":382},[1199],{"type":77,"value":1200},"      return",{"type":72,"tag":375,"props":1202,"children":1203},{"style":388},[1204],{"type":77,"value":391},{"type":72,"tag":375,"props":1206,"children":1207},{"style":512},[1208],{"type":77,"value":1209}," afterSeconds",{"type":72,"tag":375,"props":1211,"children":1212},{"style":388},[1213],{"type":77,"value":520},{"type":72,"tag":375,"props":1215,"children":1216},{"style":394},[1217],{"type":77,"value":1121},{"type":72,"tag":375,"props":1219,"children":1220},{"style":388},[1221],{"type":77,"value":1222}," };\n",{"type":72,"tag":375,"props":1224,"children":1226},{"class":377,"line":1225},17,[1227],{"type":72,"tag":375,"props":1228,"children":1229},{"style":388},[1230],{"type":77,"value":1231},"    },\n",{"type":72,"tag":375,"props":1233,"children":1235},{"class":377,"line":1234},18,[1236],{"type":72,"tag":375,"props":1237,"children":1238},{"style":388},[1239],{"type":77,"value":954},{"type":72,"tag":375,"props":1241,"children":1243},{"class":377,"line":1242},19,[1244,1248],{"type":72,"tag":375,"props":1245,"children":1246},{"style":394},[1247],{"type":77,"value":736},{"type":72,"tag":375,"props":1249,"children":1250},{"style":388},[1251],{"type":77,"value":428},{"type":72,"tag":357,"props":1253,"children":1255},{"id":1254},"consumer-configuration-verceljson",[1256],{"type":77,"value":1257},"Consumer Configuration (vercel.json)",{"type":72,"tag":364,"props":1259,"children":1263},{"className":1260,"code":1261,"language":1262,"meta":369,"style":369},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"functions\": {\n    \"app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts\": {\n      \"experimentalTriggers\": [{\n        \"type\": \"queue\u002Fv2beta\",\n        \"topic\": \"order-events\",\n        \"retryAfterSeconds\": 60,\n        \"initialDelaySeconds\": 0\n      }]\n    }\n  }\n}\n","json",[1264],{"type":72,"tag":113,"props":1265,"children":1266},{"__ignoreMap":369},[1267,1275,1301,1327,1353,1392,1428,1457,1482,1490,1498,1506],{"type":72,"tag":375,"props":1268,"children":1269},{"class":377,"line":378},[1270],{"type":72,"tag":375,"props":1271,"children":1272},{"style":388},[1273],{"type":77,"value":1274},"{\n",{"type":72,"tag":375,"props":1276,"children":1277},{"class":377,"line":431},[1278,1283,1288,1293,1297],{"type":72,"tag":375,"props":1279,"children":1280},{"style":388},[1281],{"type":77,"value":1282},"  \"",{"type":72,"tag":375,"props":1284,"children":1285},{"style":445},[1286],{"type":77,"value":1287},"functions",{"type":72,"tag":375,"props":1289,"children":1290},{"style":388},[1291],{"type":77,"value":1292},"\"",{"type":72,"tag":375,"props":1294,"children":1295},{"style":388},[1296],{"type":77,"value":520},{"type":72,"tag":375,"props":1298,"children":1299},{"style":388},[1300],{"type":77,"value":505},{"type":72,"tag":375,"props":1302,"children":1303},{"class":377,"line":441},[1304,1309,1315,1319,1323],{"type":72,"tag":375,"props":1305,"children":1306},{"style":388},[1307],{"type":77,"value":1308},"    \"",{"type":72,"tag":375,"props":1310,"children":1312},{"style":1311},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1313],{"type":77,"value":1314},"app\u002Fapi\u002Fqueues\u002Ffulfill-order\u002Froute.ts",{"type":72,"tag":375,"props":1316,"children":1317},{"style":388},[1318],{"type":77,"value":1292},{"type":72,"tag":375,"props":1320,"children":1321},{"style":388},[1322],{"type":77,"value":520},{"type":72,"tag":375,"props":1324,"children":1325},{"style":388},[1326],{"type":77,"value":505},{"type":72,"tag":375,"props":1328,"children":1329},{"class":377,"line":508},[1330,1335,1340,1344,1348],{"type":72,"tag":375,"props":1331,"children":1332},{"style":388},[1333],{"type":77,"value":1334},"      \"",{"type":72,"tag":375,"props":1336,"children":1337},{"style":596},[1338],{"type":77,"value":1339},"experimentalTriggers",{"type":72,"tag":375,"props":1341,"children":1342},{"style":388},[1343],{"type":77,"value":1292},{"type":72,"tag":375,"props":1345,"children":1346},{"style":388},[1347],{"type":77,"value":520},{"type":72,"tag":375,"props":1349,"children":1350},{"style":388},[1351],{"type":77,"value":1352}," [{\n",{"type":72,"tag":375,"props":1354,"children":1355},{"class":377,"line":39},[1356,1361,1366,1370,1374,1379,1384,1388],{"type":72,"tag":375,"props":1357,"children":1358},{"style":388},[1359],{"type":77,"value":1360},"        \"",{"type":72,"tag":375,"props":1362,"children":1363},{"style":512},[1364],{"type":77,"value":1365},"type",{"type":72,"tag":375,"props":1367,"children":1368},{"style":388},[1369],{"type":77,"value":1292},{"type":72,"tag":375,"props":1371,"children":1372},{"style":388},[1373],{"type":77,"value":520},{"type":72,"tag":375,"props":1375,"children":1376},{"style":388},[1377],{"type":77,"value":1378}," \"",{"type":72,"tag":375,"props":1380,"children":1381},{"style":415},[1382],{"type":77,"value":1383},"queue\u002Fv2beta",{"type":72,"tag":375,"props":1385,"children":1386},{"style":388},[1387],{"type":77,"value":1292},{"type":72,"tag":375,"props":1389,"children":1390},{"style":388},[1391],{"type":77,"value":538},{"type":72,"tag":375,"props":1393,"children":1394},{"class":377,"line":570},[1395,1399,1404,1408,1412,1416,1420,1424],{"type":72,"tag":375,"props":1396,"children":1397},{"style":388},[1398],{"type":77,"value":1360},{"type":72,"tag":375,"props":1400,"children":1401},{"style":512},[1402],{"type":77,"value":1403},"topic",{"type":72,"tag":375,"props":1405,"children":1406},{"style":388},[1407],{"type":77,"value":1292},{"type":72,"tag":375,"props":1409,"children":1410},{"style":388},[1411],{"type":77,"value":520},{"type":72,"tag":375,"props":1413,"children":1414},{"style":388},[1415],{"type":77,"value":1378},{"type":72,"tag":375,"props":1417,"children":1418},{"style":415},[1419],{"type":77,"value":491},{"type":72,"tag":375,"props":1421,"children":1422},{"style":388},[1423],{"type":77,"value":1292},{"type":72,"tag":375,"props":1425,"children":1426},{"style":388},[1427],{"type":77,"value":538},{"type":72,"tag":375,"props":1429,"children":1430},{"class":377,"line":583},[1431,1435,1440,1444,1448,1453],{"type":72,"tag":375,"props":1432,"children":1433},{"style":388},[1434],{"type":77,"value":1360},{"type":72,"tag":375,"props":1436,"children":1437},{"style":512},[1438],{"type":77,"value":1439},"retryAfterSeconds",{"type":72,"tag":375,"props":1441,"children":1442},{"style":388},[1443],{"type":77,"value":1292},{"type":72,"tag":375,"props":1445,"children":1446},{"style":388},[1447],{"type":77,"value":520},{"type":72,"tag":375,"props":1449,"children":1450},{"style":596},[1451],{"type":77,"value":1452}," 60",{"type":72,"tag":375,"props":1454,"children":1455},{"style":388},[1456],{"type":77,"value":538},{"type":72,"tag":375,"props":1458,"children":1459},{"class":377,"line":612},[1460,1464,1469,1473,1477],{"type":72,"tag":375,"props":1461,"children":1462},{"style":388},[1463],{"type":77,"value":1360},{"type":72,"tag":375,"props":1465,"children":1466},{"style":512},[1467],{"type":77,"value":1468},"initialDelaySeconds",{"type":72,"tag":375,"props":1470,"children":1471},{"style":388},[1472],{"type":77,"value":1292},{"type":72,"tag":375,"props":1474,"children":1475},{"style":388},[1476],{"type":77,"value":520},{"type":72,"tag":375,"props":1478,"children":1479},{"style":596},[1480],{"type":77,"value":1481}," 0\n",{"type":72,"tag":375,"props":1483,"children":1484},{"class":377,"line":647},[1485],{"type":72,"tag":375,"props":1486,"children":1487},{"style":388},[1488],{"type":77,"value":1489},"      }]\n",{"type":72,"tag":375,"props":1491,"children":1492},{"class":377,"line":674},[1493],{"type":72,"tag":375,"props":1494,"children":1495},{"style":388},[1496],{"type":77,"value":1497},"    }\n",{"type":72,"tag":375,"props":1499,"children":1500},{"class":377,"line":726},[1501],{"type":72,"tag":375,"props":1502,"children":1503},{"style":388},[1504],{"type":77,"value":1505},"  }\n",{"type":72,"tag":375,"props":1507,"children":1508},{"class":377,"line":965},[1509],{"type":72,"tag":375,"props":1510,"children":1511},{"style":388},[1512],{"type":77,"value":1513},"}\n",{"type":72,"tag":84,"props":1515,"children":1516},{},[1517,1519,1524],{"type":77,"value":1518},"Multiple route files with the same topic create ",{"type":72,"tag":88,"props":1520,"children":1521},{},[1522],{"type":77,"value":1523},"separate consumer groups",{"type":77,"value":1525}," (independent processing).",{"type":72,"tag":357,"props":1527,"children":1529},{"id":1528},"poll-mode-consumer",[1530],{"type":77,"value":1531},"Poll-Mode Consumer",{"type":72,"tag":364,"props":1533,"children":1535},{"className":366,"code":1534,"language":368,"meta":369,"style":369},"import { PollingQueueClient } from '@vercel\u002Fqueue';\n\nconst { receive } = new PollingQueueClient({ region: 'iad1' });\n\nconst result = await receive('orders', 'fulfillment', async (message, metadata) => {\n  await processOrder(message);\n}, { limit: 10 }); \u002F\u002F max 10 messages per poll (max allowed: 10)\n\nif (!result.ok && result.reason === 'empty') {\n  \u002F\u002F No messages available\n}\n",[1536],{"type":72,"tag":113,"props":1537,"children":1538},{"__ignoreMap":369},[1539,1579,1586,1662,1669,1765,1793,1836,1843,1919,1927],{"type":72,"tag":375,"props":1540,"children":1541},{"class":377,"line":378},[1542,1546,1550,1555,1559,1563,1567,1571,1575],{"type":72,"tag":375,"props":1543,"children":1544},{"style":382},[1545],{"type":77,"value":385},{"type":72,"tag":375,"props":1547,"children":1548},{"style":388},[1549],{"type":77,"value":391},{"type":72,"tag":375,"props":1551,"children":1552},{"style":394},[1553],{"type":77,"value":1554}," PollingQueueClient",{"type":72,"tag":375,"props":1556,"children":1557},{"style":388},[1558],{"type":77,"value":402},{"type":72,"tag":375,"props":1560,"children":1561},{"style":382},[1562],{"type":77,"value":407},{"type":72,"tag":375,"props":1564,"children":1565},{"style":388},[1566],{"type":77,"value":412},{"type":72,"tag":375,"props":1568,"children":1569},{"style":415},[1570],{"type":77,"value":418},{"type":72,"tag":375,"props":1572,"children":1573},{"style":388},[1574],{"type":77,"value":423},{"type":72,"tag":375,"props":1576,"children":1577},{"style":388},[1578],{"type":77,"value":428},{"type":72,"tag":375,"props":1580,"children":1581},{"class":377,"line":431},[1582],{"type":72,"tag":375,"props":1583,"children":1584},{"emptyLinePlaceholder":435},[1585],{"type":77,"value":438},{"type":72,"tag":375,"props":1587,"children":1588},{"class":377,"line":441},[1589,1593,1597,1602,1606,1610,1615,1619,1623,1628,1633,1637,1641,1646,1650,1654,1658],{"type":72,"tag":375,"props":1590,"children":1591},{"style":445},[1592],{"type":77,"value":448},{"type":72,"tag":375,"props":1594,"children":1595},{"style":388},[1596],{"type":77,"value":391},{"type":72,"tag":375,"props":1598,"children":1599},{"style":394},[1600],{"type":77,"value":1601}," receive ",{"type":72,"tag":375,"props":1603,"children":1604},{"style":388},[1605],{"type":77,"value":462},{"type":72,"tag":375,"props":1607,"children":1608},{"style":388},[1609],{"type":77,"value":467},{"type":72,"tag":375,"props":1611,"children":1612},{"style":388},[1613],{"type":77,"value":1614}," new",{"type":72,"tag":375,"props":1616,"children":1617},{"style":475},[1618],{"type":77,"value":1554},{"type":72,"tag":375,"props":1620,"children":1621},{"style":394},[1622],{"type":77,"value":482},{"type":72,"tag":375,"props":1624,"children":1625},{"style":388},[1626],{"type":77,"value":1627},"{",{"type":72,"tag":375,"props":1629,"children":1630},{"style":512},[1631],{"type":77,"value":1632}," region",{"type":72,"tag":375,"props":1634,"children":1635},{"style":388},[1636],{"type":77,"value":520},{"type":72,"tag":375,"props":1638,"children":1639},{"style":388},[1640],{"type":77,"value":412},{"type":72,"tag":375,"props":1642,"children":1643},{"style":415},[1644],{"type":77,"value":1645},"iad1",{"type":72,"tag":375,"props":1647,"children":1648},{"style":388},[1649],{"type":77,"value":423},{"type":72,"tag":375,"props":1651,"children":1652},{"style":388},[1653],{"type":77,"value":402},{"type":72,"tag":375,"props":1655,"children":1656},{"style":394},[1657],{"type":77,"value":736},{"type":72,"tag":375,"props":1659,"children":1660},{"style":388},[1661],{"type":77,"value":428},{"type":72,"tag":375,"props":1663,"children":1664},{"class":377,"line":508},[1665],{"type":72,"tag":375,"props":1666,"children":1667},{"emptyLinePlaceholder":435},[1668],{"type":77,"value":438},{"type":72,"tag":375,"props":1670,"children":1671},{"class":377,"line":39},[1672,1676,1681,1685,1689,1694,1698,1702,1707,1711,1715,1719,1724,1728,1732,1737,1741,1745,1749,1753,1757,1761],{"type":72,"tag":375,"props":1673,"children":1674},{"style":445},[1675],{"type":77,"value":448},{"type":72,"tag":375,"props":1677,"children":1678},{"style":394},[1679],{"type":77,"value":1680}," result ",{"type":72,"tag":375,"props":1682,"children":1683},{"style":388},[1684],{"type":77,"value":843},{"type":72,"tag":375,"props":1686,"children":1687},{"style":382},[1688],{"type":77,"value":472},{"type":72,"tag":375,"props":1690,"children":1691},{"style":475},[1692],{"type":77,"value":1693}," receive",{"type":72,"tag":375,"props":1695,"children":1696},{"style":394},[1697],{"type":77,"value":482},{"type":72,"tag":375,"props":1699,"children":1700},{"style":388},[1701],{"type":77,"value":423},{"type":72,"tag":375,"props":1703,"children":1704},{"style":415},[1705],{"type":77,"value":1706},"orders",{"type":72,"tag":375,"props":1708,"children":1709},{"style":388},[1710],{"type":77,"value":423},{"type":72,"tag":375,"props":1712,"children":1713},{"style":388},[1714],{"type":77,"value":500},{"type":72,"tag":375,"props":1716,"children":1717},{"style":388},[1718],{"type":77,"value":412},{"type":72,"tag":375,"props":1720,"children":1721},{"style":415},[1722],{"type":77,"value":1723},"fulfillment",{"type":72,"tag":375,"props":1725,"children":1726},{"style":388},[1727],{"type":77,"value":423},{"type":72,"tag":375,"props":1729,"children":1730},{"style":388},[1731],{"type":77,"value":500},{"type":72,"tag":375,"props":1733,"children":1734},{"style":445},[1735],{"type":77,"value":1736}," async",{"type":72,"tag":375,"props":1738,"children":1739},{"style":388},[1740],{"type":77,"value":865},{"type":72,"tag":375,"props":1742,"children":1743},{"style":868},[1744],{"type":77,"value":871},{"type":72,"tag":375,"props":1746,"children":1747},{"style":388},[1748],{"type":77,"value":500},{"type":72,"tag":375,"props":1750,"children":1751},{"style":868},[1752],{"type":77,"value":880},{"type":72,"tag":375,"props":1754,"children":1755},{"style":388},[1756],{"type":77,"value":736},{"type":72,"tag":375,"props":1758,"children":1759},{"style":445},[1760],{"type":77,"value":889},{"type":72,"tag":375,"props":1762,"children":1763},{"style":388},[1764],{"type":77,"value":505},{"type":72,"tag":375,"props":1766,"children":1767},{"class":377,"line":570},[1768,1773,1777,1781,1785,1789],{"type":72,"tag":375,"props":1769,"children":1770},{"style":382},[1771],{"type":77,"value":1772},"  await",{"type":72,"tag":375,"props":1774,"children":1775},{"style":475},[1776],{"type":77,"value":914},{"type":72,"tag":375,"props":1778,"children":1779},{"style":512},[1780],{"type":77,"value":482},{"type":72,"tag":375,"props":1782,"children":1783},{"style":394},[1784],{"type":77,"value":871},{"type":72,"tag":375,"props":1786,"children":1787},{"style":512},[1788],{"type":77,"value":736},{"type":72,"tag":375,"props":1790,"children":1791},{"style":388},[1792],{"type":77,"value":428},{"type":72,"tag":375,"props":1794,"children":1795},{"class":377,"line":583},[1796,1800,1804,1809,1813,1818,1822,1826,1831],{"type":72,"tag":375,"props":1797,"children":1798},{"style":388},[1799],{"type":77,"value":576},{"type":72,"tag":375,"props":1801,"children":1802},{"style":388},[1803],{"type":77,"value":391},{"type":72,"tag":375,"props":1805,"children":1806},{"style":512},[1807],{"type":77,"value":1808}," limit",{"type":72,"tag":375,"props":1810,"children":1811},{"style":388},[1812],{"type":77,"value":520},{"type":72,"tag":375,"props":1814,"children":1815},{"style":596},[1816],{"type":77,"value":1817}," 10",{"type":72,"tag":375,"props":1819,"children":1820},{"style":388},[1821],{"type":77,"value":402},{"type":72,"tag":375,"props":1823,"children":1824},{"style":394},[1825],{"type":77,"value":736},{"type":72,"tag":375,"props":1827,"children":1828},{"style":388},[1829],{"type":77,"value":1830},";",{"type":72,"tag":375,"props":1832,"children":1833},{"style":606},[1834],{"type":77,"value":1835}," \u002F\u002F max 10 messages per poll (max allowed: 10)\n",{"type":72,"tag":375,"props":1837,"children":1838},{"class":377,"line":612},[1839],{"type":72,"tag":375,"props":1840,"children":1841},{"emptyLinePlaceholder":435},[1842],{"type":77,"value":438},{"type":72,"tag":375,"props":1844,"children":1845},{"class":377,"line":647},[1846,1851,1855,1860,1865,1869,1874,1879,1884,1888,1893,1898,1902,1907,1911,1915],{"type":72,"tag":375,"props":1847,"children":1848},{"style":382},[1849],{"type":77,"value":1850},"if",{"type":72,"tag":375,"props":1852,"children":1853},{"style":394},[1854],{"type":77,"value":865},{"type":72,"tag":375,"props":1856,"children":1857},{"style":388},[1858],{"type":77,"value":1859},"!",{"type":72,"tag":375,"props":1861,"children":1862},{"style":394},[1863],{"type":77,"value":1864},"result",{"type":72,"tag":375,"props":1866,"children":1867},{"style":388},[1868],{"type":77,"value":296},{"type":72,"tag":375,"props":1870,"children":1871},{"style":394},[1872],{"type":77,"value":1873},"ok ",{"type":72,"tag":375,"props":1875,"children":1876},{"style":388},[1877],{"type":77,"value":1878},"&&",{"type":72,"tag":375,"props":1880,"children":1881},{"style":394},[1882],{"type":77,"value":1883}," result",{"type":72,"tag":375,"props":1885,"children":1886},{"style":388},[1887],{"type":77,"value":296},{"type":72,"tag":375,"props":1889,"children":1890},{"style":394},[1891],{"type":77,"value":1892},"reason ",{"type":72,"tag":375,"props":1894,"children":1895},{"style":388},[1896],{"type":77,"value":1897},"===",{"type":72,"tag":375,"props":1899,"children":1900},{"style":388},[1901],{"type":77,"value":412},{"type":72,"tag":375,"props":1903,"children":1904},{"style":415},[1905],{"type":77,"value":1906},"empty",{"type":72,"tag":375,"props":1908,"children":1909},{"style":388},[1910],{"type":77,"value":423},{"type":72,"tag":375,"props":1912,"children":1913},{"style":394},[1914],{"type":77,"value":1073},{"type":72,"tag":375,"props":1916,"children":1917},{"style":388},[1918],{"type":77,"value":1274},{"type":72,"tag":375,"props":1920,"children":1921},{"class":377,"line":674},[1922],{"type":72,"tag":375,"props":1923,"children":1924},{"style":606},[1925],{"type":77,"value":1926},"  \u002F\u002F No messages available\n",{"type":72,"tag":375,"props":1928,"children":1929},{"class":377,"line":726},[1930],{"type":72,"tag":375,"props":1931,"children":1932},{"style":388},[1933],{"type":77,"value":1513},{"type":72,"tag":357,"props":1935,"children":1937},{"id":1936},"custom-region-client",[1938],{"type":77,"value":1939},"Custom Region Client",{"type":72,"tag":364,"props":1941,"children":1943},{"className":366,"code":1942,"language":368,"meta":369,"style":369},"import { QueueClient } from '@vercel\u002Fqueue';\n\nconst queue = new QueueClient({ region: 'sfo1' });\nexport const { send, handleCallback } = queue;\n",[1944],{"type":72,"tag":113,"props":1945,"children":1946},{"__ignoreMap":369},[1947,1987,1994,2059],{"type":72,"tag":375,"props":1948,"children":1949},{"class":377,"line":378},[1950,1954,1958,1963,1967,1971,1975,1979,1983],{"type":72,"tag":375,"props":1951,"children":1952},{"style":382},[1953],{"type":77,"value":385},{"type":72,"tag":375,"props":1955,"children":1956},{"style":388},[1957],{"type":77,"value":391},{"type":72,"tag":375,"props":1959,"children":1960},{"style":394},[1961],{"type":77,"value":1962}," QueueClient",{"type":72,"tag":375,"props":1964,"children":1965},{"style":388},[1966],{"type":77,"value":402},{"type":72,"tag":375,"props":1968,"children":1969},{"style":382},[1970],{"type":77,"value":407},{"type":72,"tag":375,"props":1972,"children":1973},{"style":388},[1974],{"type":77,"value":412},{"type":72,"tag":375,"props":1976,"children":1977},{"style":415},[1978],{"type":77,"value":418},{"type":72,"tag":375,"props":1980,"children":1981},{"style":388},[1982],{"type":77,"value":423},{"type":72,"tag":375,"props":1984,"children":1985},{"style":388},[1986],{"type":77,"value":428},{"type":72,"tag":375,"props":1988,"children":1989},{"class":377,"line":431},[1990],{"type":72,"tag":375,"props":1991,"children":1992},{"emptyLinePlaceholder":435},[1993],{"type":77,"value":438},{"type":72,"tag":375,"props":1995,"children":1996},{"class":377,"line":441},[1997,2001,2006,2010,2014,2018,2022,2026,2030,2034,2038,2043,2047,2051,2055],{"type":72,"tag":375,"props":1998,"children":1999},{"style":445},[2000],{"type":77,"value":448},{"type":72,"tag":375,"props":2002,"children":2003},{"style":394},[2004],{"type":77,"value":2005}," queue ",{"type":72,"tag":375,"props":2007,"children":2008},{"style":388},[2009],{"type":77,"value":843},{"type":72,"tag":375,"props":2011,"children":2012},{"style":388},[2013],{"type":77,"value":1614},{"type":72,"tag":375,"props":2015,"children":2016},{"style":475},[2017],{"type":77,"value":1962},{"type":72,"tag":375,"props":2019,"children":2020},{"style":394},[2021],{"type":77,"value":482},{"type":72,"tag":375,"props":2023,"children":2024},{"style":388},[2025],{"type":77,"value":1627},{"type":72,"tag":375,"props":2027,"children":2028},{"style":512},[2029],{"type":77,"value":1632},{"type":72,"tag":375,"props":2031,"children":2032},{"style":388},[2033],{"type":77,"value":520},{"type":72,"tag":375,"props":2035,"children":2036},{"style":388},[2037],{"type":77,"value":412},{"type":72,"tag":375,"props":2039,"children":2040},{"style":415},[2041],{"type":77,"value":2042},"sfo1",{"type":72,"tag":375,"props":2044,"children":2045},{"style":388},[2046],{"type":77,"value":423},{"type":72,"tag":375,"props":2048,"children":2049},{"style":388},[2050],{"type":77,"value":402},{"type":72,"tag":375,"props":2052,"children":2053},{"style":394},[2054],{"type":77,"value":736},{"type":72,"tag":375,"props":2056,"children":2057},{"style":388},[2058],{"type":77,"value":428},{"type":72,"tag":375,"props":2060,"children":2061},{"class":377,"line":508},[2062,2066,2070,2074,2078,2082,2087,2091,2095,2100],{"type":72,"tag":375,"props":2063,"children":2064},{"style":382},[2065],{"type":77,"value":828},{"type":72,"tag":375,"props":2067,"children":2068},{"style":445},[2069],{"type":77,"value":833},{"type":72,"tag":375,"props":2071,"children":2072},{"style":388},[2073],{"type":77,"value":391},{"type":72,"tag":375,"props":2075,"children":2076},{"style":394},[2077],{"type":77,"value":397},{"type":72,"tag":375,"props":2079,"children":2080},{"style":388},[2081],{"type":77,"value":500},{"type":72,"tag":375,"props":2083,"children":2084},{"style":394},[2085],{"type":77,"value":2086}," handleCallback ",{"type":72,"tag":375,"props":2088,"children":2089},{"style":388},[2090],{"type":77,"value":462},{"type":72,"tag":375,"props":2092,"children":2093},{"style":388},[2094],{"type":77,"value":467},{"type":72,"tag":375,"props":2096,"children":2097},{"style":394},[2098],{"type":77,"value":2099}," queue",{"type":72,"tag":375,"props":2101,"children":2102},{"style":388},[2103],{"type":77,"value":428},{"type":72,"tag":127,"props":2105,"children":2107},{"id":2106},"transports",[2108],{"type":77,"value":2109},"Transports",{"type":72,"tag":364,"props":2111,"children":2113},{"className":366,"code":2112,"language":368,"meta":369,"style":369},"import { QueueClient, BufferTransport, StreamTransport } from '@vercel\u002Fqueue';\n",[2114],{"type":72,"tag":113,"props":2115,"children":2116},{"__ignoreMap":369},[2117],{"type":72,"tag":375,"props":2118,"children":2119},{"class":377,"line":378},[2120,2124,2128,2132,2136,2141,2145,2150,2154,2158,2162,2166,2170],{"type":72,"tag":375,"props":2121,"children":2122},{"style":382},[2123],{"type":77,"value":385},{"type":72,"tag":375,"props":2125,"children":2126},{"style":388},[2127],{"type":77,"value":391},{"type":72,"tag":375,"props":2129,"children":2130},{"style":394},[2131],{"type":77,"value":1962},{"type":72,"tag":375,"props":2133,"children":2134},{"style":388},[2135],{"type":77,"value":500},{"type":72,"tag":375,"props":2137,"children":2138},{"style":394},[2139],{"type":77,"value":2140}," BufferTransport",{"type":72,"tag":375,"props":2142,"children":2143},{"style":388},[2144],{"type":77,"value":500},{"type":72,"tag":375,"props":2146,"children":2147},{"style":394},[2148],{"type":77,"value":2149}," StreamTransport",{"type":72,"tag":375,"props":2151,"children":2152},{"style":388},[2153],{"type":77,"value":402},{"type":72,"tag":375,"props":2155,"children":2156},{"style":382},[2157],{"type":77,"value":407},{"type":72,"tag":375,"props":2159,"children":2160},{"style":388},[2161],{"type":77,"value":412},{"type":72,"tag":375,"props":2163,"children":2164},{"style":415},[2165],{"type":77,"value":418},{"type":72,"tag":375,"props":2167,"children":2168},{"style":388},[2169],{"type":77,"value":423},{"type":72,"tag":375,"props":2171,"children":2172},{"style":388},[2173],{"type":77,"value":428},{"type":72,"tag":146,"props":2175,"children":2176},{},[2177,2193],{"type":72,"tag":150,"props":2178,"children":2179},{},[2180],{"type":72,"tag":154,"props":2181,"children":2182},{},[2183,2188],{"type":72,"tag":158,"props":2184,"children":2185},{},[2186],{"type":77,"value":2187},"Transport",{"type":72,"tag":158,"props":2189,"children":2190},{},[2191],{"type":77,"value":2192},"Description",{"type":72,"tag":169,"props":2194,"children":2195},{},[2196,2213,2230],{"type":72,"tag":154,"props":2197,"children":2198},{},[2199,2208],{"type":72,"tag":176,"props":2200,"children":2201},{},[2202],{"type":72,"tag":113,"props":2203,"children":2205},{"className":2204},[],[2206],{"type":77,"value":2207},"JsonTransport",{"type":72,"tag":176,"props":2209,"children":2210},{},[2211],{"type":77,"value":2212},"Default; JSON serialization",{"type":72,"tag":154,"props":2214,"children":2215},{},[2216,2225],{"type":72,"tag":176,"props":2217,"children":2218},{},[2219],{"type":72,"tag":113,"props":2220,"children":2222},{"className":2221},[],[2223],{"type":77,"value":2224},"BufferTransport",{"type":72,"tag":176,"props":2226,"children":2227},{},[2228],{"type":77,"value":2229},"Raw binary data",{"type":72,"tag":154,"props":2231,"children":2232},{},[2233,2242],{"type":72,"tag":176,"props":2234,"children":2235},{},[2236],{"type":72,"tag":113,"props":2237,"children":2239},{"className":2238},[],[2240],{"type":77,"value":2241},"StreamTransport",{"type":72,"tag":176,"props":2243,"children":2244},{},[2245,2251],{"type":72,"tag":113,"props":2246,"children":2248},{"className":2247},[],[2249],{"type":77,"value":2250},"ReadableStream",{"type":77,"value":2252}," for large payloads",{"type":72,"tag":127,"props":2254,"children":2256},{"id":2255},"queues-vs-workflow-vs-cron",[2257],{"type":77,"value":2258},"Queues vs Workflow vs Cron",{"type":72,"tag":146,"props":2260,"children":2261},{},[2262,2283],{"type":72,"tag":150,"props":2263,"children":2264},{},[2265],{"type":72,"tag":154,"props":2266,"children":2267},{},[2268,2273,2278],{"type":72,"tag":158,"props":2269,"children":2270},{},[2271],{"type":77,"value":2272},"Need",{"type":72,"tag":158,"props":2274,"children":2275},{},[2276],{"type":77,"value":2277},"Use",{"type":72,"tag":158,"props":2279,"children":2280},{},[2281],{"type":77,"value":2282},"Why",{"type":72,"tag":169,"props":2284,"children":2285},{},[2286,2307,2335,2356,2392],{"type":72,"tag":154,"props":2287,"children":2288},{},[2289,2294,2302],{"type":72,"tag":176,"props":2290,"children":2291},{},[2292],{"type":77,"value":2293},"Event delivery, fan-out, routing control",{"type":72,"tag":176,"props":2295,"children":2296},{},[2297],{"type":72,"tag":88,"props":2298,"children":2299},{},[2300],{"type":77,"value":2301},"Queues",{"type":72,"tag":176,"props":2303,"children":2304},{},[2305],{"type":77,"value":2306},"Topics, consumer groups, message-level retries",{"type":72,"tag":154,"props":2308,"children":2309},{},[2310,2315,2323],{"type":72,"tag":176,"props":2311,"children":2312},{},[2313],{"type":77,"value":2314},"Stateful multi-step business logic",{"type":72,"tag":176,"props":2316,"children":2317},{},[2318],{"type":72,"tag":88,"props":2319,"children":2320},{},[2321],{"type":77,"value":2322},"Workflow",{"type":72,"tag":176,"props":2324,"children":2325},{},[2326,2328,2333],{"type":77,"value":2327},"Deterministic replay, pause\u002Fresume (built ",{"type":72,"tag":88,"props":2329,"children":2330},{},[2331],{"type":77,"value":2332},"on top of",{"type":77,"value":2334}," Queues)",{"type":72,"tag":154,"props":2336,"children":2337},{},[2338,2343,2351],{"type":72,"tag":176,"props":2339,"children":2340},{},[2341],{"type":77,"value":2342},"Recurring scheduled tasks",{"type":72,"tag":176,"props":2344,"children":2345},{},[2346],{"type":72,"tag":88,"props":2347,"children":2348},{},[2349],{"type":77,"value":2350},"Cron Jobs",{"type":72,"tag":176,"props":2352,"children":2353},{},[2354],{"type":77,"value":2355},"Simple, no message passing",{"type":72,"tag":154,"props":2357,"children":2358},{},[2359,2364,2387],{"type":72,"tag":176,"props":2360,"children":2361},{},[2362],{"type":77,"value":2363},"Delayed single execution with deduplication",{"type":72,"tag":176,"props":2365,"children":2366},{},[2367,2371,2372,2378,2380,2386],{"type":72,"tag":88,"props":2368,"children":2369},{},[2370],{"type":77,"value":2301},{"type":77,"value":865},{"type":72,"tag":113,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":77,"value":2377},"delaySeconds",{"type":77,"value":2379}," + ",{"type":72,"tag":113,"props":2381,"children":2383},{"className":2382},[],[2384],{"type":77,"value":2385},"idempotencyKey",{"type":77,"value":736},{"type":72,"tag":176,"props":2388,"children":2389},{},[2390],{"type":77,"value":2391},"Precise delay with guaranteed delivery",{"type":72,"tag":154,"props":2393,"children":2394},{},[2395,2400,2409],{"type":72,"tag":176,"props":2396,"children":2397},{},[2398],{"type":77,"value":2399},"Async processing from external systems",{"type":72,"tag":176,"props":2401,"children":2402},{},[2403,2407],{"type":72,"tag":88,"props":2404,"children":2405},{},[2406],{"type":77,"value":2301},{"type":77,"value":2408}," (poll mode)",{"type":72,"tag":176,"props":2410,"children":2411},{},[2412],{"type":77,"value":2413},"Consume from any infrastructure, not just Vercel",{"type":72,"tag":127,"props":2415,"children":2417},{"id":2416},"key-limits",[2418],{"type":77,"value":2419},"Key Limits",{"type":72,"tag":146,"props":2421,"children":2422},{},[2423,2439],{"type":72,"tag":150,"props":2424,"children":2425},{},[2426],{"type":72,"tag":154,"props":2427,"children":2428},{},[2429,2434],{"type":72,"tag":158,"props":2430,"children":2431},{},[2432],{"type":77,"value":2433},"Resource",{"type":72,"tag":158,"props":2435,"children":2436},{},[2437],{"type":77,"value":2438},"Default \u002F Max",{"type":72,"tag":169,"props":2440,"children":2441},{},[2442,2455,2468,2481,2494,2507],{"type":72,"tag":154,"props":2443,"children":2444},{},[2445,2450],{"type":72,"tag":176,"props":2446,"children":2447},{},[2448],{"type":77,"value":2449},"Message retention",{"type":72,"tag":176,"props":2451,"children":2452},{},[2453],{"type":77,"value":2454},"60s – 24h (default 24h)",{"type":72,"tag":154,"props":2456,"children":2457},{},[2458,2463],{"type":72,"tag":176,"props":2459,"children":2460},{},[2461],{"type":77,"value":2462},"Max message size",{"type":72,"tag":176,"props":2464,"children":2465},{},[2466],{"type":77,"value":2467},"100 MB",{"type":72,"tag":154,"props":2469,"children":2470},{},[2471,2476],{"type":72,"tag":176,"props":2472,"children":2473},{},[2474],{"type":77,"value":2475},"Messages per receive",{"type":72,"tag":176,"props":2477,"children":2478},{},[2479],{"type":77,"value":2480},"1–10 (default 1)",{"type":72,"tag":154,"props":2482,"children":2483},{},[2484,2489],{"type":72,"tag":176,"props":2485,"children":2486},{},[2487],{"type":77,"value":2488},"Visibility timeout",{"type":72,"tag":176,"props":2490,"children":2491},{},[2492],{"type":77,"value":2493},"0s – 60 min (default 5 min SDK \u002F 60s API)",{"type":72,"tag":154,"props":2495,"children":2496},{},[2497,2502],{"type":72,"tag":176,"props":2498,"children":2499},{},[2500],{"type":77,"value":2501},"Topics per project",{"type":72,"tag":176,"props":2503,"children":2504},{},[2505],{"type":77,"value":2506},"Unlimited",{"type":72,"tag":154,"props":2508,"children":2509},{},[2510,2515],{"type":72,"tag":176,"props":2511,"children":2512},{},[2513],{"type":77,"value":2514},"Consumer groups per topic",{"type":72,"tag":176,"props":2516,"children":2517},{},[2518],{"type":77,"value":2506},{"type":72,"tag":127,"props":2520,"children":2522},{"id":2521},"deployment-behavior",[2523],{"type":77,"value":2524},"Deployment Behavior",{"type":72,"tag":84,"props":2526,"children":2527},{},[2528,2530,2535],{"type":77,"value":2529},"Topics are ",{"type":72,"tag":88,"props":2531,"children":2532},{},[2533],{"type":77,"value":2534},"partitioned by deployment ID",{"type":77,"value":2536}," by default in push mode. Messages are delivered back to the same deployment that published them — natural schema versioning with no cross-version compatibility concerns.",{"type":72,"tag":127,"props":2538,"children":2540},{"id":2539},"observability",[2541],{"type":77,"value":2542},"Observability",{"type":72,"tag":84,"props":2544,"children":2545},{},[2546,2548,2552],{"type":77,"value":2547},"The ",{"type":72,"tag":88,"props":2549,"children":2550},{},[2551],{"type":77,"value":2301},{"type":77,"value":2553}," observability tab (Project → Observability → Queues) provides real-time monitoring:",{"type":72,"tag":146,"props":2555,"children":2556},{},[2557,2573],{"type":72,"tag":150,"props":2558,"children":2559},{},[2560],{"type":72,"tag":154,"props":2561,"children":2562},{},[2563,2568],{"type":72,"tag":158,"props":2564,"children":2565},{},[2566],{"type":77,"value":2567},"Level",{"type":72,"tag":158,"props":2569,"children":2570},{},[2571],{"type":77,"value":2572},"Metrics",{"type":72,"tag":169,"props":2574,"children":2575},{},[2576,2592,2607],{"type":72,"tag":154,"props":2577,"children":2578},{},[2579,2587],{"type":72,"tag":176,"props":2580,"children":2581},{},[2582],{"type":72,"tag":88,"props":2583,"children":2584},{},[2585],{"type":77,"value":2586},"Project",{"type":72,"tag":176,"props":2588,"children":2589},{},[2590],{"type":77,"value":2591},"Messages\u002Fs, Queued, Received, Deleted (with sparkline trends)",{"type":72,"tag":154,"props":2593,"children":2594},{},[2595,2602],{"type":72,"tag":176,"props":2596,"children":2597},{},[2598],{"type":72,"tag":88,"props":2599,"children":2600},{},[2601],{"type":77,"value":118},{"type":72,"tag":176,"props":2603,"children":2604},{},[2605],{"type":77,"value":2606},"Throughput per second (by consumer group), Max message age",{"type":72,"tag":154,"props":2608,"children":2609},{},[2610,2618],{"type":72,"tag":176,"props":2611,"children":2612},{},[2613],{"type":72,"tag":88,"props":2614,"children":2615},{},[2616],{"type":77,"value":2617},"Consumer",{"type":72,"tag":176,"props":2619,"children":2620},{},[2621],{"type":77,"value":2622},"Processed\u002Fs, Received, Deleted (per consumer group)",{"type":72,"tag":84,"props":2624,"children":2625},{},[2626,2628,2633],{"type":77,"value":2627},"Use ",{"type":72,"tag":88,"props":2629,"children":2630},{},[2631],{"type":77,"value":2632},"Max message age",{"type":77,"value":2634}," to detect consumer lag — if the oldest unprocessed message keeps growing, a consumer group may be falling behind.",{"type":72,"tag":127,"props":2636,"children":2638},{"id":2637},"local-development",[2639],{"type":77,"value":2640},"Local Development",{"type":72,"tag":84,"props":2642,"children":2643},{},[2644,2646,2651,2653,2659],{"type":77,"value":2645},"Queues work locally — when you ",{"type":72,"tag":113,"props":2647,"children":2649},{"className":2648},[],[2650],{"type":77,"value":319},{"type":77,"value":2652}," messages in development mode, the SDK sends them to the real Vercel Queue Service, then invokes your registered ",{"type":72,"tag":113,"props":2654,"children":2656},{"className":2655},[],[2657],{"type":77,"value":2658},"handleCallback",{"type":77,"value":2660}," handlers directly in-process. No local queue infrastructure needed.",{"type":72,"tag":127,"props":2662,"children":2664},{"id":2663},"authentication",[2665],{"type":77,"value":2666},"Authentication",{"type":72,"tag":84,"props":2668,"children":2669},{},[2670,2672,2677,2679,2685],{"type":77,"value":2671},"The SDK authenticates via ",{"type":72,"tag":88,"props":2673,"children":2674},{},[2675],{"type":77,"value":2676},"OIDC",{"type":77,"value":2678}," (OpenID Connect) tokens automatically on Vercel. In non-Vercel environments, set ",{"type":72,"tag":113,"props":2680,"children":2682},{"className":2681},[],[2683],{"type":77,"value":2684},"VERCEL_QUEUE_API_TOKEN",{"type":77,"value":2686}," for authentication.",{"type":72,"tag":127,"props":2688,"children":2690},{"id":2689},"when-to-use",[2691],{"type":77,"value":2692},"When to Use",{"type":72,"tag":298,"props":2694,"children":2695},{},[2696,2701,2706,2711,2716],{"type":72,"tag":302,"props":2697,"children":2698},{},[2699],{"type":77,"value":2700},"Defer expensive work (emails, PDFs, external API calls)",{"type":72,"tag":302,"props":2702,"children":2703},{},[2704],{"type":77,"value":2705},"Absorb traffic spikes with controlled processing rate",{"type":72,"tag":302,"props":2707,"children":2708},{},[2709],{"type":77,"value":2710},"Guarantee delivery even if function crashes",{"type":72,"tag":302,"props":2712,"children":2713},{},[2714],{"type":77,"value":2715},"Fan-out same events to multiple independent pipelines",{"type":72,"tag":302,"props":2717,"children":2718},{},[2719],{"type":77,"value":2720},"Deduplicate messages via idempotency keys",{"type":72,"tag":127,"props":2722,"children":2724},{"id":2723},"when-not-to-use",[2725],{"type":77,"value":2726},"When NOT to Use",{"type":72,"tag":298,"props":2728,"children":2729},{},[2730,2735,2740,2745],{"type":72,"tag":302,"props":2731,"children":2732},{},[2733],{"type":77,"value":2734},"Multi-step orchestration with state → use Workflow",{"type":72,"tag":302,"props":2736,"children":2737},{},[2738],{"type":77,"value":2739},"Recurring schedules → use Cron Jobs",{"type":72,"tag":302,"props":2741,"children":2742},{},[2743],{"type":77,"value":2744},"Synchronous request\u002Fresponse → use Functions directly",{"type":72,"tag":302,"props":2746,"children":2747},{},[2748],{"type":77,"value":2749},"Cross-region messaging → messages sent to one region cannot be consumed from another",{"type":72,"tag":127,"props":2751,"children":2753},{"id":2752},"references",[2754],{"type":77,"value":2755},"References",{"type":72,"tag":298,"props":2757,"children":2758},{},[2759,2769,2780],{"type":72,"tag":302,"props":2760,"children":2761},{},[2762,2764],{"type":77,"value":2763},"📖 docs: ",{"type":72,"tag":103,"props":2765,"children":2767},{"href":105,"rel":2766},[107],[2768],{"type":77,"value":105},{"type":72,"tag":302,"props":2770,"children":2771},{},[2772,2774],{"type":77,"value":2773},"📖 quickstart: ",{"type":72,"tag":103,"props":2775,"children":2778},{"href":2776,"rel":2777},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues\u002Fquickstart",[107],[2779],{"type":77,"value":2776},{"type":72,"tag":302,"props":2781,"children":2782},{},[2783,2785],{"type":77,"value":2784},"📖 API reference: ",{"type":72,"tag":103,"props":2786,"children":2789},{"href":2787,"rel":2788},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fqueues\u002Fapi",[107],[2790],{"type":77,"value":2787},{"type":72,"tag":2792,"props":2793,"children":2794},"style",{},[2795],{"type":77,"value":2796},"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":2798,"total":3003},[2799,2820,2843,2860,2876,2895,2914,2930,2946,2960,2972,2987],{"slug":2800,"name":2800,"fn":2801,"description":2802,"org":2803,"tags":2804,"stars":2817,"repoUrl":2818,"updatedAt":2819},"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},[2805,2808,2811,2814],{"name":2806,"slug":2807,"type":15},"Documents","documents",{"name":2809,"slug":2810,"type":15},"Healthcare","healthcare",{"name":2812,"slug":2813,"type":15},"Insurance","insurance",{"name":2815,"slug":2816,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2821,"name":2821,"fn":2822,"description":2823,"org":2824,"tags":2825,"stars":2840,"repoUrl":2841,"updatedAt":2842},"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},[2826,2829,2831,2834,2837],{"name":2827,"slug":2828,"type":15},".NET","dotnet",{"name":2830,"slug":2821,"type":15},"ASP.NET Core",{"name":2832,"slug":2833,"type":15},"Blazor","blazor",{"name":2835,"slug":2836,"type":15},"C#","csharp",{"name":2838,"slug":2839,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2844,"name":2844,"fn":2845,"description":2846,"org":2847,"tags":2848,"stars":2840,"repoUrl":2841,"updatedAt":2859},"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},[2849,2852,2855,2858],{"name":2850,"slug":2851,"type":15},"Apps SDK","apps-sdk",{"name":2853,"slug":2854,"type":15},"ChatGPT","chatgpt",{"name":2856,"slug":2857,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2861,"name":2861,"fn":2862,"description":2863,"org":2864,"tags":2865,"stars":2840,"repoUrl":2841,"updatedAt":2875},"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},[2866,2869,2872],{"name":2867,"slug":2868,"type":15},"API Development","api-development",{"name":2870,"slug":2871,"type":15},"CLI","cli",{"name":2873,"slug":2874,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2877,"name":2877,"fn":2878,"description":2879,"org":2880,"tags":2881,"stars":2840,"repoUrl":2841,"updatedAt":2894},"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},[2882,2885,2888,2891],{"name":2883,"slug":2884,"type":15},"Cloudflare","cloudflare",{"name":2886,"slug":2887,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2889,"slug":2890,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2892,"slug":2893,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2896,"name":2896,"fn":2897,"description":2898,"org":2899,"tags":2900,"stars":2840,"repoUrl":2841,"updatedAt":2913},"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},[2901,2904,2907,2910],{"name":2902,"slug":2903,"type":15},"Productivity","productivity",{"name":2905,"slug":2906,"type":15},"Project Management","project-management",{"name":2908,"slug":2909,"type":15},"Strategy","strategy",{"name":2911,"slug":2912,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2915,"name":2915,"fn":2916,"description":2917,"org":2918,"tags":2919,"stars":2840,"repoUrl":2841,"updatedAt":2929},"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},[2920,2923,2925,2928],{"name":2921,"slug":2922,"type":15},"Design","design",{"name":2924,"slug":2915,"type":15},"Figma",{"name":2926,"slug":2927,"type":15},"Frontend","frontend",{"name":2856,"slug":2857,"type":15},"2026-04-12T05:06:47.939943",{"slug":2931,"name":2931,"fn":2932,"description":2933,"org":2934,"tags":2935,"stars":2840,"repoUrl":2841,"updatedAt":2945},"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},[2936,2937,2940,2941,2942],{"name":2921,"slug":2922,"type":15},{"name":2938,"slug":2939,"type":15},"Design System","design-system",{"name":2924,"slug":2915,"type":15},{"name":2926,"slug":2927,"type":15},{"name":2943,"slug":2944,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2947,"name":2947,"fn":2948,"description":2949,"org":2950,"tags":2951,"stars":2840,"repoUrl":2841,"updatedAt":2959},"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},[2952,2953,2954,2957,2958],{"name":2921,"slug":2922,"type":15},{"name":2938,"slug":2939,"type":15},{"name":2955,"slug":2956,"type":15},"Documentation","documentation",{"name":2924,"slug":2915,"type":15},{"name":2926,"slug":2927,"type":15},"2026-05-16T06:07:47.821474",{"slug":2961,"name":2961,"fn":2962,"description":2963,"org":2964,"tags":2965,"stars":2840,"repoUrl":2841,"updatedAt":2971},"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},[2966,2967,2968,2969,2970],{"name":2921,"slug":2922,"type":15},{"name":2924,"slug":2915,"type":15},{"name":2926,"slug":2927,"type":15},{"name":2943,"slug":2944,"type":15},{"name":2838,"slug":2839,"type":15},"2026-05-16T06:07:40.583615",{"slug":2973,"name":2973,"fn":2974,"description":2975,"org":2976,"tags":2977,"stars":2840,"repoUrl":2841,"updatedAt":2986},"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},[2978,2981,2982,2985],{"name":2979,"slug":2980,"type":15},"Animation","animation",{"name":2873,"slug":2874,"type":15},{"name":2983,"slug":2984,"type":15},"Creative","creative",{"name":2921,"slug":2922,"type":15},"2026-05-02T05:31:48.48485",{"slug":2988,"name":2988,"fn":2989,"description":2990,"org":2991,"tags":2992,"stars":2840,"repoUrl":2841,"updatedAt":3002},"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},[2993,2994,2995,2998,3001],{"name":2983,"slug":2984,"type":15},{"name":2921,"slug":2922,"type":15},{"name":2996,"slug":2997,"type":15},"Image Generation","image-generation",{"name":2999,"slug":3000,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":3005,"total":3113},[3006,3023,3039,3049,3065,3081,3101],{"slug":3007,"name":3007,"fn":3008,"description":3009,"org":3010,"tags":3011,"stars":25,"repoUrl":26,"updatedAt":3022},"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},[3012,3015,3018,3021],{"name":3013,"slug":3014,"type":15},"Accessibility","accessibility",{"name":3016,"slug":3017,"type":15},"Charts","charts",{"name":3019,"slug":3020,"type":15},"Data Visualization","data-visualization",{"name":2921,"slug":2922,"type":15},"2026-06-30T19:00:57.102",{"slug":3024,"name":3024,"fn":3025,"description":3026,"org":3027,"tags":3028,"stars":25,"repoUrl":26,"updatedAt":3038},"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},[3029,3032,3035],{"name":3030,"slug":3031,"type":15},"Agents","agents",{"name":3033,"slug":3034,"type":15},"Browser Automation","browser-automation",{"name":3036,"slug":3037,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":3040,"name":3040,"fn":3041,"description":3042,"org":3043,"tags":3044,"stars":25,"repoUrl":26,"updatedAt":3048},"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},[3045,3046,3047],{"name":3033,"slug":3034,"type":15},{"name":2640,"slug":2637,"type":15},{"name":3036,"slug":3037,"type":15},"2026-04-06T18:41:17.526867",{"slug":3050,"name":3050,"fn":3051,"description":3052,"org":3053,"tags":3054,"stars":25,"repoUrl":26,"updatedAt":3064},"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},[3055,3056,3057,3060,3061],{"name":3030,"slug":3031,"type":15},{"name":2889,"slug":2890,"type":15},{"name":3058,"slug":3059,"type":15},"SDK","sdk",{"name":23,"slug":24,"type":15},{"name":3062,"slug":3063,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":3066,"name":3066,"fn":3067,"description":3068,"org":3069,"tags":3070,"stars":25,"repoUrl":26,"updatedAt":3080},"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},[3071,3072,3075,3078,3079],{"name":2926,"slug":2927,"type":15},{"name":3073,"slug":3074,"type":15},"React","react",{"name":3076,"slug":3077,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2943,"slug":2944,"type":15},{"name":13,"slug":14,"type":15},"2026-04-06T18:40:59.619419",{"slug":3082,"name":3082,"fn":3083,"description":3084,"org":3085,"tags":3086,"stars":25,"repoUrl":26,"updatedAt":3100},"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},[3087,3090,3093,3096,3099],{"name":3088,"slug":3089,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3091,"slug":3092,"type":15},"Cost Optimization","cost-optimization",{"name":3094,"slug":3095,"type":15},"LLM","llm",{"name":3097,"slug":3098,"type":15},"Performance","performance",{"name":13,"slug":14,"type":15},"2026-04-06T18:40:44.377464",{"slug":3102,"name":3102,"fn":3103,"description":3104,"org":3105,"tags":3106,"stars":25,"repoUrl":26,"updatedAt":3112},"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},[3107,3108,3111],{"name":3091,"slug":3092,"type":15},{"name":3109,"slug":3110,"type":15},"Database","database",{"name":3094,"slug":3095,"type":15},"2026-04-06T18:41:08.513425",600]