UpwareThe Company Harness · Manifesto

Upware · Manifesto

The Company Harness

Why Enterprises Must Own the Operating Layer for AI

By Tomer Suarez, CEO & Co-Founder, Upware

The first era of enterprise AI was about access to intelligence. The next is about what you do with it.

Every major enterprise now has access to the same frontier models. The gap between organizations will not be determined by which model they use. It will be determined by whether they built the layer that turns AI intelligence into reliable business execution.

That layer is the Company Harness. Most enterprises don't have one. And without it, they are building on a foundation they don't own, can't control, and may not be able to change.

What makes Upware's Company Harness different from every other orchestration or workflow tool is two things that the industry has not solved before: it self-constructs from your existing agents (prompts, intent, plans), processes and institutional knowledge, and it self-evolves with every execution — continuously optimizing itself for accuracy, cost, and speed without requiring engineering effort to maintain it. It also integrates with any model or agent framework your organization already uses — Claude, GPT, Cowork, Gemini, Copilot Studio, n8n, LangGraph, AutoGen, CrewAI, and more — so you never have to choose between your harness and your preferred AI stack.


Enterprise AI Has a Missing Layer

For the past several years, the dominant approach to enterprise AI has been model-centric: pick a capable model, give it tools and context, and let it reason its way to a result.

This works well for exploration. For business processes, it creates a category error.

A model can reason about how a billing dispute should be resolved without knowing:

  • Which system is authoritative for that customer's record
  • Which employee tier has approval authority for this exception
  • What the correct post-resolution state across four downstream systems should look like
  • Which regulatory constraint changes the permitted action

Even when it reasons correctly, its output is probabilistic. And in business operations, the gap between "usually right" and "always right" is exactly where the liability lives.

The wrong answer in a conversation is a nuisance. The wrong action in a billing, claims, lending, or servicing process is an operational event — one that compounds across volume, across quarters, and across the enterprise's reputation.

The problem, it turns out, is not intelligence. Enterprises have access to extraordinary intelligence. The problem is that nothing is harnessing that intelligence to the actual work.

The Coding World Already Solved This

The concept of a harness is not new. It is foundational to how AI already works in the one domain where it has become genuinely reliable: software development.

AI coding agents don't operate in isolation. They operate inside environments that provide:

  • Access to repositories, compilers, and test runners so the model knows the state of the codebase
  • Terminal and version control integration so actions have predictable, reversible effects
  • Permission models so the agent can't exceed its mandate
  • Feedback loops so the agent knows whether its output was correct

The model supplies reasoning. The harness turns that reasoning into working software.

No serious engineering team would deploy an AI coding agent without that infrastructure. The intelligence is necessary but not sufficient. The harness is what makes it production-ready.

Knowledge work needs the same architecture. But the environment is no longer a codebase. It is the company itself: its systems, its rules, its institutional knowledge, its exceptions, its approval chains, its audit obligations, and its operational standards.

That environment has to be built. It does not come with the model.

The Research Is Clear: The Harness Determines the Outcome

Researchers at Stanford University and MIT have made this point with precision. In their study of harness optimization across agent systems, they concluded:

"The performance of large language model systems depends not only on model weights, but also on their harness: the code that determines what information to store, retrieve, and present to the model."

Their findings go further. Well-designed harnesses do not just improve performance on the tasks they were built for. They generalize:

"Harnesses discovered by our search capture generally effective strategies rather than overfitting to specific datasets."

"Readable, transferable strategies can be reused across models, including future, stronger ones."

That last point matters enormously. The harness is not built for one model. It is built for the business. And it carries forward.

The empirical results are striking. Structured, harness-driven approaches achieved a 7.7-point accuracy improvement over state-of-the-art unconstrained agents on text classification tasks, 4x fewer context tokens in the same tasks (11.4K vs 50.8K), and 73.1% average accuracy across 9 unseen datasets — demonstrating generalization, not overfitting.

