Skip to content
GuideFreeSetup

Start here — the guide to all four.

Which browser job to reach for, and the four traps that make a clean report lie.

2 views

The guide· 5 min read· Written for beginners

0101 / 03

Framework — the thinking.

Before any of this: if the tool you want to automate has a proper way in built for software — an API, a side door for computers instead of fingers — use that. It's faster, and it doesn't break the day someone moves a button. Browser automation is what you reach for when there's no side door. That's the whole decision.

Everything here then follows one rule: an honest gap beats a confident guess.

A report that's confidently wrong is worse than no report, because you'll act on it. So each of these refuses to guess. If it can't see something, it says so. If it isn't sure whether something worked, it says it didn't. That sounds cautious. It's the opposite — it's what makes the answers worth anything.

Three jobs, and how to tell which one you want:

  • Read something behind your login — The Dashboard Check. Borrows the browser you're already signed into.
  • Know if something breaks while you're asleep — The Form Watchdog. Runs on a schedule, speaks up only when there's bad news.
  • See your own site as a stranger does — The Cold Walk. A browser with no memory of you.
  • Not think about which — Site Watch, the skill. Ask in plain English and it picks.
0202 / 03

Copy & Customize — pick one and run it.

Every prompt has [BRACKETS] in it. Swap those for your own details, paste it in, and that's the whole customisation.

Start with The Dashboard Check. It's the only one with nothing to install, and Google publishes a free demo Analytics account you can practise on — real dashboard, real numbers, nothing of yours at risk. Point the prompt at that until you trust it, then swap in your own.

Where each one goes:

  • The Dashboard Check — the Claude app, with the Chrome connector switched on. Needs a paid plan.
  • The Form Watchdog — Claude Code. It sets itself up. Run it once on a working form, then break it on purpose before you trust it.
  • The Cold Walk — Claude Code. It sets itself up. Run it on your homepage and read what it found without arguing.
  • Site Watch — install the skill once, then just say what you want: "cold walk my site", "is my signup form still working", "check my dashboard". If you're vague, it asks rather than guessing.
0303 / 03

Results — what good looks like.

A good Dashboard Check is three lines. Something like: Sessions 30k, last 7 days. Couldn't tell up or down from this screen. Nothing needs doing. Notice what it didn't do — it didn't guess the direction.

A good Watchdog is silence. You should never hear from it. When you do, something is actually wrong.

A good Cold Walk is uncomfortable. Up to five problems, worst first, each with the smallest fix. Your instinct will be to explain why each one isn't really a problem. That instinct is the reason you needed the tool.

Then there are the four traps. Each one is a way these jobs can look like they worked while telling you nothing, and each one cost something to find.

  • An empty box is not a zero. Dashboards draw the page first and fill the numbers in a second later. Ask too early and you get a blank — which reads exactly like a zero. "Sessions: 0 this week" is worse than no report at all.
  • Your form can say "thanks" while nobody gets added. While testing, a signup that had failed still showed the word "confirm" on the page, because the box underneath was labelled Confirm Password. Anything hunting for reassuring words would have called that a healthy form every single morning. So the Watchdog ignores words: did the form go away, and did an error appear.
  • The forgetful browser remembers. There's a setting that's meant to make the browser forget you, and I assumed it had. I checked — sitting there was a tracking cookie from an earlier visit with a counter reading session number two. So the prompt now proves the browser is empty before it walks. It checks three things, and on the run that caught this, only one of the three spotted it.
  • Testing the schedule can kill the schedule. Once yours runs daily, leave it alone. I forced one extra run to check it worked, and that replaced the daily schedule instead of adding to it, then switched itself off when it finished. A monitor that looks healthy in the list and never runs again is the exact failure these jobs exist to catch.

The one-minute version: use the proper way in if the tool has one. Start with a job that only looks at things, and build the ones that change things once you trust it. Check the end of the job, not the middle. And anything that claims it forgot you — check.

End of guide
01

What this guide covers

  • Explains which of the three browser jobs fits your task
  • Shows what a good, honest report actually looks like
  • Names the four traps that make a clean report lie
  • Gets you from nothing to a first run
02

Why it works

Read this before the other four. It covers the one decision that matters (don't automate a browser if the tool has a proper way in for software), which of the three jobs fits what you're trying to do, what a good result actually looks like, and the four traps that cost me something to find.

The traps are the real value here. Each one is a way these jobs can look like they worked while telling you nothing — an empty box that reads as a zero, a form that says "confirm" while failing, a browser that swears it forgot you, and a test run that quietly kills the schedule it was testing.

No prompt to copy. Just the part that stops you trusting a clean-looking report that isn't.

03

Tips for this guide

  • Start with the Dashboard Check. It is the gentlest of the three.
  • Fill every bracket before you run. Blanks are what break these jobs.
  • Ask for a screenshot with every claim so you can check the work.
  • Run it once by hand before you put it on a schedule.
04

How to use this guide

  1. 1Read the Framework section and pick the job that fits
  2. 2Open that prompt in the pack and fill in the brackets
  3. 3Paste it into Claude and run it once, watching what happens
  4. 4Check the result against the Results section before you trust it
  5. 5Only then set it to run on a schedule
Tags#guide#start here#browser#automation#how to#three browser jobs