Let's chat

Your team is drowning in manual work — here’s how to fix it

A practical guide to automating repetitive business tasks. From off-the-shelf tools to custom-built solutions and AI-augmented workflows — how to decide what to automate, how far to go, and when to stop.

The bottom line

Audit before you automate — fix the process first, then pick the tool. Start with the task that frustrates your team most, use Zapier or Make for the 80% case, and ship something this week. The best automation is the one that actually gets built, not the one with the best architecture.

You already know the problem

If your team spends hours copying data between systems, generating the same report every week, reformatting files from one tool to another, or manually responding to repetitive requests with slight variations — you do not need a consultant to tell you something is broken.

You already know. You have known for months. Maybe years.

Let me make the financial impact concrete. If your team spends 4 hours per week on a manual process, and the average loaded cost of the people doing it is €50 per hour, that process costs you roughly €10,400 per employee per year. For a 20-person team, that is over €200,000 per year spent on work that produces zero competitive advantage, builds no institutional knowledge, and makes your team miserable.

The hidden cost is worse than the visible one. The best people on your team — the ones with judgment, context, creativity — are spending their energy on work that does not require any of those qualities. They are not burning out because the work is hard. They are burning out because it is pointless — and they know it.

Builder’s note

This happens at every scale. A 40-person SaaS company where the operations team spent 15 hours a week reformatting XML exports by hand. A 5-person startup where the founder personally copied data between Airtable and their CRM every morning.

The symptom is always the same: smart people doing dumb work, and knowing it.

The good news: this is solvable, and usually with something far simpler than you think. Simple automations typically break even after 4–6 weeks. Even complex projects show ROI within 6–12 months. McKinsey estimates that currently demonstrated technologies could automate 57% of US work hours — and 60% of businesses have already implemented some form of process automation.

The automation spectrum

Most articles about automation present it as a binary: either you automate or you don’t. The reality is a spectrum, and understanding where you are on it — and where you should be — is the first real decision.

Here is how I think about it, from lightest to heaviest:

ApproachBest forToolsTradeoffsTypical cost
Off-the-shelf“When X happens, do Y” connections between 2–3 popular tools
ZapierZapier MakeMake n8nn8n
Fast to set up but per-task pricing scales badly. Zapier charges per step; n8n per workflow.€0–50/mo
Custom scriptsData conversion, file processing, merging multiple sources
PythonPython RubyRuby
Requires a developer to build. Near-zero running cost at any volume.€2K–8K one-time
Purpose-built toolsWorkflow-specific UIs, browser extensions, admin dashboards
RetoolRetool BbBudibase
Higher upfront cost but built around your exact process. You own it.€5K–20K
AI-augmentedClassification, extraction, generation from unstructured data
OpenAIOpenAI AnthropicAnthropic
95%+ accuracy on classification. Requires human review for final output.€5K–30K + ~€50/mo LLM
Off-the-shelf
Best for“When X happens, do Y” connections between 2–3 popular tools
TradeoffsFast to set up but per-task pricing scales badly. Zapier charges per step; n8n per workflow.
Cost€0–50/mo
ZapierZapier MakeMake n8nn8n
Custom scripts
Best forData conversion, file processing, merging multiple sources
TradeoffsRequires a developer to build. Near-zero running cost at any volume.
Cost€2K–8K one-time
PythonPython RubyRuby
Purpose-built tools
Best forWorkflow-specific UIs, browser extensions, admin dashboards
TradeoffsHigher upfront cost but built around your exact process. You own it.
Cost€5K–20K
RetoolRetool BbBudibase
AI-augmented
Best forClassification, extraction, generation from unstructured data
Tradeoffs95%+ accuracy on classification. Requires human review for final output.
Cost€5K–30K + ~€50/mo LLM
OpenAIOpenAI AnthropicAnthropic

Off-the-shelf: the fastest path

ZapierZapier Professional starts at €19.99/mo for 750 tasks.
MakeMake Core offers 10,000 operations for €9/mo.
n8nn8n is free if self-hosted, or from €20/mo cloud-hosted.

One critical distinction that vendor pages never explain: n8n counts one execution per entire workflow regardless of steps. Zapier charges per step. A 20-step workflow costs 20× more on Zapier.

Custom scripts: the invisible workhorse

Small, focused programs that solve one specific problem. A Python script that converts XML to CSV. A data merger that pulls from three sources into one clean report. Typically 50–500 lines of code, built in hours or days.

