Describe the job, watch the AI build it, rehearse it, deploy it.
Free plan · no card · 🇪🇺 EU data residency
Shopify Flow is free, native, and genuinely good at trigger-condition-action rules. But whole categories of store automation sit outside what it can express. Here's where the wall is, what stores do when they hit it, and how to run the heavier jobs without risking your catalog.
The easiest way to run what Shopify Flow can't do (catalog-wide passes, scheduled bulk jobs, price-change logic, anything that calls an outside system) is the Collaudo app: a ready-made automation you dry-run on your real catalog, and nothing writes until you approve the mutation report. Flow stays free and right for simple trigger-condition-action rules. The wall is computation, scheduling, and external APIs.
Start with the honest part: if Shopify Flow covers your job, use Shopify Flow. It ships with your plan, it lives inside the admin, and for rules shaped like "when X happens, if Y, do Z" it is the right tool. Nobody should pay for an app to tag an order when it comes from a specific channel.
The trouble starts when the job stops being a rule and becomes a computation. Flow reacts to events one at a time. It has no loop that walks your whole catalog, no scheduler that says "every night at 2am", no way to call an API that isn't on its integration list, and no rehearsal mode: when a Flow action fires, it fires on your live store.
In practice, four things. They export to CSV, edit in a spreadsheet, and re-import, which works until a re-import at 6pm on a Friday overwrites a column nobody meant to touch. They buy one narrow app per job, and the app stack grows. They pay a developer to write a one-off script against the Admin API, which works exactly once, then rots. Or they queue the work for an agency and wait.
None of these are wrong. But all four share the same weakness: the moment of truth happens on the live store. The CSV import has no preview. The script prints to a terminal nobody reads. You find out what changed by looking at what broke.
Reading 100,000 variants is harmless. Writing to them is not. A bulk job that is 99% right still gets 1,000 products wrong, and "wrong" on a storefront means wrong prices at checkout, wrong products in a sale collection, wrong data feeding your ads. The fix for heavy automation is not more caution. It is a rehearsal: run the whole job against real store data with every write captured and held, read the diff, then let it loose.
That rehearsal is the thing Collaudo is built around. You describe the job in plain English, it writes real Python or TypeScript you can read and edit, and the first run is always a dry run: a full mutation report of what would change, item by item, with nothing applied. You approve, then it runs live: on a schedule, on an event, or on demand. The jobs in this article are ready-made in the template gallery, and every one of them dry-runs first.