A conveyor belt with a clever bit in the middle
Every automation you will ever build, in any tool, is the same three things. Once you can see them, the products stop being intimidating, because they are all just different paint on the same machine.
Something happens. An email arrives, a form is submitted, a row is added to a sheet, a file lands in a folder, or the clock reaches nine on a Tuesday. This is the trigger. Nothing runs until it fires.
Then a list of steps runs, in order. Take this thing, do something with it, pass the result to the next step. Step two only ever sees what step one handed over, which is worth remembering when a step behaves strangely.
Somewhere in that list sits the AI step. It is a step like any other, except its job is a peculiar one: turn this messy thing into that tidy thing. Turn a rambling customer email into three bullet points. Turn a free text complaint into one of four categories. Turn a supplier's oddly formatted invoice description into a clean line item.
That is the whole model. Trigger, steps, and one step that handles the mess a normal step cannot.
In plain English
- Trigger:
- The event that starts an automation running. Everything else waits for it.
- Step:
- One instruction in the list. It receives what the previous step produced and hands its own result onward.
- AI step:
- A step where you describe in plain English what to turn the input into, instead of specifying an exact rule.
- Connection:
- The permission you grant that lets the automation reach one of your accounts, and only in the ways you allowed.
- Run:
- One complete pass through the automation, from trigger to final step. Most tools charge you per run or per step.
Why the AI step earns its place
For decades the only steps available were exact ones. If the subject line contains the word invoice, move it to this folder. Those rules work beautifully until reality arrives, and reality writes Invoice, INV, inv attached, and please find the bill for last month.
An AI step is the one place in the belt where you can describe the outcome rather than the rule. You say what tidy looks like, give it a couple of examples, and it copes with wording you never anticipated. That flexibility is real and it is why these automations became worth building.
It comes with a matching weakness, and you should hold both ideas at once. An exact rule fails loudly when it does not match. An AI step almost never fails loudly. Faced with something it does not understand, it produces a plausible answer anyway, in the right format, with no sign of distress. Lesson four is entirely about what to do with that.
A quick note so we do not go over old ground. An agent decides for itself which steps to take. An automation runs the steps you laid out, in the order you laid them out, with an AI step doing the messy bit. This course is about the second thing, which is more predictable and far easier to check.
Connecting accounts, and the boundary that keeps you safe
To move information between your apps, the automation needs permission to reach them. You will be asked to sign in to each app once and approve access. That approval is the whole security boundary, and it is a lot more useful than it looks.
An automation can only ever touch what you connected, in the ways that connection allows. If you granted read access to a mailbox, it can read. It cannot send. If you connected one folder, the rest of the drive does not exist as far as it is concerned. Nothing you have not connected is reachable, no matter how the instructions are worded.
Before you click approve on any connection, answer these four.
-
WHICH ACCOUNT is this connecting to, and is it the shared team
account or my personal one? Prefer a shared account with a
named owner, so it survives someone leaving.
-
READ OR WRITE? Can it only look, or can it also change and send?
Choose read only unless a step genuinely needs to write.
-
HOW WIDE? One folder, one mailbox label, one spreadsheet, or
everything in the account? Narrow it if the option exists.
-
WHO ELSE can see what passes through? If customer details or
anything confidential flows through this step, check that
answer with whoever owns data protection where you work.
If a connection asks for far more than the job needs, that is
worth a pause, not a shrug.
Checkpoint
Trigger, steps, and an AI step that turns messy into tidy. The automation can only touch the accounts you connected, in the ways you allowed.
Describing the tidy thing properly
The AI step is where beginners lose the most time, and always for the same reason. They describe the job the way they would describe it to a colleague who already knows the business, and then wonder why the results wander.
โ Weak prompt
Prompt
Read this enquiry and categorise it, then summarise it nicely for the team.
Output
This customer seems interested in learning more about your services and has raised some questions worth following up on when convenient.
Categorise it into what? Nobody said. Nicely means nothing. The result is fluent, useless, and different every single time it runs.
โ Good prompt
Prompt
Read the enquiry below. Reply in exactly three lines. Line one: CATEGORY followed by one of SALES, SUPPORT, BILLING or SPAM and nothing else. Line two: a one sentence summary under twenty words. Line three: URGENT YES or URGENT NO, where yes means the sender states a deadline within seven days. If the message is empty or unreadable, reply with the single word SKIP.
Output
CATEGORY SALES Wants pricing for forty seats before the end of March. URGENT YES
A fixed set of categories, a fixed shape, a fixed length, and a defined answer for the case where there is nothing to work with.
Write your automation out longhand first. Ten minutes, no tool open.
TRIGGER
Something happens: ..........................................
It happens about ...... times a month.
STEP 1 ......................................................
STEP 2 ......................................................
STEP 3 ......................................................
Mark which of those is the AI step, then finish this sentence
about it in plain words:
It turns ........................ into ........................
CONNECTIONS NEEDED
App: .................. read only / read and write
App: .................. read only / read and write
WHAT IT MUST NEVER DO
..............................................................
If you cannot write the AI step sentence without using the word
somehow, the step is doing two jobs. Split it into two steps.
Three habits do most of the work in that instruction. Give the AI step a closed list to choose from rather than an open question. Fix the shape of the answer so later steps can rely on it. And tell it what to say when the input is rubbish, because otherwise it will invent something rather than admit defeat.
What this costs
These tools charge by usage. The exact arrangement varies and changes often, but the shape is consistent: you pay per run, or per step, or per unit of AI work, and sometimes all three. The practical consequence is simple. Cost scales with volume. A test on ten enquiries costs almost nothing. The same automation on four thousand enquiries a month is a line item somebody in finance will ask about.
Before you switch anything on, work this out on paper.
A. How many times a month will the trigger fire?
Use last month's real numbers, not a guess.
B. How many steps run each time? Count the AI step separately,
it is usually the expensive one.
C. A x B = the volume you are buying. Compare that to whatever
allowance your chosen tool includes.
D. What is the worst case? A busy month, a mailing list that
suddenly triples, a loop that fires more often than expected.
Multiply A by five and check you would survive it.
E. Does the tool let you set a cap or an alert on usage?
If it does, set one now, while you are thinking about it.
Watch for a trigger that can fire on something your own automation created. An automation that writes a row, and is triggered by new rows, will happily run forever. Most tools have a guard against this, but the cheapest guard is noticing before you switch it on.
๐ Quiz
Question 1 of 4What are the three parts of every no-code automation?