background-jobs

Installation
SKILL.md

Background Jobs

Overview

Background jobs enable asynchronous processing of tasks outside the request-response cycle. This skill covers job queue patterns, scheduling, worker management, retry strategies, and monitoring for reliable task execution across different frameworks and languages.

Key Concepts

Job Queue Patterns

Bull Queue (Node.js/Redis):

import Queue, { Job, JobOptions } from "bull";
import { Redis } from "ioredis";
Installs
39
Repository
cosmix/loom
GitHub Stars
50
First Seen
Jan 23, 2026
background-jobs — cosmix/loom