background-jobs
SolidUse when designing asynchronous job processing. Covers queue selection, idempotency, retry and backoff policy, scheduling, poison messages, and observability for work that happens outside the request.
Install
Quality Score: 84/100
Skill Content
Details
- Author
- nimadorostkar
- Repository
- nimadorostkar/Claude-Skills-collection
- Created
- 2 weeks ago
- Last Updated
- yesterday
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
background-jobs
Run asynchronous work through queues with safe retries, poison-message handling, and idempotent jobs. Use when moving work out of the request path or fixing duplicated, stuck, or lost jobs.
background-jobs
Model long-running or scheduled work as background jobs — never inline in a request handler. Use for batch processing, PDF generation, reminders, or payroll run processing.
background-job
Implements idempotent background jobs for batch processing, reminders, and async work. Use when work must not run inline in a request.