惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
My Harness Is Not a Cage. It's an Org Chart.
synthaicode · 2026-04-26 · via DEV Community

Your AI agent did not fail because the model was weak.

It failed because it made a decision no one had authorized it to make.

Maybe it skipped an escalation.
Maybe it treated a missing requirement as obvious.
Maybe it chose one tradeoff over another because a threshold told it to.

The dangerous part is not that the AI made a mistake.
The dangerous part is that the system allowed the decision to happen invisibly.

This is not a tooling problem. It is a definition problem.


What AI Actually Is

Before designing any harness, we need to agree on what we are harnessing.

My working definition:

AI is a machine that executes the work of structuring information according to a given purpose.

Two constraints follow immediately from this definition:

  1. Purpose is supplied externally. AI does not generate its own goals. A car does not decide where to go. AI does not decide what to optimize for.
  2. Structuring information is not the same as making judgments. A car can move faster than a human. That does not mean it decides the route.

This is not a limitation to be engineered around. It is the definition itself.


Where Harness Engineering Goes Wrong

The harness engineering movement — which crystallized in early 2026 — defines the harness as everything except the model: tools, memory, guardrails, feedback loops, retry mechanisms, confidence thresholds.

The formula is clean: Agent = Model + Harness.

But there is a category error embedded in it.

When AI agents were not yet capable of chaining actions, humans performed the orchestration manually. They connected outputs, prioritized next steps, and filled in the gaps when something was unclear. That human orchestration contained two things mixed together:

  • Execution work — connecting outputs, sequencing steps, formatting results
  • Judgment work — resolving tradeoffs, filling in unknowns, deciding priorities

Harness engineering took this human orchestration and delegated it to the harness — without separating execution from judgment first.

The result: the harness now contains judgment calls that were never made explicit. They are buried in threshold values, fallback rules, and priority weights that someone configured without realizing they were making decisions on behalf of the system.

If the definition is wrong, refining the methodology only embeds the error deeper.
You cannot harness your way out of a category mistake.


The Two Points That Belong to Humans

Information structuring work always contains two types of unresolvable moments:

1. Tradeoffs — situations where two valid paths exist and the choice depends on values, priorities, or context that the AI was not given.

2. Unknowns — gaps in information that cannot be filled by inference without risk of fabrication.

These are not edge cases. They are structurally guaranteed to appear in any non-trivial task. Project managers have known this for decades. Every project begins with a risk register. Unknowns are logged on day one, not discovered in production.

The design question is not whether these moments will occur. It is where does authority go when they do.

Confident thresholds and risk scores do not answer this question. They are themselves tradeoff decisions — and tradeoff decisions belong to humans by definition, not by preference.

The threshold is not a parameter. It is a judgment.
And judgments, by definition, belong to humans.


The Same Principle Already Exists Everywhere

This is not a new idea. We have solved it before, in two adjacent domains.

Software engineering: well-designed systems do not suppress exceptions. They surface them to the caller. A try-catch that swallows every error and continues execution is not robust engineering — it is a liability. Harness engineering that handles every unknown internally, without escalating to a human, is structurally identical.

Organizational design: every role in a functioning organization operates within a defined scope of authority. When a situation exceeds that scope, it escalates. Not because the person is incapable, but because the decision belongs to a different level of authority. This is not failure. It is the system working as designed.

AI organization design needs the same structure. The escalation path is not a fallback. It is a first-class design element.


My Harness

Everything except tradeoffs and unknowns belongs in the AI. Those two points belong to humans — by definition.

My harness enforces exactly two constraints:

No speculation. When the AI encounters an unknown, it does not infer, guess, or fill the gap. It surfaces the unknown to the human who owns the decision. This forces the escalation path to activate rather than allowing silent fabrication.

Separate the executor from the checker. The AI that performs a task does not verify its own output. A separate agent — with a different role, different context, different prompt — checks the work. This is not redundancy. It is the same principle behind code review, audit functions, and quality control in any mature organization. A single agent checking its own work is equivalent to a developer reviewing their own pull request the moment after writing it.

These two constraints did not come from observing AI failures and patching them. They came from asking what an AI organization needs to look like, given what AI is by definition.

The harness is not a cage built around an unpredictable system. It is an org chart built around a well-defined one.


The Design Sequence

Most teams build in this order:

  1. Deploy the agent
  2. Observe failures
  3. Add guardrails to prevent recurrence

This embeds the failure mode into the design. Each guardrail is a patch over an undefined boundary.

The sequence should be:

  1. Define what the AI is (information structuring machine, externally purposed)
  2. Define what it cannot do (resolve tradeoffs, fill unknowns)
  3. Design the escalation path for those two cases
  4. Deploy the agent within that structure

The intelligence layer comes after the organizational layer. Not before.


Conclusion

Harness engineering asks: how do we make AI agents reliable?

That is the right question with the wrong starting point.

The problem is not how to control AI.

The problem is how to handle the events that inevitably occur while AI structures information toward a given purpose: unknowns, tradeoffs, verification points, and handoffs.

A harness is not a mechanism for controlling AI.

It is a structure for handling what happens during AI work:
unknowns, tradeoffs, checks, authority boundaries, and handoffs.

You do not put guardrails on a car to prevent it from flying. The definition already draws that boundary.

Design the organization first. The harness follows from that.


The organizational structure described in this article — explicit role boundaries, judgment delegation, and cross-reference traceability between work units — is implemented in XRefKit:

https://github.com/synthaicode/XRefKit