You opened n8n.io/workflows, scrolled for a few minutes, and closed the tab. I don’t blame you. There are 9,166 community templates in there right now, and that number is built to impress, not to help a small business owner decide where to start.
Almost every project I take on ends up using variations of the same ten workflows. Invoice OCR to catch the supplier PDFs. Lead capture to get web-form enquiries into the CRM before the owner forgets. Support email triage. Overdue payment reminders. A Monday morning KPI digest. A Shopify order sync. A low-stock alert. Calendly onboarding. Social cross-posting. Bank reconciliation.
This post is those ten. Each one has a direct link to the official n8n template that gets you 80% of the way there. The last 20% is what I customize for each client, and I’ll note it under each entry.
For context, the n8n repo just crossed 184,000 GitHub stars, and the community library grows by the week. Size is not the problem. Navigation is.
Not the most popular. The most useful.
If you sort the template library by popularity, you mostly get AI chat interfaces, crypto price monitors, and Telegram relays. Those are fun to build. They are not what a small business owner is losing sleep over.
The filter I use is boring on purpose: a template gets on this list only if it replaces daily admin that a human currently does by hand. That rules out 90% of the library. What’s left is the work that never gets faster unless you automate it. Typing supplier invoices into a sheet. Chasing overdue payments. Routing inbound email. Answering “how did we do last week?” every Monday morning.
A useful side effect: these templates are all boring enough to audit. No hidden AI charges, no “free trial that expires in 7 days”. If something breaks, I can explain what happened in one paragraph.
1. Invoice OCR: supplier PDFs to a structured sheet
Your supplier sends you a PDF. You or your bookkeeper opens it, reads the vendor name, line items, total, VAT, and due date, and types it into a spreadsheet. Every supplier, every week.
This template replaces that. A Google Drive or Gmail trigger watches for new PDFs, Mistral OCR reads the page, a Gemini node extracts the fields, and a row gets appended to a Google Sheet. The processed PDF moves to an archive folder so nothing gets lost.
Office workers spend about 10% of their time on manual data entry, and inbound invoices are the single worst offender. This is the first automation I build for almost every new client, because it pays for itself the week you install it.
Template: Extract Invoice Data from Google Drive to Sheets with Mistral OCR and Gemini.
If you want the outbound side (generating and emailing the invoices you send out), I have a separate write-up for that: Free n8n Template: Automated Invoice Generator.
2. Overdue payment chaser with an AI-drafted tone
Invoices go out. Some get paid. Some don’t. The awkward follow-up email is the job nobody on a small team wants to send, so it doesn’t get sent, so the cash flow gets worse.
This workflow runs once a day. It reads your invoice register, filters anything unpaid and past the due date, and drafts a reminder email in the owner’s voice. The owner reviews and hits send, or the workflow sends automatically after the second reminder if you trust it.
The trick that separates this from a dumb cron job is the AI tone. Reminder 1 to a good client is gentle. Reminder 3 to someone who’s been ignoring you is firmer. You don’t want to write those templates yourself, and you definitely don’t want to mix them up.
Template: AI-Powered Invoice Reminder and Payment Tracker. If you want the heavier end-to-end version that hooks into Stripe and Google Workspace, this one is the upgrade.
3. Lead capture: web form to CRM to Slack
A prospect fills in your web form at 11pm. You read it the next morning, forget to follow up until the afternoon, and by then they’re comparing you to two competitors.
This template closes that gap. Form submission triggers the workflow, a dedupe step checks if the email is already in the CRM, an AI scoring node tags the lead as hot, warm, or cold, and hot leads get pinged to a sales Slack channel immediately. Warm leads drop into a marketing sequence. Cold leads go to a review queue.
A 2025 roundup of sales automation data found that 69% of sellers using AI shortened their sales cycles. Most of that speed comes from not missing hot leads in the first place. You can’t respond to a prospect you didn’t see.
Template: Automated Lead Capture, Scoring and CRM Integration with HubSpot, Clearbit and Slack. If you use Jotform and Gemini instead of HubSpot and Clearbit, this variant is closer.
4. Support email triage: AI classifies, routes, or drafts a reply
Your shared support@ inbox is a dumping ground. Shipping questions, refund requests, partnership pitches, and the occasional angry customer all land in the same place. You read everything to be safe, which means you spend an hour a day triaging instead of fixing.
This workflow reads each inbound email, classifies it with a language model (Support, Sales, Billing, Spam, Urgent), and routes accordingly. Routine shipping questions get an auto‑drafted reply for your review. Urgent ones ping Slack immediately. Spam goes to a quiet folder. The owner only reads what actually needs them.
The average knowledge worker spends 8.2 hours a week looking for, recreating, or duplicating information. A good chunk of that is rereading support tickets to decide what to do with them. This template turns that into a one-second decision.
Template: AI-Powered Email Triage and Auto-Response System with OpenAI Agents and Gmail. For a simpler version that just flags urgent emails to Slack, use this one.
5. Shopify order sync with line-item parsing
You run a Shopify store. Your marketing spend lives in Google Sheets. Your fulfillment team works from a different sheet. At the end of the month, someone (usually you) exports orders to CSV and reconciles the numbers by hand.
This template puts every new order in the sheet the moment it’s placed. The Shopify webhook fires, the workflow parses line items and shipping details, and a row lands in Google Sheets with customer name, items, quantity, total, and status. A Telegram message pings the owner for orders over a threshold.
Template: Automatically Store Shopify Orders in Google Sheets with Telegram Notifications. If you prefer Airtable, this one maps the same data into a structured base.
If you’d rather build the flow from scratch instead of importing a template, I wrote a step-by-step guide for a similar pattern: Free n8n Template: Sync Shopify Orders to Google Sheets.
6. Low-stock alert with a draft purchase order
The shop runs out of its top seller because nobody watches the stock column. The owner only notices when a customer asks. By then the supplier’s shipping window is two weeks out.
This one runs on a daily schedule. It reads inventory from Airtable or Shopify, filters anything below a threshold, and builds a draft purchase order email with item list, quantities, and the supplier’s usual lead time. The owner reviews and sends, or hits delete if the situation has already been handled.
The AI part is optional but useful. A smarter version of this template picks the right supplier for each SKU and adjusts the reorder quantity based on last month’s sales velocity. The owner is still in the loop for approval, because stock decisions are one place you do not want a fully automated sender.
Template: Automated Inventory Management with Airtable, PO Creation and Supplier Emails. If all you need is a Slack alert and no PO draft, this simpler one works. For AI-assisted supplier selection, this newer template is the upgrade.
7. Calendly booking: CRM record, welcome email, owner alert
A prospect books a discovery call through Calendly. You find out when you open your calendar the morning of the meeting. You walk in cold, with no idea who they are or what they want to talk about.
This workflow runs the moment the booking happens. It creates a record in your CRM (Notion, HubSpot, or Airtable), sends the prospect a branded welcome email with an agenda and what to prepare, and pings you in Telegram or Slack so you can glance at their company before the call. An optional AI step scrapes their website and LinkedIn to drop a short briefing into the record.
Template: Automated Client Onboarding System with Notion, Email and CRM Integration. The pre‑meeting research version is here. If you want the dead-simple Sheets-only variant, use this one.
8. One post, every platform, AI rewrites per audience
You wrote one good post. You published it on LinkedIn. It sat there. You didn’t have the energy to rewrite it for X, Threads, and Reddit, so you didn’t.
This template takes a single source post (RSS, a WordPress publish event, or a row in a sheet) and has an AI rewrite it for each platform’s audience. The LinkedIn version opens with a hook that reads like an exec wrote it. The X version is shorter and sharper. The Threads version is chattier. Each one gets published through the platform’s own API and logged in a tracking sheet.
This is the template where AI is not just reading something. It’s making a call. The LinkedIn rewrite decides what gets bolded and what gets cut. The X rewrite decides where the thread breaks. Dumb rule-based cross-posters don’t do that. If you care about not sounding like a bot on every platform, this matters.
Template: Auto-Publish Web Articles as Social Posts for X, LinkedIn, Reddit and Threads with Gemini. If you want a human approval step before publishing, this one has it built in.
9. Monday morning KPI digest
Every Monday morning your team asks some version of “how did we do last week?” and the answer lives in three places: the sales dashboard, the Stripe dashboard, and the Google Sheet where support tickets get logged. Nobody wants to open three tabs and math.
This workflow runs at 8am on Monday. It reads the relevant sources, hands the numbers to an AI summarizer with a short prompt (“compare this week to last week, highlight anomalies, keep it to five bullets”), and sends the owner a clean HTML email before the team’s first standup.
I should be honest about this one. The n8n template library is thin on pure KPI digests that fit a small business. The closest match is a Google Docs weekly summarizer, which is a starting point but not a drop-in. This is the template I usually build from scratch for each client, because every owner cares about different numbers. I’m including it anyway because replacing the Monday “check three dashboards” ritual is one of the highest-leverage automations you can install.
Starting template: Generate Weekly Document Digests from Google Docs with GPT-4 and Email Delivery. Treat it as a reference for how to structure the summarization call, then replace the data source with whatever matters to your business.
10. Bank reconciliation: match invoices to statement lines
Your bookkeeper spends a chunk of every Friday matching bank line items to invoice PDFs. Most matches are boring (amount plus date plus vendor), but the messy 20% (partial payments, wrong references, FX differences) eats the whole afternoon.
This template imports the bank CSV, reads the invoice folder, and uses an AI matcher to pair bank lines with invoices on fuzzy criteria (amount within 0.5%, date within 3 days, vendor name similarity). Anything it’s confident about gets marked paid automatically. Anything it isn’t goes to a review queue for a human.
73% of companies are still wasting time on manual planning and data entry according to Zip’s 2025 automation survey, and reconciliation is one of the worst offenders. This is a newer template (it shipped in 2026) and it works best if your invoices and statements are reasonably clean. Don’t point it at a decade of mystery transactions on day one.
Template: Automate Invoice and Bank Statement Reconciliation with Mistral AI and OpenAI GPT-4.
The ten templates in one table
| # | Template | Replaces |
|---|---|---|
| 1 | Invoice OCR to Sheets | Manual data entry from supplier PDFs |
| 2 | AI overdue payment chaser | Awkward follow-up emails that never get sent |
| 3 | Lead capture with scoring | Missing hot leads because you didn't see the form |
| 4 | Support email triage | Reading every shared-inbox email to decide what to do |
| 5 | Shopify order sync | Monthly CSV exports and hand reconciliation |
| 6 | Low-stock alert and PO draft | Stockouts because nobody watches the stock column |
| 7 | Calendly onboarding | Walking into discovery calls cold |
| 8 | AI cross-posting | Publishing to one platform because you ran out of energy |
| 9 | Monday KPI digest | Opening three dashboards and doing mental math |
| 10 | Bank reconciliation | Friday afternoons matching statements to invoices |
Pick two, not ten
You can’t install all ten in one week. You also don’t need to. The honest ranking, by daily impact on the owner’s time, is to start with #1 (invoice OCR) and #4 (support triage). Those are the two almost every small business can install immediately and feel the effect of by Friday.
Once those are running and you trust them, add #2 (overdue chaser) and #9 (KPI digest). The first stops the slow leak in your cash flow. The second gives you back Monday morning. After that, the rest depends on what you do. Run an ecommerce store? #5 and #6 come next. Sell services? #3 and #7. The social cross-poster (#8) is nice to have, not urgent. Bank reconciliation (#10) is worth it once you’re past the point where a human can eyeball every line.
A rule of thumb: only install a new automation when the last one is boring. Boring means running for three weeks without a failure, without the owner asking questions about it, and without an exception that broke the flow. Boring is the goal. Excitement in a production workflow is a bug.
Running ten workflows is cheap
The cost structure breaks into three buckets: n8n itself, the AI calls, and the third-party APIs. Here’s what those look like once you scale to all ten templates.
| Component | Monthly cost | Notes |
|---|---|---|
| n8n (self-hosted on Hetzner CX22) | €3.85 | One VPS runs all ten with room to spare |
| n8n Cloud Starter (alternative) | €24 | 2,500 workflow executions, no server to manage |
| OpenAI, Anthropic, or Gemini API | $2 to $10 | For the AI steps in 6 of the 10 templates |
| Mistral OCR (invoice and reconciliation) | $0 to $5 | Free tier covers most SME volume |
| Third-party APIs (Shopify, Stripe, Calendly, Gmail) | $0 | You already pay for these. The workflows reuse your existing accounts. |
Self-hosting all ten costs roughly €10 per month including AI. On n8n Cloud, budget around €35. Either way, it’s less than a single hour of bookkeeper time.
For a deeper cost comparison between n8n Cloud and self-hosted, see n8n Pricing Explained: Cloud vs Self-Hosted Costs in 2026. If you want to self-host, my Docker setup guide walks through the whole stack.
Two things worth knowing
Templates are starting points, not finished products. Every template on this list was built by someone with a particular use case in mind. The auth credentials are theirs, the field names match their sheet, the AI prompts match their voice. Your first job after importing is to replace all three. Don’t treat templates as production-ready on day one.
An n8n workflow is a foundation. Most SMEs install one template and realize they need the next one. The invoice OCR feeds into the bookkeeping, which feeds into the reconciliation, which feeds into the Monday KPI digest. Each piece is cheap on its own. The real value is that they compose. A Shopify app gives you one thing. A workflow gives you a building block you can extend for years.
If you want help setting any of these up, customizing them for your specific stack, or wiring them together into something more ambitious, send me an email. First conversation is always free.