At 100K operations per month, Zapier costs €2,000–4,000. The script costs the same €5–20/month server it was already running on.

AI-augmented: the new frontier

Tasks that required human judgment — classifying documents, writing contextual responses, extracting meaning from unstructured text — can now be handled by LLMs.

Classification and routing achieve 95%+ reliability. Email classification reaches 98% accuracy, reducing manual sorting by 85–95%.

The fundamental shift: traditional automation needs structured data and fixed rules. AI handles unstructured data and uses contextual evaluation.

The mistake most teams make is jumping to the wrong level. They try to build a custom platform when a Zapier workflow would do. Or they stay on Zapier for years, hitting its limits every week, when a simple script would have solved the problem permanently months ago.

The right level depends on three things: how specific your problem is, how often it occurs, and how much data transformation is involved. A standard webhook-to-email notification belongs on Zapier. A proprietary data format that needs parsing, validation, and routing belongs in custom code.

The fine print: when no-code tools hit their ceiling

No-code automation tools are genuinely excellent for connecting APIs with simple transformations. But they have real limits that become painful at scale:

  • Data transformation complexity. Zapier and Make can map fields, do basic math, and format strings. But if you need to parse a nested XML structure, apply business rules conditionally, or merge data from multiple sources with conflict resolution — you will be fighting the visual builder instead of solving the problem.
  • Error handling. When a Zap fails, you get an email. When a custom script fails, you can retry, log, alert, fall back to a default, or queue for manual review. The difference matters when the automation handles real business data.
  • Cost at volume. A manufacturing company’s Zapier bill jumped from £400 to £1,200/month when simple workflows evolved into multi-step processes. A 9-step workflow processing 200 orders per day generates 54,000 tasks per month — well beyond any Professional tier. Meanwhile, a custom solution on a €5–20/month server handles the same volume at near-zero marginal cost.
  • Processing speed. Zapier’s instant triggers hit 429 rate-limit errors at 20,000 requests per 5 minutes. Polling triggers on the free tier introduce 15-minute delays; Professional brings that down to 2 minutes. Webhook-based custom architectures process events near-instantly.
  • Platform limits. Zapier code steps have a 3-minute maximum runtime. Maximum 600 flows per account. As one developer put it: “I had a single automation with 47 steps, 9 branches, and 2 internal tears.”
  • Vendor dependency. Your Zapier workflows are not portable. If their API connector breaks, or they change pricing (which happens), you are stuck rewriting everything anyway.

None of this means no-code tools are bad. It means they are tools with a specific sweet spot, and you should use them when you are in that sweet spot.

How to decide what to automate first

You probably have a dozen tasks that could be automated. You cannot do them all at once. So the question becomes: which one first?

Warning

Before we get to prioritization, there is a more important question that most automation advice skips entirely.

Do not automate broken processes. Automating a bad process just makes it fail faster. PwC puts it starkly: “Technology delivers only about 20% of an initiative’s value. The other 80% comes from redesigning work.”

A global bank estimated 80% automation potential — which shrank to under 10% once development began, because they had not fixed the process first. If three people do a task three different ways, standardize before you automate.

Once you are confident the process is sound, I use a simple formula to prioritize. It is not sophisticated, but it works:

Frequency × Time × Error Cost = Priority

Score each factor 1–3. The highest total wins.

Frequency

How often does this task happen? Daily tasks compound savings fastest.

Time

How long does it take each time? People underestimate — go time it.

Error Cost

What happens when someone does it wrong? Billing errors cost more than typos.

For more precision, filter candidates through four factors. Score each 1–3 and start with the highest total:

  1. Frequency. 20+ times per week generates enough volume to justify automation.
  2. Rule-based logic. Clear, documentable decisions automate cleanly. If the logic fits in a flowchart, it fits in code.
  3. Structured data. Forms, databases, spreadsheets = lower complexity. Unstructured text, images, and PDFs = higher complexity (but AI is closing this gap).
  4. Stability. Processes unlikely to change in 12–24 months maintain their ROI. Automate stable processes first.

