Every automation is one sentence: when this happens, do that. The hard part is honesty about what actually happens.
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.
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.
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.
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.
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.
NOVA reacts, nothing is scored, nothing is stored against you.
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.
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.
Day 11 in progress
Tomorrow, Day 12: the hosted tool made decisions for you. n8n makes you make them.