← Back to the blog

How we publish every day with no content team

There is no writer behind this article. There is a workflow — and you can see every part of it.

Most people hear "we publish daily" and assume there is a team. There isn't. What exists is a pipeline: a handful of services wired together so that research, scripting, video and publishing happen without anyone opening a laptop. This post is a tour of that pipeline, because it is the most honest demo we can give of what applied automation actually looks like.

The shape of the pipeline

Every automation that works has the same skeleton: a trigger, a source of truth, a decision step, and an idempotent write. Ours looks like this:

Nothing here is exotic. The interesting part is not the tools — it is the two rules that keep it from breaking.

Rule one: one row, one truth

The spreadsheet is not a log. It is the state machine. Each step asks the same question: "is my output column empty?" If it is, do the work and fill it. If it is not, skip. That is the whole idea of idempotency, and it is the difference between a pipeline you can re-run safely and one that charges you twice.

Concretely: the video step writes the generated video's ID to the row immediately after submitting the job, before it waits for rendering. If the workflow dies mid-render and you re-run it, it sees an ID, and it does not pay for a second render. That one ordering decision is worth more than any prompt engineering.

Rule two: fail loud, never halfway

Automations rarely explode. They quietly produce garbage — an empty script, a truncated caption, a post that publishes to the wrong channel. So every step that can produce nonsense checks itself and throws instead of continuing: no research results, no brief; empty script, no video; missing captions, flagged in the row.

An automation that stops with a clear error costs you ten minutes. One that keeps going costs you a week of cleanup and, if it is customer-facing, some trust.

What this is worth to a real business

The point is not "publish more content". The point is that the shape above works for anything repetitive with a decision in the middle: order entry, quote generation, supplier follow-up, invoice classification, support triage. The pipeline that publishes this blog is structurally the same thing we build for order handling in our own import operation.

That is also the honest limit: automation is worth it when the process is repetitive, the inputs are structured enough, and someone is currently doing it by hand every day. If a process happens twice a month, leave it alone.

Where to start

Pick the task your team complains about most, and write down its four parts — trigger, source of truth, decision, write. If you can fill in all four on one page, it is automatable this month. If you cannot, the process is the problem, not the tooling.

If you want the short version of how to sequence that in a small operation, grab the free guide — it lays out where to start, in what order, and the three places automation usually loses money. And if you would rather have someone map it with you, Maqia does exactly that.