Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/secondsky/claude-skills/queue-setupgit clone --depth 1 https://github.com/secondsky/claude-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/secondsky/claude-skills/queue-setup)<a href="https://agentmods.dev/commands/secondsky/claude-skills/queue-setup"><img src="https://agentmods.dev/badge/commands/secondsky/claude-skills/queue-setup.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00047 | $0.03694 |
| Opus 5 | $0.00023 | $0.01847 |
| Sonnet 5 | $0.00009 | $0.00739 |
| Haiku 4.5 | $0.00005 | $0.00369 |
Grade A, and why
cloudflare-queues:setup scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://your-worker.workers.dev/send \ How it starts
The opening of the file, as written. The whole thing — 635 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Queue Setup Wizard
Overview
Interactive wizard for complete Cloudflare Queues setup: create queue, configure producer/consumer bindings, set up DLQ, and provide example code.
Prerequisites
Check before starting:
- Cloudflare account with wrangler authenticated (
wrangler whoami) - Existing Worker project or willingness to create one
- Write access to wrangler.jsonc/wrangler.toml
Steps
Step 1: Gather Requirements
Use AskUserQuestion to collect setup preferences.
Question 1: Queue Name
- Header: "Queue Name"
- Question: "What should the queue be named?"
- multiSelect: false
- Options:
- Label: "Descriptive name (e.g., order-processing)" Description: "Describes what the queue processes"
- Label: "Environment-specific (e.g., prod-notifications)" Description: "Includes environment in the name"
- Store user response as:
queueName - If user provides custom text, validate: alphanumeric + hyphens only
Question 2: Queue Purpose
- Header: "Purpose"
- Question: "What will this queue be used for?"
- multiSelect: false
- Options:
- Label: "Producer only (send messages from Worker)" Description: "Worker will send messages to queue, consumed elsewhere"
- Label: "Consumer only (process messages in Worker)" Description: "Worker will process messages from queue"
- Label: "Both producer and consumer (Recommended)" Description: "Worker will both send and process messages"
- Store as:
queuePurpose
Question 3: Consumer Settings (if purpose includes consumer)
- Header: "Consumer"
- Question: "Which consumer settings?"
- multiSelect: false
- Options:
- Label: "Standard (batch: 10, retries: 3, concurrency: 1) (Recommended)" Description: "Balanced settings for most use cases"
- Label: "High throughput (batch: 50, retries: 1, concurrency: 5)" Description: "Fast processing for high-volume queues"
- Label: "Low latency (batch: 1, retries: 3, concurrency: 1)" Description: "Minimal delay for time-sensitive messages"
- Label: "Custom (I'll specify)" Description: "Provide your own batch size, retries, concurrency"
- Store as:
consumerSettings - If "Custom" selected, ask follow-up for batch_size, max_retries, max_concurrency
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 635 lines · 47 tokens per session scan A e93394e9e6bd
cloudflare-queues:setup is a command published in the GitHub repository secondsky/claude-skills (214 stars, last pushed yesterday), licensed MIT. It adds 47 tokens to every session and 3,694 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
correlate
Find related failures through pattern matching.
diff
Compare two command outputs with intelligent diff.
open
Open/retrieve an offloaded output by ID or shortcut.
search
Search through offloaded outputs with hard caps.
stats
Show FewWord session statistics with rich output and token savings.
timeline
Visual timeline of command outputs in current session.