Now walk through your team’s work for the past two weeks and list every task that involved one of these patterns:

  • Copy-paste between systems. Moving data from one application to another, manually. If you are copying rows from an export file into another tool, that is automation candidate number one.
  • File format conversion. Receiving data in one format and needing it in another. XML to CSV. PDF to structured data. Email attachments into a database.
  • Report generation. Pulling numbers from multiple sources, assembling them into a document, and sending it to stakeholders. If the structure is the same every time and only the numbers change, a script can do this.
  • Repetitive communication. Sending similar messages with minor variations. Follow-up emails, status updates, acknowledgment responses. If you are writing the same email for the 50th time with only the name and date changed, that is not “personal touch” — that is waste.
  • Data validation and cleanup. Checking incoming data for errors, fixing formatting inconsistencies, deduplicating records. This is work that computers do better than humans, every single time.

For each task, estimate the three variables. Be honest. People tend to underestimate how often they do something (“it is not that frequent”) and underestimate how long it takes (“maybe 20 minutes” — go time it, it is probably 45).

Practical tip

Ask your team this question: “If I could magically eliminate one repetitive task from your week, which one would it be?” The answer is almost always the right place to start. People know what wastes their time. They have just stopped complaining about it because they assume nothing will change.

The quick-win test

Before diving into the highest-priority item, ask one more question: is there a task on the list that could be automated in under a day?

Even if it is not the highest priority by the formula, shipping a quick automation win does something important — it proves to your team that things can actually get better. Momentum matters more than optimization in the early stages.

Teams spend months debating which automation to build first, running cost-benefit analyses, writing RFPs — and meanwhile the operations team keeps spending 10 hours a week on the exact same manual process. Do not let perfect prioritization become an excuse for inaction.

What should you automate first?

Based on what I see most often with clients, these are the processes with the highest return on automation investment:

2h lag → 2 min
Lead response

CRM entry, auto-reply, team notification. When a lead comes in, the clock starts.

€12.90 → €2–3 per invoice
Invoicing

Generation and follow-up reminders. At 200 invoices per month, the savings add up fast.

Same checklist, every time
Client onboarding

Folder creation, welcome emails, access provisioning. Make the computer do the checklist.

5+ hrs/week on a 15-person team
Meeting follow-ups

Action item extraction and assignment. 20 minutes per meeting adds up across a team.

Same structure, different numbers
Weekly reporting

Data aggregation and formatting. If only the numbers change, this is automation at its most straightforward.

The “good enough automation” principle

Here is where most automation projects go wrong: they try to handle every edge case from day one.

Someone says “we need to automate our invoice processing.” A month later, you have a spec for a system that handles 47 different invoice formats, auto-categorizes expenses using ML, integrates with four accounting platforms, and sends intelligent reminders based on payment patterns.

The original problem — “we manually enter invoice data into our accounting tool, and it takes 5 hours a week” — has been lost in the ambition.

Good automation solves 80% of cases perfectly and routes the remaining 20% to a human.

That is the principle. And it is counterintuitive, because our engineering instincts tell us to handle every case. But in practice, the last 20% of cases take 80% of the effort, and a human can handle them in minutes anyway.

Research backs this up: a 60–80% automation rate is the threshold for economic viability. Below 60%, human oversight cost negates the benefit. Above 80%, complexity and maintenance costs escalate faster than the returns.

Builder’s note

I call this the bicycle principle. Do not build a spaceship when a bicycle works. A bicycle gets you from A to B faster than walking. It is cheap, simple, and you can fix it yourself.

If you later discover you need to cross an ocean, then you build a boat. But most trips are to the corner store, and a bicycle is perfect for that.

Concretely, this means:

  • Start with the most common case. If 80% of your invoices come from 5 suppliers in the same format, automate those 5 first. The remaining 30 suppliers with unique formats can wait.
  • Build in a “bail out” path. When the automation encounters something it does not recognize, it should flag it for human review instead of crashing or producing bad data. This is the most important architectural decision you will make.
  • Ship it imperfect and iterate. Your first version will miss things. That is fine. Each week, look at what got flagged for manual handling, identify patterns, and automate the next most common case. After a month, your 80% is usually 95%.

The cautionary tale is worth mentioning. A multinational retailer spent $500M automating inventory management with SAP without fixing the underlying process. After three years, they reverted to manual operations.

Automating a broken process does not fix it — it scales the brokenness.

The teams that succeed at automation are not the ones that build the most sophisticated systems. They are the ones that fix the process first, then ship the simplest thing that makes a real difference, and improve it based on what they learn.

Real examples: from 3 hours to 5 minutes

These are two real automation projects I built for Guest Suite, a SaaS platform in the hospitality and local business review space.

