Automation that runs in the background
Automation is the part that works while you are asleep or on a job. These are the background workers that run on a schedule and move information from one place to another without anyone pressing a button. A reminder goes out on the right day. An enquiry that lands at night gets read and sorted before you are back at your desk. This is the layer behind jobs like "Get paid without the awkward chase", where overdue reminders send themselves on a schedule in your name, and "Stop retyping the same data between systems", where a detail entered once stops getting keyed in three times. None of it needs you to remember it, which is the whole point.
n8n
A tool for building automations that connect your apps and run steps on their own, without custom code for every little task. It is the workbench where a lot of the background work gets assembled: this happens, then that happens, then a message goes out. It is behind moving information between systems in "Stop retyping the same data between systems".
n8n LangChain nodes
Add-ons that let those automations include an AI step, not just plain moving of data. With them, an automation can read something, decide about it, or draft a reply in the middle of its run. That is what stands behind drafting a review reply on a schedule in "Reply to every review in your own voice".
Vercel Cron
A simple, reliable alarm clock for a build. It runs a job at set times, day after day, with nobody having to remember. It is what makes the overdue reminders in "Get paid without the awkward chase" go out on the right day on their own.
Used in: Get paid without the awkward chase
Redis
A very fast, short-term memory a build can use to hold things for a moment or to line jobs up in order. It is not where your lasting data lives; it is the scratchpad and the queue that keep background work moving smoothly. It works hand in hand with the job runner below.
BullMQ
A tool that lines up background jobs and runs them reliably, retrying the ones that fail and keeping them in order. When reminders or follow-ups need to go out steadily rather than all at once, this is what paces them. It is the engine underneath the timed, on-a-schedule work in jobs like "Get paid without the awkward chase".
Used in: Get paid without the awkward chase