queues

Installation
SKILL.md

Cloudflare Queues

Build reliable asynchronous message processing on Cloudflare Workers using Queues for background tasks, batch operations, and retry handling.

When to Use

  • Background Tasks - Offload non-critical work from request handlers
  • Batch Processing - Accumulate messages and process in batches to reduce upstream API calls
  • Retry Handling - Automatic retries with configurable delays for transient failures
  • Decoupling - Separate producers from consumers for scalability
  • Rate Limiting Upstream - Control the rate of requests to external APIs
  • Dead Letter Queues - Capture and inspect failed messages for debugging

Quick Reference

Task API
Send single message env.QUEUE_BINDING.send(payload)
Send batch env.QUEUE_BINDING.sendBatch([msg1, msg2])
Related skills

More from null-shot/cloudflare-skills

Installs
10
First Seen
Feb 1, 2026