These results come from academic settings. In production enterprise environments, the magnitude of the difference is larger, because the cost of errors is real and the pressure for consistency is unrelenting.

Why Model Alone Breaks in Production

There are four structural problems with putting the model at the center of enterprise operations.

1. Accuracy is uneven by design.

Harvard Business School's research on AI in knowledge work documented what they called the "jagged technological frontier" — a boundary of tasks where AI dramatically outperforms humans, and tasks where it underperforms, with no reliable signal to tell which side you're on. Inside the frontier: 25% faster, 40%+ more accurate. Outside it: a 19-percentage-point decrease in the probability of reaching the correct answer. This is not a temporary limitation of current models. It is a structural property of probabilistic systems. Better models will move the frontier, but the frontier will always exist.

2. Execution is unpredictable.

The same objective, submitted to the same model on different days, produces different plans, different tool calls, and different numbers of reasoning steps. That flexibility is valuable when you want creativity. It is a liability when your process requires a defined procedure, consistent outcomes, and an audit trail that satisfies a regulator.

3. Cost and latency scale with uncertainty.

An agent that reasons through every step of a process — retrieving context, evaluating options, checking its work — is applying expensive general-purpose intelligence to work that in many cases could be encoded once and executed directly. Research into Compiled AI workflows has documented reductions in token consumption of up to 57x when deterministic steps are factored out of the reasoning loop. Token costs matter; so does latency. Over-reasoning is one of the primary sources of high agent cost and slowness in production.

4. Governance cannot be retrofitted.

Enterprises need to know, before execution begins, what the agent can access, what it can change, which policies apply, and how every action will be logged. The current response is to restrict agents to low-stakes tasks, or require engineering teams to build bespoke guardrails around each use case. Neither approach scales to a real AI workforce.

These are not implementation problems. They are architectural ones. They cannot be resolved by a better model or a smarter prompt. They require a different kind of system.

Business Work Is Not an Open-Ended Problem

There is a productive irony here.

The work enterprises most want agents to perform is structurally the opposite of open-ended reasoning. Business processes have defined inputs and outputs. They have policies, permissions, dependencies, and verification criteria. Many individual steps are entirely deterministic.

Consider a customer policy servicing request. Once the intent is understood, much of what follows is software:

  1. Retrieve the account from the authoritative system
  2. Verify eligibility against the policy schedule
  3. Determine the permitted action given the customer tier and exception history
  4. Update the relevant systems in the required sequence
  5. Validate the resulting state
  6. Record what happened for the audit log

An LLM does not need to reason through any of that. It needs to understand the request. The rest can and should be software.

The right architecture is not to use AI everywhere. It is to use AI where intelligence is actually required, and software everywhere else.

That distinction is what the Company Harness enforces.

Harnessing: From Intent to Execution Graph

At Upware, we implement this through what we call an Execution Graph.

The graph begins where the model ends. An agent — on any model, using any framework — can understand the user's intent and formulate a plan. The harness takes that plan and translates it into a structured, executable representation of the actual business task.

The graph separates work by type:

  • Deterministic Execution: Steps that can be compiled into direct code are never re-inferred at runtime. They run as software, reliably and at scale.
  • LLM Actions and Verifiers: Where genuine reasoning is required, the model is invoked. Its outputs are then verified deterministically before flowing into any consequential action.
  • Context Capture: The right information, at the right time, at the right scope — drawn from the company's knowledge layer or from the user, not reconstructed from scratch on every run.
  • Tools and System Execution: Across APIs, UI automation, MCP gateways, desktop environments, legacy systems, databases, and files — the full surface area of enterprise work.
  • Policies and Business Rules: Permissions, approvals, guardrails, and constraints encoded as first-class runtime logic, not embedded in prompts.
  • Runtime Management: State management, long-horizon task execution, retries, recovery, and failure handling — so complex work can be interrupted, resumed, and audited without starting over.
  • Self-Improvement Loop: Every execution feeds back into optimization of cost, latency, and accuracy. The system gets better with use.
  • Observability and Audit: Full visibility into every action taken, every system touched, every cost incurred, every risk encountered, and every business outcome produced.

