1,000,000 clicks in 3 weeks.
That's how many times people hit LinkedIn's new "report AI slop" button since it launched in July. Flagged posts get about 40% fewer views now. I build AI systems for a living, so yeah, I noticed.
Nobody reports the AI that saved them three days
Here's the thing about those million clicks: nobody reports the AI that saved them three days on an approval. Nobody flags the system that caught the clause that would have cost them the deal. People report AI that got put where it doesn't belong.
The slop backlash isn't a verdict on AI. It's a verdict on placement. And placement is most of my job. Before Seqora builds anything for a client, every bottleneck we look at gets sorted into one of three buckets — and only one of them involves a model at all.
When to use an AI agent
An agent earns its place when the input is messy and the decision is fuzzy but repeatable.
Reading a 40-page contract for the two clauses that actually matter. Turning a rambling intake call into a structured record. First drafts of anything. These jobs have no crisp rule — a human doing them is exercising judgment, but the same judgment, over and over. That's the agent's home turf.
The test: could you write the rule down in one sentence? If not, but you'd make the same call ten times out of ten, it's agent territory.
When a plain workflow beats an AI agent
If the rule fits in one sentence, it's not an agent problem. If it can be an if statement, make it an if statement.
"When a form comes in after hours, text the on-call number." "When an invoice passes 30 days, send the reminder." A normal workflow runs these for free, in milliseconds, forever — and it never makes things up. Wrapping a language model around a one-sentence rule is how you end up paying per-token for something a cron job does better, and it's exactly the kind of misplaced AI that gets a company's output flagged as slop.
When the answer is a dashboard, not AI
Sometimes the real problem is that nobody can see the number.
If one person on your team gets asked the same question every week — how many consults booked, which claims are stuck, what's the response time — the fix isn't an agent or a report generator. The fix is a screen. Put the number where everyone can see it, and let a workflow keep that screen updated. The weekly question disappears, and no model was involved.
Messy in, judgment out
Fuzzy but repeatable decisions on unstructured input. Contracts, intake calls, first drafts.
One-sentence rules
Deterministic, free to run, never hallucinates. If it can be an if statement, it should be.
Nobody sees the number
Recurring questions get a screen, and a workflow keeps the screen current.
Building the agent is the easy part. The loop is the work.
Everyone's demo looks the same: prompt in, magic out. Production looks different. The system has to run, check its own output, retry, and only ping a human when it's genuinely stuck.
That loop — the self-checking, the retries, the escalation rules, the audit trail — is most of what I actually build now. It's also the difference between AI people report and AI people quietly depend on. An agent without the loop is a demo. An agent with it is an employee who never sleeps and knows when to ask for help. That loop is the backbone of every system on our capabilities list, and it's the same discipline baked into Omnia Vault, the project-memory stack we use internally.
The two things I never hand off
However good the systems get, two jobs stay human at Seqora:
Deciding what the system is for. Purpose is a judgment about the business, not the data. No model owns that.
The apology when it breaks. Every system breaks eventually. When it does, a person calls the client, explains what happened, and owns it. Sending an AI to apologize for AI is how you earn a spot in the slop reports.
One more practical note: if you want documents and emails going out clean, without AI formatting fingerprints on them, use what I use — watermarks-remover, free on GitHub.
Quick answers
When should you use an AI agent instead of a normal workflow?
When the input is messy and the decision is fuzzy but repeatable. If the rule fits in one sentence, use a workflow — it's free to run and never makes things up.
What is AI slop?
AI output published where it doesn't belong — automation forced into a job a simple rule or a human should own. LinkedIn's report button drew about a million clicks in three weeks, and flagged posts now get roughly 40% fewer views.
What should AI never handle in a business?
Deciding what the system is for, and the apology when it breaks. Everything else is a candidate for an agent, a workflow, or a dashboard.
This piece started as a post on LinkedIn — the discussion there is worth reading. And if you want the one-page "agent, workflow, or dashboard" checklist, email gabriel@seqora.io and I'll send it over.