Guest Suite

A CEO’s fast-moving ideas shipped as production tools every 2 weeks — no overhead, just results.

Mission 1: The XML-to-CSV converter

Guest Suite’s operations team received partner data in XML format. Their internal systems needed CSV. Every week, someone spent roughly 3 hours manually extracting, reformatting, validating, and importing.

Three hours, every week, for months.

The solution was a custom converter — a small, focused tool that parses the XML structure, applies the necessary transformations (field mapping, date formatting, encoding fixes, validation rules), and outputs a clean CSV ready for import.

Development time: under two weeks. Result: the 3-hour weekly process became a 5-minute upload-click-download.

What made this work was scope discipline. We did not build a generic data transformation platform. We built a converter for their specific XML format and their specific CSV requirements. When the format changed six months later, the update took half a day.

Mission 2: The AI-powered browser extension

Guest Suite’s clients receive online reviews on Google, TripAdvisor, and other platforms, and need to respond to each one. Writing thoughtful, personalized responses to dozens of reviews takes time. Writing them well takes even more time.

The solution was a browser extension that integrates directly into the review platforms. When a team member views a review, the extension analyzes the content, understands the sentiment, and generates a contextual response using an LLM — matching the business’s tone and addressing the specific points raised.

What used to take 5–10 minutes per review now takes 30 seconds of review and minor editing.

This is the kind of task that was genuinely unautomatable two years ago. Each review is different — understanding sentiment, calibrating tone for a 2-star review about slow service versus one about food quality. This is not “fill in template” territory.

With LLMs, the heavy lifting of drafting is handled by AI. The human stays in the loop for quality control.

Two different problems, two different approaches. The converter was mechanical — no AI needed, just disciplined parsing and validation. The browser extension required judgment. Knowing which approach fits which problem is half the battle.

Under the hood: building a data converter that lasts

The key technical decisions in a data converter are not about the conversion itself — parsing XML and writing CSV is straightforward. The decisions that matter are about what happens when things go wrong:

  • Validation before conversion. Check input structure before attempting output. Missing fields, unexpected encodings, malformed dates — all caught before any output is generated.
  • Explicit error reporting. “Row 47: date field contains ‘TBD’ instead of a date” is actionable. “Conversion failed” is not.
  • Idempotent operation. Same input, same output, every time. No side effects, no state accumulation.

Small design decisions that take minutes to implement but save hours of debugging later. They are also the decisions that no-code tools cannot make for you.

Have a process like this?

I built both of these for the same client. If your team has manual work that should not require a human, let’s talk.

When to hire a developer vs use no-code

This is the question everyone asks, and most advice gets it wrong by making it an ideology. “No-code is the future!” or “Real solutions require real code!” Both positions are unhelpful. The answer depends on your specific situation.

Here is a decision framework that I have found works well in practice:

What does your automation need?

The quick reference version:

Use no-code when…

You are connecting two popular tools with standard data. The logic is “when A happens, do B.”

Volume is low (under 1,000 ops/month). Your team can maintain it without a developer. €9–50/month.

Hire a developer when…

Your data needs transformation, not just transport. You need graceful error handling. Volume is high or growing.

The no-code solution works but drains hours in maintenance. Sometimes €15,000 upfront is cheaper than two years of SaaS plans.

A useful heuristic: if you have already built a ZapierZapier workflow with more than 10 steps, or if you are using “Code by Zapier” steps to do custom JavaScript, you have outgrown no-code. You are paying Zapier prices for an inferior version of what a small script would do better.

DimensionNo-code (ZapierZapier / MakeMake)Custom code
Time to first versionHoursDays to weeks
Data transformationBasic (field mapping, formatting)Unlimited (parsing, validation, merging)
Error handlingRetry + email notificationCustom logic, fallbacks, queuing
Cost at 100K ops/month€2,000–4,000+/month€5–20/month (server cost)
MaintenanceAnyone on the teamRequires developer access
PortabilityVendor-lockedYou own the code
AI/LLM integrationLimited (pre-built connectors)Full control over prompts and models
Time to first version
No-codeHours
CustomDays to weeks
Data transformation
No-codeBasic (field mapping, formatting)
CustomUnlimited (parsing, validation, merging)
Error handling
No-codeRetry + email notification
CustomCustom logic, fallbacks, queuing
Cost at 100K ops/month
No-code€2,000–4,000+/month
Custom€5–20/month (server cost)
Maintenance
No-codeAnyone on the team
CustomRequires developer access
Portability
No-codeVendor-locked
CustomYou own the code
AI/LLM integration
No-codeLimited (pre-built connectors)
CustomFull control over prompts and models