This is what compiled AI means in practice. The model is still present. It is just no longer doing work that doesn't require it.

A Harness That Builds — and Improves — Itself

Most enterprise software requires months of engineering to configure, and more engineering every time the business changes. The Company Harness is designed around the opposite principle.

It self-constructs. Using AI to analyze your existing agents, AI interactions, processes, SOPs, workflows, and system interactions, Upware automatically generates the Execution Graph for a business task — translating institutional knowledge into a structured, executable representation without requiring developers to manually code each step. What takes traditional automation teams months takes Upware minutes.

It self-evolves. Every execution generates data: which steps succeeded, which required more model reasoning than expected, where latency spiked, where a policy constraint triggered, what the business outcome was. The Self-Improvement Loop ingests this data continuously, identifying opportunities to compile more steps into deterministic code, tighten verifiers, optimize tools and context, and eliminate unnecessary inference calls. The harness gets more accurate, faster, and cheaper with every run — without anyone having to tune it manually.

This is not a system you build once and maintain forever. It is a system that maintains and improves itself — freeing your teams from the operational burden of AI infrastructure and letting them focus on the work that matters.

And it integrates with your existing AI stack. Whether your organization runs Claude, GPT, Cowork, Gemini, Copilot Studio, n8n, LangGraph, AutoGen, CrewAI, or any combination, the harness connects to it. You don't replace your current models or frameworks — you give them the operating layer they were missing.

Where the Harness Sits in the Enterprise AI Stack

The diagram below shows where the Company Harness sits within the full enterprise AI stack — and why its position at the center is not incidental. The models, the agent frameworks, and the company's knowledge base feed into it. The LLM Gateway, MCP Gateway, integration layer, and enterprise systems are orchestrated by it. Security and governance wrap the entire stack. The harness is the connective tissue that makes the rest of the architecture functional.

Upware enterprise agentic stack diagram

