background-jobs-designer

Installation
SKILL.md

Background Jobs Designer

Design reliable background job processing with retries and monitoring.

Queue Integration

BullMQ (Node.js):

import { Queue, Worker } from "bullmq";

const emailQueue = new Queue("email", {
  connection: { host: "localhost", port: 6379 },
});

// Add job
await emailQueue.add(
  "send-welcome",
  {
Related skills

More from patricio0312rev/skills

Installs
108
GitHub Stars
38
First Seen
Jan 24, 2026