Total cost at scale

This is the comparison most automation content avoids. Here is what the real numbers look like as volume grows — note the difference in how n8nn8n counts executions versus Zapier’s per-task model:

ScaleZapierZapiern8nn8n self-hostedCustom dev (amortized)
1,000 tasks/mo€30–50€30–50 hostingNot cost-effective
10,000 tasks/mo€150–300€30–50 hosting€500–1,500
50,000 tasks/mo€800–1,500€50–100 hosting€1,000–2,000
100,000+ tasks/mo€2,000–4,000+€100–200 hosting€1,500–3,000
1,000 tasks/mo
Zapier€30–50
n8n€30–50 hosting
CustomNot cost-effective
10,000 tasks/mo
Zapier€150–300
n8n€30–50 hosting
Custom€500–1,500
50,000 tasks/mo
Zapier€800–1,500
n8n€50–100 hosting
Custom€1,000–2,000
100,000+ tasks/mo
Zapier€2,000–4,000+
n8n€100–200 hosting
Custom€1,500–3,000

Custom dev amortized = initial build €15K–50K spread over 2+ years, plus maintenance.

The realistic recommendation — which almost no content says — is the hybrid approach. Keep simple automations on no-code. Move complex or high-volume processes to custom. This is not ideological. It is pragmatic.

Use Zapier for the 15 straightforward connections. Build custom for the 3 workflows that handle 80% of your operations volume.

The break-even point for custom development versus SaaS automation tools is typically 6–12 months.

Common trap

Beware the “we will just add one more Zap” pattern. Each individual Zap is simple. But after a year, you have 40 interconnected Zaps, nobody remembers which ones depend on which, and when one breaks at 2 AM on a Saturday, nobody can debug it.

This is how no-code becomes its own form of technical debt. At some point, you need to consolidate.

The cost of hiring a developer vs the cost of not hiring one

I often see teams avoid hiring a developer for automation because “we cannot justify the cost.” Let me do the math.

If your team spends 10 hours per week on a manual process, and the average loaded cost of the people doing it is €50 per hour, that process costs you €2,000 per month. Over a year, that is €24,000 — spent on work that produces no competitive advantage, builds no institutional knowledge, and makes your team miserable.

A senior developer can typically build a solid automation solution in 1–4 weeks depending on complexity. Custom automation projects typically range from €5K–50K upfront, but they break even within 6–12 months compared to ongoing SaaS automation costs — and the marginal cost after that is near zero.

Even at high hourly rates, the one-time cost is usually paid back within 2–3 months. And unlike the manual process, the automation keeps working without getting tired, making mistakes, or quitting.

How AI changed automation

Before 2023, there was a clear line between “automatable” and “not automatable.” If a task followed a predictable pattern with structured data, you could automate it. If it required judgment, interpretation, or contextual understanding, you could not. The line was clear, and it had not moved much in 20 years.

LLMs erased that line. Not by automating everything — but by making a specific category of tasks automatable that genuinely were not before.

What AI is actually good at today

Classification and routing. “Is this email a complaint, a question, or a feature request?” An LLM can classify incoming communication with high accuracy and route it to the right person or queue.

AI email classification achieves 98% accuracy, reducing manual sorting by 85–95% and saving roughly 4 minutes per processed email. This replaces the human who reads every email and forwards it manually.

Data extraction from unstructured sources. Pulling structured information from PDFs, emails, screenshots, or free-text descriptions. “Extract the invoice number, date, amount, and vendor from this PDF” is a task that modern LLM pipelines handle with 95%+ accuracy — even across different formats and languages.

This is the capability that eliminated the biggest category of “unautomatable” manual work.

Contextual text generation. Writing responses that need to be appropriate to the context — review responses, follow-up emails, status summaries. Not creative writing. Functional writing where the structure is predictable but the content varies. The Guest Suite story is the proof.

Summarization and synthesis. Condensing long documents, meeting transcripts, or comment threads into actionable summaries. Studies show a 1.47% hallucination rate in medical note summarization — good enough for drafts, but review remains essential for final documents.

The “LLM as a step” pattern

