queue-debouncing

A set of rules for delaying duplicate Laravel queue jobs, which are background tasks processed by a Laravel application.

In plain words
What is it for?
Use it when designing delayed or repeat-triggered work such as search indexing, cache refreshes, previews, summaries, or customer-data synchronisation.
Why use it?
It prevents replaceable work from running repeatedly while protecting events that must be recorded or handled every time.

Cursor rule

Install

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.

agentmods
npx agentmods add rules/pekral/cursor-rules/queue-debouncing
Clone the repo
git clone --depth 1 https://github.com/pekral/cursor-rules
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,288 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01288
Opus 5 $0.00000 $0.00644
Sonnet 5 $0.00000 $0.00258
Haiku 4.5 $0.00000 $0.00129

Measured yesterday against content hash 9f009100c492, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

queue-debouncing scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules/laravel/queue-debouncing.mdc · 206 lines

How it starts

The opening of the file, as written. The whole thing — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Laravel Queue Debouncing

Core Principle

  • Debounce only work where the latest state safely replaces previous triggers.
  • Debounce belongs to a replaceable outcome, not to a generic entity.
  • A debounce key must describe what result may be safely replaced, not only which model changed.

Good debounce keys describe the replaceable outcome:

read-model:order:123
crm-sync:user:42
search-index:post:99
usage-summary:account:7
preview-render:document:15

Bad debounce keys are too generic and collapse unrelated business events:

order:123
user:42
account:7
project:15

Allowed Use Cases

Debouncing is allowed only for convergent work where intermediate states may be skipped safely:

  • Search index rebuilds
  • Cache refreshes
  • Read model rebuilds
  • CRM/profile snapshot syncs
  • Preview/render regeneration
  • Aggregate/statistical summary recalculation
  • Expensive derived data refreshes

Forbidden Use Cases

Never debounce meaningful business events where each occurrence has its own meaning. Do not debounce:

  • Payments
  • Refunds
  • Password changes
  • Security alerts
  • Audit logs
  • Webhook event recording
  • Fulfillment or shipment transitions
  • User-visible notifications expected immediately
  • Anything where order, timing, or exact occurrence matters

Split Mixed-Urgency Workflows

Split urgent and replaceable work into separate jobs. Urgent jobs must stay immediate and idempotent; convergent jobs may be debounced.

Bad — one generic sync job hides both urgent and convergent side effects:

SyncOrder::dispatch($order->id);

Good — explicit jobs with clear business meaning:

ProcessCapturedPayment::dispatch($payment->id, $order->id);

RefreshOrderReadModel::dispatch($order->id);
SyncOrderSnapshotToCrm::dispatch($order->id);

Idempotency Is Still Required

Debounce does not replace idempotency.

  • Debounce answers: should we avoid running this repeated work too many times?
  • Idempotency answers: is the result still correct if this job runs more than once?

Read the full file on GitHub · 206 lines

Changes

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.

  1. yesterday First seen · 206 lines · 0 tokens per session scan A 9f009100c492

Subscribe to this mod's changes

queue-debouncing is a cursor rule published in the GitHub repository pekral/cursor-rules (6 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,288 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.