What Is a Harness and Why It Matters to Security Leaders
Back to top
September 9, 2026
What Is a Harness and Why It Matters to Security Leaders
When organizations evaluate AI, much of the attention goes to the model: Which model is most accurate? Which performs best on reasoning benchmarks? Which should the organization standardize on?
But a model rarely operates alone. Once AI is expected to investigate an alert, retrieve evidence, query security tools, maintain state across multiple steps, or take an action, another layer becomes critically important: the harness.
The harness is the software around a model that determines what it can see, do, and remember, and how its work is constrained or measured.
In the Fal.Con 2026 keynote, NVIDIA founder and CEO Jensen Huang said “The harness is essentially the exoskeleton of the large language model.” The LLM is the brain. The exoskeleton turns it into an agent. That exoskeleton doesn't need to be the same shape or have the same capabilities for every job. Some may have wheels. Some may have legs. But the capabilities should be domain- and task-specific.
In cybersecurity, that means the agentic system should be designed around the work that security teams actually do: the context agents need, the security tools they can use, the workflows they follow; and the organization's own permissions, policies, and regulatory requirements.
The agent harness: turning reasoning into safe, effective action
A large language model analyzes information and generates a response. It is fundamentally a text-in, text-out neural network, a brain in a jar.
But for a model to open a file, run code, browse the web, query security tools, or take action in the environment, it needs to be able to access tools, and it needs software to orchestrate those interactions.
This is where the agent harness comes in. It gives the model the parts necessary to be:
- Operational - enabling the model to actively participate in multi-step workflows rather than passively generating text responses
- Governed - enforcing access boundaries, role-based controls, regulatory guardrails, and environment-specific policy
- More reliable - reducing the ways that AI can go wrong, keeping it anchored to relevant context, stopping it from making things up, and handling errors
It determines what context the model can retrieve, which tools it can use, what information persists between steps, which actions are permitted, and where controls such as approvals, cost limits, audit trails, and safe-stop mechanisms apply.
The model is just the reasoning engine. Alone, it does not inherently know how to operate safely inside a live, enterprise environment. Alone, it does not determine the performance of SOC agents.
What can an agent harness actually do?
The harness is the enterprise infrastructure that turns raw reasoning into a safe, reliable, and governed cybersecurity agent.
At the center is the agent loop. The agent receives an alert or analyst request, reasons about the evidence, takes an approved action, observes the result, and adjusts its next step. That feedback loop allows it to investigate dynamically instead of following a fixed sequence.
On the left, the harness gives the agent what it needs to work.
- What should the AI see? - Context retrieval gathers the right data and history across disparate tools
- What should the AI do? - Tools and orchestration breaks complex investigations into steps, invokes the right tools at the right time, and routes work among multiple agents or specialized tools when needed
- What should the AI remember? - Memory preserves findings across long investigations and useful lessons from prior work.
On the right, the harness enforces enterprise guardrails.
- What rules must the AI follow? - Governance enables the agent to enforce permissions and policy guardrails, require human approval based on risk, and maintain an auditable decision trail
- How should the AI spend its budget? - Optimizing for speed, accuracy, and operational cost includes choosing the right model and level of reasoning for the task, avoiding redundant work and bloated context windows, and improving the agent over time
- What is the AI allowed to do? - Bounded action limits what the agent can change through scoped permissions, human approval gates, and clear escalation paths
This leads to an important principle for agentic security: Don't rely on the model to enforce its own permissions or safety boundaries.
If policy says an investigation agent may read endpoint information but may not isolate an endpoint, that restriction should ideally exist outside the model itself. The model can request an action. The harness should determine whether that action is actually permitted.
Leading AI companies such as Anthropic, OpenAI, and Google train their proprietary models to refuse requests deemed as harmful or inappropriate. But these methods don't always work. They can be manipulated using cleverly-phrased prompts, and some harmful requests make it through.
Moreover, open-weight AI models are increasingly popular because they lower costs, prevent a small number of companies from monopolizing AI, and allow you to run models on your own local hardware or private servers so your sensitive data never leaves your infrastructure. But their guardrails are much easier to strip away. Open-weight models give you the actual files (the weights) that store how the AI thinks. You can train the AI on a small batch of rule-breaking data to wipe out the old safety rules. This process is called fine-tuning or abliteration. Tools like LoRA can let anyone bypass safety filters using a standard personal computer.
Where compliance and AI governance enter the picture
As AI systems gain access to sensitive information and greater authority, organizations need to answer questions such as:
- Who is allowed to access this data?
- Which models can process it?
- Can information leave a particular environment?
- Which actions require a person to approve them?
- Can we reconstruct what the system did later?
The harness can become one of the places where AI governance policies are translated into enforceable technical controls. That can include:
- access and data-handling restrictions
- approved models and tools
- role-based permissions
- human-approval requirements
- logging and audit trails
- retention of evidence about agent activity
- safe-stop or revocation mechanisms
The harness doesn't make an application compliant with a regulation. Compliance depends on the regulation, use case, and the organization's broader controls. But it can provide important mechanisms for enforcing policy and demonstrating how an AI system was governed. For a CISO, that makes harness architecture as much a risk-management question as an AI architecture question.
The evaluation harness
So far, we've been describing the agent harness — the harness that controls how an agent operates in production. It guides the AI to perform work.
Now we’ll cover the evaluation harness — the harness that tests models, agents, context, and tools against defined tasks in a sandbox environment. It determines how well a certain configuration performs work.
As previously mentioned, model performance alone doesn't tell you how well an agentic system will perform. Consider a SOC that wants an agent to investigate lateral movement. A controlled evaluation could hold the security task constant while:
- Changing the model: Does a frontier or open-weight model reason more accurately than another?
- Changing the context: Does structured network metadata produce better results than raw logs? Does adding identity context improve accuracy enough to justify the additional tokens?
- Changing the tools: Does giving the agent an API or MCP connection improve its ability to complete the investigation?
- Changing the prompts and orchestration: Does a different workflow reduce unnecessary steps or errors?
The evaluation system can compare these combinations across accuracy, latency, and cost.
The best model may not produce the best system
This leads to one of the most useful lessons evaluation harnesses can provide. Imagine three different hypothetical configurations:
Changing the context or tools can matter as much as changing the model. An organization could discover that a smaller model supplied with high-quality, structured context performs better than a more expensive model forced to make sense of poorly prepared data.
Or it may discover that one model works exceptionally well until it has to use a particular security tool. Maybe the model is weaker at selecting tools, filling schemas correctly, recovering from errors, and interpreting structured responses. If one model performs poorly with a security tool, you may want to ask: is this a model problem, a tool-interface problem, a data-normalization problem, or a harness-design problem?
The best model on a benchmark may not be the best system for your SOC. What matters is how the model, context, tools, and harness perform together on real security work.
Do you buy a harness or build one?
AI harnesses don’t fall into a single, well-defined product category. Some organizations will adopt integrated AI applications or platforms that package much of the architecture for them. An AI SOC platform, for example, may include agents, integrations, orchestration, model access, permissions, auditing and other harness capabilities underneath the user-facing application. The harness is part of the larger system.
Other organizations will take a modular approach, assembling separate technologies for capabilities such as model access and routing, context retrieval, agent orchestration, tool connectivity, permissions and policy, observability, and evaluation.
Some enterprises will build substantial portions themselves.
The choice between integrated and modular approaches involves familiar architectural tradeoffs: speed versus control, simplicity versus flexibility, and abstraction versus transparency.
8 questions security leaders should be asking about their agentic system
As AI moves deeper into security operations, model selection is only one part of the architecture. Security leaders should also understand:
- What context can the agent access, and how is relevant context selected?
- How does the system distinguish trusted instructions from potential indirect prompt injection?
- What tools and actions are available to the agent?
- Where are permissions and human approvals actually enforced?
- Can we reconstruct what evidence the agent used, what tools it called and what actions it took?
- Can we change models without rebuilding the entire workflow?
- How do we evaluate different combinations of models, context and tools against real security tasks?
- Are accuracy, latency, cost and security tested continuously as the system changes?
Those questions tell you considerably more about an AI system than the name of the model underneath it.
The model is only part of the system
The model that performs best today may not be the one an organization uses a year from now. New tools will get connected. And organizations will gradually shift from AI that observes, to AI that recommends, to AI that can act. The harness has to keep pace with those changes. To learn more about the context, model, harness architecture, read Open Models Need Open Context.
Discover more

Principal Product Marketing Manager
Robyn is a product marketing leader specializing in AI, cybersecurity, and emerging technologies. At ExtraHop, she focuses on how network context advances autonomous security and operational resilience. Previously, she held marketing roles at Google Cloud, Amazon, and Microsoft.
Share
Key Takeaways
- The raw LLM provides the reasoning, while the harness provides the guardrails to execute safe, effective security workflows in an enterprise environment.
- Safety and governance must reside outside the model. Never rely on the model policing itself.
- A better system beats a bigger model. Evaluating combinations of tools, context, and models can show which system outperforms in accuracy, latency, and operational cost.