All major automation platforms now support LLM integration as a workflow step. The pattern is straightforward: Trigger → Fetch data → LLM classifies/extracts/generates → Route to action → Complete.

You can use this pattern for email triage, lead scoring, content moderation, data enrichment, and invoice processing.

Both ZapierZapier and MakeMake offer built-in LLM steps, and n8nn8n provides full control over model selection and prompting. This is the lowest-friction way to add AI to your existing workflows — no custom code required.

What AI is not good at (yet)

Precision-critical calculations. Do not use an LLM to compute your quarterly revenue. Use a spreadsheet or a database query. LLMs are language tools, not calculators.

Tasks requiring perfect reliability. LLMs are probabilistic. They will occasionally produce wrong outputs that look right. For tasks where a 1% error rate is unacceptable (financial reporting, compliance documents, medical records), AI should assist, not replace.

Tasks requiring access to real-time internal data. Unless you build a retrieval-augmented generation (RAG) pipeline or give the model access to your systems, it cannot answer questions about your specific data. “How many orders did we ship last week?” is a database query, not an AI task.

Full autonomy. Agentic AI — fully autonomous agents that coordinate across multiple systems — is emerging but still early.

Gartner predicts over 40% of agentic AI projects will be canceled by 2027. MIT’s NANDA study found that 95% of enterprise GenAI pilots deliver zero measurable return. The 5% that succeed start small and prove value before scaling.

Start with LLM-as-a-step, not full autonomy.

What does AI automation actually cost?

The cost conversation around AI is either “it is basically free” or “it will bankrupt you.” Neither is true. Here are real numbers:

  • Simple classification: ~€0.30 per 1,000 tasks (using a lightweight model)
  • Email response generation: ~€2 per 1,000 tasks (mid-tier model)
  • Complex document analysis: ~€90 per 1,000 tasks (premium model)

At roughly €50/month in LLM costs, you can automate work that would take a human 5–10 hours — easily €200+ in labor savings.

Cost optimization makes it even cheaper: route 70% of routine tasks to lightweight models and only 30% of complex cases to premium ones. Caching repeated queries cuts costs by 10×. Batch APIs offer 50% savings on non-time-sensitive work.

Builder’s note

The pattern I recommend for AI-augmented automation is always human-in-the-loop, at least initially. The AI does the heavy lifting — drafting, classifying, extracting — and a human reviews the output before it goes live. This gives you 90% of the time savings while keeping the error rate near zero. As confidence grows, you can gradually reduce human oversight on the cases where the AI consistently gets it right.

The browser extension pattern

One automation pattern I find particularly effective is the AI-powered browser extension. Instead of building a separate application and asking your team to change their workflow, you bring the automation to where they already work.

The Guest Suite review response tool is a good example of this pattern. The team was already on the review platforms. They did not need a new dashboard, a new login, a new workflow. They needed the same workflow, but with the hard part handled.

The browser extension sits in the background, activates when you view a review, and offers a generated response. Accept it, edit it, or ignore it. No workflow change required.

This pattern works because it respects how people actually work. The best automation is invisible — it removes friction without adding complexity.

And it is getting easier. AnthropicAnthropic’s Claude now runs natively in Chrome, summarizing pages, drafting responses, and extracting data directly from whatever tab you are viewing.

Claude Cowork takes this further — the AI watches your screen, understands what you are doing, and proactively suggests actions.

On the no-code side, AxAxiom.ai lets you build browser automations visually: record a workflow of clicks and inputs, and it replays them on schedule.

These are not “tools that happen to work in a browser.” They are automation that meets people where they already spend their day.

Getting started without overthinking it

If you have read this far, you probably have a specific process in mind. Something your team does manually that should not require a human. Good. Here is what to do next.

1. Document the current process 30 minutes

Spend 30 minutes writing down, step by step, exactly what happens today. Not the ideal version — the real version, with all its ugly workarounds and “then Sarah manually copies this into the other system” steps.

This document is the spec for your automation. If you cannot describe the manual process clearly, you cannot automate it.

2. Identify the 80% case 1 hour

Look at your process document and find the pattern that covers most occurrences. If you process 100 invoices a month and 80 of them come from the same 5 suppliers in the same format, that is your 80% case. Automate that first.

3. Choose the right level

