queues
✓Asynchronous message queues for reliable background processing. Load when offloading background tasks, batch processing messages, implementing retry logic with dead letter queues, rate limiting upstream APIs, or decoupling producers from consumers.
Installation
SKILL.md
Build reliable asynchronous message processing on Cloudflare Workers using Queues for background tasks, batch operations, and retry handling.
| Send single message | env.QUEUEBINDING.send(payload) | | Send batch | env.QUEUEBINDING.sendBatch([msg1, msg2]) | | Define consumer | async queue(batch: MessageBatch, env: Env) { ... } | | Access message body | batch.messages.map(msg => msg.body) | | Acknowledge message | Messages auto-ack unless handler throws |
| Retry message | throw new Error() in queue handler | | Get batch size | batch.messages.length |
Asynchronous message queues for reliable background processing. Load when offloading background tasks, batch processing messages, implementing retry logic with dead letter queues, rate limiting upstream APIs, or decoupling producers from consumers. Source: null-shot/cloudflare-skills.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/null-shot/cloudflare-skills --skill queues- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is queues?
Asynchronous message queues for reliable background processing. Load when offloading background tasks, batch processing messages, implementing retry logic with dead letter queues, rate limiting upstream APIs, or decoupling producers from consumers. Source: null-shot/cloudflare-skills.
How do I install queues?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/null-shot/cloudflare-skills --skill queues Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/null-shot/cloudflare-skills
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01