GOamplify. 15 Day AI Mastery, Day 11
x2 streak Observer
0 XP
Phase 3, Automation, Agents and Enterprise Systems

Day 11. Introduction to Workflow Automation

Every automation is one sentence: when this happens, do that. The hard part is honesty about what actually happens.

Day narration
2 Why this matters

What makes automation hard is not the concept. It is honesty about your process.

A trigger fires, one or more actions run, that is the entire model. The difficulty is the parts of the process nobody wrote down: every step, every decision, every place a person judges something. Tools today: Zapier and Power Automate.

Not every repetitive task deserves a workflow. Score candidates on frequency, determinism and the cost of getting it wrong. The best first automation is high frequency, fully deterministic, and cheaply reversible. The worst is the interesting one where the edge cases outnumber the routine cases.

3 Watch first

These teachers did this work publicly. Watch them, then come back.

How to use Zapier, Basics you need to know
by Tom Nassr, XRAY
Learning Zapier in 2026, AI Automation for Beginners
by Tom Nassr, XRAY
A complete beginners guide to Zapier
by MinorCo
How to Build and Sell AI Automations
by Liam Ottley
4 The core

The written lesson. Read it slowly, it saves you later.

NOVA, key ideaA manual process fails loudly. An automation fails silently, at scale, for three weeks. Build the notification into the error branch on day one.

Map it on paper first

Write the process as it truly runs, not as the manual describes it. You will find three things. Steps that exist only because two tools do not talk to each other, automate these. Steps that exist because someone must decide, leave these alone or route them to a human. Steps nobody can justify, delete these, often the largest saving in the exercise, and it requires no software at all. Automating a bad process gives you a fast bad process.

Motion graphic, the paper pass
WRITE ITTOOL GAPSDECISIONSDELETIONSTHEN BUILDdeleting unjustified steps needs no software at all

Data does not arrive clean

The trigger delivers a payload, and it will be messier than you expect: inconsistent capitalisation, dates in three formats, empty fields, names with trailing spaces, duplicates. Put the formatting and validation steps in from the start rather than discovering them in production. Assume every field may be empty and decide what happens when it is.

Build the failure path before the happy path

The professional habit, and the one beginners skip entirely. What happens when the trigger fires twice for the same event, when a required field is missing, when the downstream service is down, and above all, how will you find out that it broke. A manual process fails loudly because a person notices. An automation fails silently and keeps failing, at scale. Build a notification into the error branch on day one, and check the run history deliberately, not only when someone complains.

Motion graphic, how failures announce themselves
MANUAL, LOUD AUTOMATED, SILENT SILENT FAILURE KEEPS FAILING UNTIL YOU BUILD THE ALARM

AI steps inside automations

Classification, extraction, summarisation and drafting inside a workflow are genuinely powerful: route this enquiry by intent, pull the invoice number out of this email, summarise this ticket for the handover. Two disciplines. Lock the prompt with a fixed output format, because downstream steps break on free prose. And guard the output, because the model will occasionally return something unexpected and nobody is watching. Validate before you write to anything that matters.

5 Checkpoint

Three quick questions. Not the exam, just a pulse.

NOVA reacts, nothing is scored, nothing is stored against you.

6 Do the work

Two tracks. Pick yours, produce something.

Student mode

Connect Gmail to Google Sheets. Every incoming email with an attachment logs a row with sender, subject, date and file link. Test it with five real emails and fix whatever breaks.

Pro mode

Automate one real internal handover end to end. New enquiry arrives, gets classified by an AI step, gets logged, gets routed to the right owner, and sends an acknowledgement within a defined time. Add a failure notification and document the whole flow on one page.

7 Exercises and brainstorm

Tick them when they are actually done.

Brainstorm, no ticks, just think
Today's badges
Flow Startercomplete Day 11
Three in a rowcheckpoint streak
Day close

Day 11 in progress

0
XP today
0/3
Exercises
no
Deliverable

Tomorrow, Day 12: the hosted tool made decisions for you. n8n makes you make them.