Ask yourself honestly:

  • Can this be solved by connecting two existing tools? (Try ZapierZapier/MakeMake first.)
  • Does it need data transformation beyond simple field mapping? (Consider a custom script.)
  • Does it need to integrate into an existing workflow or UI? (Consider a purpose-built tool.)
  • Does it require understanding context, language, or making judgment calls? (Consider AI augmentation.)

4. Ship something this week this week

Not this quarter. Not after the planning cycle. This week.

The first version does not need to be complete. It needs to be better than what you have now. A script that handles 60% of cases and saves your team 4 hours a week is more valuable than a perfect system that ships in 3 months.

Key takeaway

The best automation is the one that actually gets built. Not the most elegant solution, not the most comprehensive platform, not the one with the best architecture diagram. The one that ships, saves time, and makes your team’s life measurably better.

Start with the task that frustrates your team the most. Build the simplest thing that solves 80% of it. Ship it. Then iterate.

Realistic budgets

People ask me this directly, so I will be direct back:

€0–200/mo 1–2 days Zapier / Make / n8n
No-code setup

Connecting existing tools with standard workflows. Your team can set this up and maintain it without a developer.

€2K–8K 1–2 weeks Purpose-built
Custom script or converter

A focused tool that solves one specific problem well. Minimal maintenance, near-zero running cost.

€5K–20K 2–6 weeks LLM integration
AI-augmented tool

For tasks that require judgment — classification, generation, extraction from unstructured data.

€15K–50K 1–3 months Custom platform
Full automation system

End-to-end automation of a core business process. Sounds like a lot until you calculate what the manual process costs per year.

For European teams

MakeMake (Czech Republic) and n8nn8n (Berlin) offer EU data residency by default.

The French government actively funds automation adoption. BPI France’s Prêt Boost Transformation Numérique offers €5,000–75,000 in loans for digital transformation at roughly 5% interest with a 48-hour response time.

Over 70% of French SMEs still lack digital tools for daily tasks. There is financial support available that most businesses do not know about.

Frequently asked questions

How do I find which tasks to automate first?

Use the priority formula: frequency × time per run × number of people affected. Automate first anything that happens daily, takes more than 10 minutes per run, and involves more than 2 people. Common high-value targets: lead processing and CRM sync (10–20 hours/month saved), invoice processing (15–30 hours/month), and data syncing between systems (20–40 hours/month).

Is Zapier or Make better for business automation?

Zapier is simpler with 3,000+ integrations — best for straightforward triggers and actions. Make offers more complex logic (branching, loops, error handling) at lower cost. Choose Zapier if speed matters and your workflows are linear. Choose Make if you need conditional logic or are cost-sensitive at scale.

When should I build custom automation instead of using no-code tools?

Build custom when your workflow requires complex business logic that no-code tools cannot express, when you need to integrate with systems that lack API connectors, or when you process sensitive data that should not flow through third-party platforms. Custom automation costs 10–50x more to build but gives full control over logic and data.

How much time does automation actually save?

Typical savings are 20–40% of time per automated process. Concrete examples: lead processing saves 10–20 hours/month, invoice handling saves 15–30 hours/month, and cross-system data sync saves 20–40 hours/month. ROI payback is typically 6–18 months, faster for no-code solutions with high-frequency tasks.

Should I use AI in my automation workflows?

Add AI when your automation involves unstructured data — documents, emails, images, or free-text input that requires interpretation. For structured data flowing between systems with clear rules, traditional automation is cheaper, faster, and more reliable. AI-augmented workflows cost 20–30% more to build but handle 40–60% more edge cases.

Sources and tools

Research cited

Tools mentioned

  • ZapierZapier — no-code automation between 7,000+ apps
  • MakeMake — visual automation platform (Czech Republic)
  • n8nn8n — open-source workflow automation (Berlin)
  • RetoolRetool — build internal tools on your data
  • BbBudibase — open-source low-code platform
  • OpenAIOpenAI — GPT models and AI APIs
  • AnthropicAnthropic — Claude models for classification, extraction, and generation

Let's talk about what you're building.

30-minute call. No pitch deck. Just tell me what you're trying to build. I'll tell you how I'd approach it.

High StickersPAJ by ImparatoIris GaleriePlancton by PimpantKoudetatCHU NantesGuest SuiteAsmodeeRobin des Fermes #1Meme pas CapDrakkarHigh StickersPAJ by ImparatoIris GaleriePlancton by PimpantKoudetatCHU NantesGuest SuiteAsmodeeRobin des Fermes #1Meme pas CapDrakkar