LZLZL/AI toolchain/Always-on · Judgement
FREEMedium · Practice C · Always-onjudgement

What is worth automating,
and what is theatre

2026-08-21 · Do the arithmetic before you build, not after

From here the tools leave your hands. Before covering how, this page covers what — because the big cost of automation is not the afternoon you spend building it, it is every month you spend keeping it alive.

In this pagetests, worked counter-examples, a ramp. Not in this pagewhat I automate, where it runs, on what schedule.

1The arithmetic, both sides

benefit = time saved per run × frequency
cost = building + maintenance + what a mistake costs
Usually omittedWhat it is
MaintenanceDependencies drift, APIs change, keys expire. Each automation is a small system you now own
AttentionEvery notification spends attention — even the ones that say everything is fine
Silent failureThe expensive one. It broke and told nobody, and you think it is running. See page 22

2Three tests. Pass all three

#TestFailing it means
1You have done it by hand at least three timesYou do not yet know the stable version of the process. You would be automating a moving target
2It has an objective success signalNo test means you cannot tell when it is wrong — worse than not automating
3You can absorb it being wrongIrreversible work (deleting, sending, moving money) should not run unattended without a human gate
Test 2 gets skipped most often

"Have it summarise things for me daily" sounds lovely. The question is: who judges whether the summary is good? Without a test, all you get is a stream of output nobody reads and nobody checks. Soon you skip it; soon after, you forget it is still running.

Conversely, "run the tests daily and tell me when they fail" has a perfectly sharp test. That is the sweet spot.

3Four kinds of theatre

KindLooks likeWhy it fails
The daily nobody readsA summary generated and sent to yourself every dayHigh frequency, low per-run value, no success test
"All clear" pingsAn hourly heartbeat messageNormal is the default state. Reporting normal trains you to ignore it — including the one that matters
Automating a one-offBuilding a system to run something onceFrequency of one zeroes the benefit side
Automating a process you have not settledBuilding and redefining at onceFails test 1. You are fortifying a moving target

What they share is output with no recipient. The fastest way to judge an automation: who does something different because of its output? No answer, no build.

4The sweet spot: three kinds worth it

KindWhy it works
Checks with a sharp testTests, builds, reachability, cert expiry — speaking only on failure
Repetitive fixed-step shufflingTest 1 satisfied by definition; benefit scales with frequency
Fixed-time work while you are awayThe only category with no manual substitute — and the reason for going to the cloud

5Ramp up. Do not jump

StepDoYou are testing
1Run it by hand, but as a fixed script or a fixed promptHas the process actually stabilised
2Run on a schedule, output only, no action (dry run)Is its judgement right — give this at least a week
3Let it act, confirming with you each timeDo the actions have side effects you missed
4Unattended, speaking only on exceptions
Do not skip the dry run

Its only purpose is to show you what it would have done. In that week you will usually find two or three edge cases you never considered — those are exactly what you would have hit had you skipped the step.

Nature of this page Tests and ordering only. No numeric thresholds — "how often is often" and "how many minutes make it worth it" depend on your rate and your tolerance, and this page will not invent a number and pass it off as universal.
Related mechanisms "Speak only on failure" is covered on page 22; schedulers and hooks on page 11.
Not in this page What I automate, on which machine, at what times.

RelatedRead next

C · Always-on
Schedules and hooks: acting while you are away
D · Cloud
When a VPS is actually required
D · Cloud
Key isolation, monitoring, backups, switching off
B · Access
Where the tokens actually go
An educational and engineering record — not a review or endorsement of any third-party product. Commands, config keys, prices and terms are per each vendor's official docs; this page states when it was checked and all of them can change without notice — verify before you copy anything. Self-hosting is your own responsibility: keys, accounts and data are on you.