At the top, employees, teams, applications, automations, portals, and channels initiate work. Their intent flows down through the Context and Knowledge Layer (the company's brain — policies, data, business rules, historical interactions) and the Orchestration Layer (agent frameworks like LangGraph, AutoGen, and CrewAI that plan and decompose tasks). The Model Layer provides intelligence through an LLM Gateway that routes, caches, and optimizes across any model. All of this feeds into the Company Harness, which executes the work deterministically, verifies LLM outputs, enforces policies, manages state, and feeds results back for continuous improvement. Below the harness, the Integration and Access Layer and the Enterprise Systems Layer are where actions actually land — in Salesforce, SAP, ServiceNow, Workday, Epic, and whatever else the business runs on.

Governance Is Not Bolted On. It Is the Product.

Ask any enterprise AI team where their deployments stalled, and you will hear a version of the same answer: the technology worked in the proof of concept, but they couldn't take it to production.

The reason is almost never capability. It is governance.

The questions that stop production deployments:

  • Who approved this action?
  • What policy authorized it?
  • Can we demonstrate to a regulator exactly what the agent did?
  • What happens when it fails mid-process?
  • Who is responsible when something goes wrong?

These are not edge-case concerns. They are the table stakes for any industry with regulatory obligations, fiduciary duties, or mission-critical processes.

The Company Harness is where these questions are answered before they become incidents. Governance is not layered on top. It is built in. Every execution is policy-aware. Every action is auditable. Every cost is visible. Every risk is surfaced. Every outcome is measured.

This transforms AI from something enterprises have to restrict into something they can govern — and therefore deploy with confidence into work that actually matters.

The Model Is a Component. The Harness Is the Asset.

There is a strategic argument that sits beneath the operational one.

The pace of model development makes vendor lock-in a serious strategic risk.

The model that represents the best available capability today will be surpassed within months. Consider the directions of change:

  • More capable models will outperform today's best on complex reasoning
  • Cheaper models will make some incumbent choices economically obsolete
  • Specialized models will outperform general-purpose ones on domain-specific tasks
  • On-premise models small enough to run inside the enterprise firewall will become viable for sensitive workloads
  • Open-source models will close the gap with proprietary ones on many tasks

If a company's operational logic lives inside a specific model's prompting style, a proprietary agent framework, or a vendor's environment, every one of these transitions becomes an architectural project. The business has to rebuild its workflows, retrain its configurations, and re-validate its outputs every time the underlying technology changes.

The Stanford and MIT research makes this point directly: well-constructed harnesses produce strategies that are "reusable across models, including future, stronger ones." The harness does not need to be rebuilt when the model changes.

Upware's harness integrates with any model or agent framework — Claude, GPT, Cowork, Gemini, Copilot Studio, n8n, LangGraph, AutoGen, CrewAI, and more — and harnesses the agent to the specific business task at runtime. The model or framework is selected and changed independently of the company's operational logic. Switching from one model to another, or running different models on different tasks, requires no changes to the harness or the processes encoded within it.

The company owns the process. The model provides intelligence to execute it. When you own the harness, models are interchangeable components. When the model is your harness, you are perpetually dependent on someone else's roadmap.

The IP of Your AI Workforce

Every large organization has decades of accumulated operational knowledge.

Some of it is explicit:

  • Policies and standard operating procedures
  • Approval matrices and authorization frameworks
  • System configurations and integration logic
  • Compliance and regulatory requirements

Most of it is not. It exists in:

  • The judgment of experienced employees
  • The exceptions they know to watch for
  • The order of operations that nobody documented because everyone who needed to know already did
  • The institutional wisdom about what a correct outcome actually looks like

This operational knowledge is extraordinarily difficult to turn into software. It has been the enduring challenge of enterprise automation for forty years.

Agentic AI changes the equation. For the first time, it becomes possible to encode that knowledge into systems that can perform work — not merely document it, search it, or surface it on request.

But encoding operational knowledge into AI creates an immediate ownership question: who owns what gets built?

  • If the knowledge is embedded in a foundation model's training data, it is contributing to someone else's product.
  • If it is encoded into a cloud provider's agent environment, the company is renting its own institutional intelligence.
  • If it is locked into a vendor's proprietary workflow configuration, every migration is a rebuild.
  • If it is encoded into the Company Harness, the organization builds something that compounds.

Every process added expands what the AI workforce can do. Every policy encoded makes future execution safer. Every integration opens new capability across the business. Every execution generates data that makes the next execution better. Every exception handled makes the system more resilient.

Over time, the harness becomes an executable representation of how the company operates. Not a static knowledge base — a living system that performs work. That is an asset in the truest sense. It improves with use. It does not depreciate when models change. It belongs to the company.

That is the intellectual property of the agentic workforce.

What Production Looks Like

The architecture is not theoretical.

In a production deployment with a Fortune 1000 insurance company, Upware automated mission-critical customer-facing processes across billing and policy servicing — workloads the organization could not approach with a purely probabilistic agent because accuracy and compliance requirements left no room for variance.

The results, compared against a pure LLM implementation:

Accuracy

100%

across thousands of runs, versus 11% LLM drift rate

Token consumption

70%

lower than a pure LLM implementation

Latency

56%

faster end to end

Time to first value

Days

not months of engineering

These numbers are not a model comparison. They are an architecture comparison.

  • Accuracy reached 100% not because the model became perfect, but because the harness determined which steps required the model and verified its outputs before they touched consequential systems. Without the harness, LLM-alone had an 11% drift rate.
  • Token consumption dropped 70% because the harness compiled deterministic steps out of the reasoning loop — the model was no longer spending tokens rediscovering what a policy lookup involves.
  • Latency improved 56% because structured execution replaced open-ended agentic reasoning.
  • Time to value was measured in days because the harness provided the governance, auditability, and reliability that mission-critical processes require — without months of custom engineering.

Most importantly: the organization was able to deploy AI into work it actually cared about. Billing. Policy servicing. The processes where errors have real consequences. The Company Harness made that possible.

What the Harness Unlocks: Enablement. Optimization. Governance.

Organizations that deploy the Company Harness operate across three value dimensions simultaneously.

Enablement. Agents can be safely deployed at scale for every business user, and into processes that would otherwise be off-limits — mission-critical workflows, regulated workloads, and high-stakes operations where the accuracy and auditability requirements of unconstrained agents cannot be met. The harness expands the frontier of what AI can be trusted to do.

Optimization. Deterministic compilation eliminates unnecessary model calls. The LLM Gateway optimizes model selection for each task. The self-improvement loop drives continuous gains in cost, latency, and accuracy across every execution. The harness makes AI deployment economically sustainable at scale.

Governance. Every action is traceable. Every cost is visible. Every policy is enforced. Every outcome is measured. The harness gives the enterprise the visibility and control required to treat AI as an operational workforce rather than an experimental capability.

The Operating Layer the Agentic Era Demands

Enterprise software has always evolved by moving complexity into higher-level abstractions.

  • Operating systems abstracted hardware
  • Relational databases abstracted storage and retrieval
  • Cloud platforms abstracted infrastructure
  • SaaS abstracted applications
  • APIs abstracted system integration

Each abstraction created a new platform layer that enterprises relied on — and that became the foundation for the next wave of value creation.

Agentic AI requires the same kind of abstraction. There needs to be a layer between probabilistic intelligence and deterministic business execution. A layer that:

  • Knows what the company does and how it does it
  • Applies intelligence selectively, where it is actually required
  • Executes deterministically everywhere else
  • Governs at every step
  • Improves continuously from every execution

That is the Company Harness.

This is not a prediction about a distant future. Enterprises are attempting to deploy agents into consequential work right now. The ones building a harness are discovering that reliability, cost, and governance improve dramatically. The ones treating the model as the system are discovering the limits of that approach in production.

The frontier models will keep improving. The agent frameworks will keep evolving. The infrastructure will keep changing.

But the company still needs to know how its work gets done. It still needs that knowledge to be reliable, auditable, and governed. And it still needs to own it.

The intelligence layer is a commodity that everyone will access. The harness is the company-specific layer that no one can replicate.

Build the harness. Own the work. That is where the durable advantage lives.


Upware provides the Company Harness for enterprise AI — integrating with any model or agent framework and harnessing agents to specific business tasks at runtime, to enable enterprises to deploy AI into any business processes with accuracy, cost-effectiveness, governance, and continuous improvement.

References

  1. Lee, Y., Nair, R., Zhang, Q., Lee, K., Khattab, O., and Finn, C. "Meta-Harness: Automated Harness Search for LLM Systems." Stanford University, MIT, KRAFTON. arxiv.org
  2. Dell'Acqua, F., McFowland, E., Mollick, E., et al. "Navigating the Jagged Technological Frontier: Field Experimental Evidence of the Effects of AI on Knowledge Worker Productivity and Quality." Harvard Business School AI Institute / Boston Consulting Group, 2023. aiinstitute.hbs.edu
  3. Stanford University Human-Centered Artificial Intelligence. "2026 AI Index Report: Technical Performance." hai.stanford.edu
  4. Trooskens, G., Karlsberg, A., Sharma, A., et al. "Compiled AI: Deterministic Code Generation for LLM-Based Workflow Automation." XY.AI Labs, Stanford University School of Medicine, Cornell University, Harvard Medical School, 2026. arxiv.org