DEV Community

T.M. Gunderson
T.M. Gunderson

Posted on

Your AI Agent's Harness Matters More Than Its Model

You're comparing AI models like they're the deciding factor. They're not.

OSWorld 2.0 just ran long-horizon tasks against every major AI agent. The result? Even at 95% accuracy per step, agents only complete 28% of 25-step tasks. Error compounds. One wrong click, one misread invoice, one hallucinated customer record — and the whole chain collapses.

The model you pick barely matters compared to the harness you wrap around it.

The Compounding Error Problem

Here's the math most people skip:

  • 95% accuracy × 25 steps = 28% success rate
  • 99% accuracy × 25 steps = 78% success rate
  • 99.5% accuracy × 25 steps = 88% success rate

Small businesses don't run 1-step workflows. You're booking appointments, processing invoices, updating CRM records — each one chains 5-15 steps. The error math is brutal.

This is why "which model is best?" is the wrong question. The right question: "How do I catch and correct errors before they compound?"

Prompts Are Advice. Harnesses Are Law.

Mervin Praison put it cleanly: prompts are advice, harnesses are law. You can tell an AI agent "don't delete customer records" in a prompt, but if the agent hits an unexpected state, it will follow its training, not your instructions.

A harness — permission layers, validation gates, rollback mechanisms — those are enforced. They don't get overridden by a clever model.

Anthropic's own safeguard stack reduced hijack rates 60x. That's not because their model is smarter. It's because they built real enforcement architecture around it.

The 4-Tier Permission System for SMB AI Agents

Here's a practical framework any small business can implement:

Tier 1: Read-Only (Green Zone)

Agent can look at anything — CRM records, calendar, email. No writes, no sends, no deletions. This is safe for research, summarization, and data gathering.

Use for: Customer lookup, appointment status checks, report generation.

Tier 2: Draft-Only (Yellow Zone)

Agent can create drafts — email drafts, calendar proposals, invoice drafts — but nothing gets sent or finalized without a human clicking "approve."

Use for: Customer outreach emails, appointment scheduling proposals, invoice generation.

Tier 3: Approved Actions (Orange Zone)

Agent can execute pre-approved actions — send templated responses, update specific CRM fields, process standard transactions. Each action type requires a one-time approval from the business owner.

Use for: Routine customer replies, standard booking confirmations, recurring invoice processing.

Tier 4: Autonomous (Red Zone)

Agent acts without approval. This tier should be tiny and heavily logged. Only for actions where the cost of delay exceeds the cost of error.

Use for: Emergency appointment rescheduling, after-hours missed-call text-back, urgent review responses.

Why This Matters for Your Business

Most SMBs I talk to are either:

  1. Not using AI agents at all because they're scared of what could go wrong, or
  2. Giving AI agents full access because they don't know how to limit it

Neither works. The first leaves money on the table. The second invites disaster.

The 4-tier system gives you a middle path. Start at Tier 1. Prove the agent works. Move specific tasks up one tier at a time. Each upgrade requires a conscious decision, not a default.

Computer Use vs. Tool-Calling: Pick Your Harness Type

There are two fundamentally different ways AI agents interact with your systems:

Computer use agents see pixels. They click buttons, type in fields, scroll pages — exactly like a human would. Flexible but fragile. A moved button or changed layout breaks everything.

Tool-calling agents get JSON. They call structured APIs with defined inputs and outputs. Less flexible but far more reliable. Error rates drop significantly when the agent has a clear contract.

For SMBs, tool-calling is almost always the better starting point. Your booking system has an API? Use it. Your CRM has a webhook? Use it. Don't make the agent guess at pixels when you can give it structured data.

Move to computer-use only when you have a system with no API and no alternative — and wrap it in Tier 1 or Tier 2 permissions at most.

The One Thing to Do Today

Audit your AI tools. Which tier is each one operating at? If the answer is "I don't know" or "Tier 4 for everything," that's your risk exposure. Map each tool to the lowest tier that still gets the job done.

The model race is a distraction. Your harness is your competitive advantage.

Top comments (0)