By NHI Mgmt Group Editorial TeamDomain: AI SecuritySource: ArizePublished May 11, 2026

TL;DR: AI observability is evolving from human-facing dashboards into a context platform where traces, evals, feedback, and APIs let coding agents verify, diagnose, and rerun changes, because non-deterministic agent behaviour makes traces the source of truth, according to Arize. The governance shift is clear: agents now need programmatic evidence, not just visual inspection, if teams want to control delegated work.


At a glance

What this is: This is Arize's argument that observability for AI systems is shifting into a context platform that lets humans and agents verify, diagnose, and improve agentic software through traces, evals, feedback, and APIs.

Why it matters: It matters to IAM practitioners because agentic systems increasingly behave like delegated operators, and that expands governance from access control alone to evidence, accountability, and runtime verification across NHI and human workflows.

👉 Read Arize's analysis of observability becoming a context platform for agents


Context

AI observability breaks down when the system being observed is no longer just a model or a dashboard-facing workflow. In agentic software, the problem is not only visibility, but whether the system can produce usable evidence that a software entity can query, interpret, and act on. That creates a governance gap for identity teams because the operating unit is increasingly a software actor with delegated access, not only a human reviewer.

Arize's article frames this as a shift from human-centred observability to shared context for humans and agents. That framing is relevant to NHI governance because agents need scoped access to traces, evals, APIs, and runtime context to prove work, while security teams need to decide what evidence they trust, what access they delegate, and where verification must remain human-controlled. The starting position is becoming common across AI-native engineering, not exceptional.


Key questions

Q: How should teams govern AI agents that run improvement loops across code and traces?

A: Treat each agent worker as a scoped runtime identity with least privilege, bounded execution time, and explicit separation of duties. The discovery, fix, and review steps should not share the same authority or merge path. Governance should also cover telemetry quality, because if traces are incomplete or inconsistent, you cannot reliably validate what the agent changed.

Q: Why do agentic systems need more than standard observability dashboards?

A: Because dashboards are designed for humans to inspect after the fact, while agents need machine-readable context they can query during the workflow. If the evidence cannot be consumed through APIs, CLIs, or similar interfaces, the agent cannot verify its own changes or explain its reasoning. That makes programmatic access part of governance, not an optional feature.

Q: What do security teams get wrong about self-improving agent loops?

A: They often assume the main risk is bad output, when the deeper risk is uncontrolled delegation. A loop that can trace, evaluate, change, and rerun can amplify mistakes quickly if approval gates, audit trails, and scope limits are weak. The control objective is not to stop iteration, but to bound where automation can close the loop on its own.

Q: How do you know if agent evaluation is actually working?

A: It is working when it explains failures well enough to change the system, not just when it outputs a score. Good evaluation should point to the layer that failed, produce a reproducible trace, and feed confirmed failures into regression tests. If the score does not change engineering decisions, it is not yet operational.


Technical breakdown

Why traces become the source of truth in agentic systems

In deterministic software, logs and code review explain most behaviour before runtime. In agentic systems, decisions are made inside the model loop and may vary even with the same prompt and context, so the trace becomes the authoritative record. A trace can capture tool calls, routing decisions, retrieved content, latency shifts, and failures. That makes traces the substrate for debugging, regression testing, and evidence-based verification. The architectural shift is important: control moves from static inspection to runtime proof, which is closer to how delegated software actually behaves.

Practical implication: build trace access and trace retention into governance so reviewers can reconstruct what an agent actually did, not just what it was asked to do.

How evaluation changes when agents use tools and context

Classic LLM evaluation usually scores input-output quality. Agent evaluation is broader because the unit under test includes tool use, orchestration, environment interaction, and self-correction. That means evaluators need richer inputs such as full trajectories, sandboxed execution, repetition analysis, and change history. The article's emphasis on agent-as-a-judge reflects a practical reality: an evaluator that can reason over the same context as the agent is better aligned to long-running workflows than a single-turn scorer. This is a shift from output grading to behavioural verification.

Practical implication: treat evaluation as part of the control plane, and validate both decision quality and operational side effects before changes are promoted.

Why MCP matters for programmatic context access

The article explicitly points to MCP endpoints alongside APIs and CLIs because agents need machine-readable access to context where they already operate. MCP is useful here because it standardises tool and data access across agent workflows instead of forcing everything through a human UI. In practical terms, that means observability data can be exposed in a way that allows another agent or an automation to inspect traces, correlate failures, and trigger remediation. The technical risk is that context access itself becomes a governed integration point, not a passive reporting layer.

Practical implication: apply least privilege to agent-facing context interfaces and review MCP-exposed tools as if they were any other privileged integration.


NHI Mgmt Group analysis

Agent observability is becoming an identity and governance problem, not just an engineering problem. Once software entities can inspect traces, query evals, and act on feedback, the platform is no longer only reporting on behaviour. It is mediating delegated authority between human and machine actors. That means access to context becomes part of the trust boundary, and the organisation must decide what an agent is allowed to know, modify, and prove. Practitioners should treat context systems as governed runtime surfaces.

Context platforms create a named control gap we would call the verification trust gap. Traditional observability assumes humans will interpret the output and decide what to do next. Agentic systems collapse that assumption because the same software that changed the code may also inspect the traces and propose the fix. That creates a loop where verification and execution are too tightly coupled unless controls enforce separation of duties, evidence quality, and escalation paths. Practitioners should require independent checkpoints for high-impact changes.

MCP-based context exposure extends NHI governance into AI engineering workflows. If agents can query traces and experiments through APIs or MCP endpoints, then those interfaces become non-human access paths that need ownership, scoping, auditing, and revocation. This is not abstract architecture talk. It is the same lifecycle problem IAM teams face with other service identities, now applied to AI debugging and improvement loops. Practitioners should inventory agent-facing interfaces as governed identities in their own right.

Self-improving agent loops will force teams to redefine what evidence is enough. The article's trace, eval, fix, rerun loop is powerful because it converts context into action, but it also raises the threshold for acceptable automation. Teams will need policies that distinguish low-risk iteration from changes that must remain human-approved. The field is moving toward delegated verification, but not delegated accountability. Practitioners should build approval boundaries around the loop, not outside it.

What this signals

Verification trust gap: as agentic workflows mature, the governance question shifts from whether teams can observe behaviour to whether they can trust the evidence an agent uses to justify action. That means AI engineering and identity governance will increasingly overlap around scoped access, auditability, and escalation design, especially where non-human actors can consume operational telemetry.

Programmes that already manage NHIs should expect a familiar pattern: the control surface moves upstream, and the access request becomes part of the product architecture. Security teams should align AI engineering telemetry access with least privilege and review any agent-facing integration through the same lens they use for other delegated identities.


For practitioners

  • Classify agent-facing context systems as governed access surfaces Inventory APIs, CLIs, and MCP endpoints that expose traces, evals, and feedback, then assign owners, logging, and revocation paths as you would for any other privileged integration.
  • Separate evaluation from change execution Require an independent verification step for code changes generated by agents so the same workflow cannot both modify behaviour and declare success without review.
  • Define approval thresholds for trace-driven automation Set explicit rules for which workloads can use trace, eval, fix, rerun loops autonomously and which must stop for human approval before promotion.
  • Apply least privilege to context retrieval tools Restrict which traces, experiments, and annotations each agent can query, and review those permissions on the same cadence as other non-human identities.

Key takeaways

  • Agentic software changes observability from a reporting function into a governed verification layer.
  • When agents can inspect traces and run fixes, the main risk becomes uncontrolled delegation, not just inaccurate outputs.
  • Security and IAM teams should classify agent-facing context interfaces as privileged access paths and govern them accordingly.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Agentic AI Top 10 and MITRE ATT&CK address the attack and risk surface, while NIST AI RMF, NIST CSF 2.0 and NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.

FrameworkControl / ReferenceRelevance
OWASP Agentic AI Top 10Agent-facing context access and self-improving loops map to agentic AI governance risks.
NIST AI RMFGOVERNThe article is fundamentally about accountability and oversight for delegated AI workflows.
NIST CSF 2.0PR.AC-4Programmatic access to traces and APIs is an access-control problem as much as an observability issue.
NIST Zero Trust (SP 800-207)Agentic context platforms should expose only the minimum needed context to each actor.
MITRE ATT&CKTA0003 , Persistence; TA0004 , Privilege EscalationSelf-improving loops can expand privilege and preserve access if not tightly governed.

Review agent tool access, trace visibility, and approval boundaries against agentic AI misuse cases.


Key terms

  • Context Platform: A context platform is an AI operations layer that stores and exposes traces, evals, annotations, feedback, and experiments so both humans and software agents can query them. It turns observability data into actionable context for verification, debugging, and controlled automation.
  • Trace: A trace is the runtime record of what an agentic system actually did, including model calls, tool invocations, routing choices, and retrieved context. In non-deterministic systems, traces matter because they capture observed behaviour rather than expected behaviour.
  • Agent-as-a-Judge: Agent-as-a-Judge is an evaluation pattern where one agent evaluates the work of another using the same kind of iterative, context-rich reasoning it applies in production. It is useful when outputs depend on tool use, multi-step reasoning, or long-running workflows.
  • Activation Trust Gap: The activation trust gap is the difference between trusting data because it is protected and governing it because it is being reused. It appears when organisations move data from backup or archival systems into AI pipelines without reapplying access, sensitivity, and consumer controls.

What's in the full article

Arize's full article covers the operational detail this post intentionally leaves for the source:

  • The trace, eval, fix, rerun loop described at the CLI and API level for agent workflows
  • How Phoenix Intelligence is intended to separate human-assist and autonomous expert modes
  • The specific role of GraphQL, CLI, and MCP endpoints in agent-accessible context delivery
  • The product rationale for moving from observability dashboards to shared context surfaces

👉 The full Arize article covers the agent loop architecture, evaluation surfaces, and Phoenix Intelligence direction.

Deepen your knowledge

The NHI Foundation Level course, the industry's only accredited NHI security programme, covers NHI governance, agentic AI identity, machine identity security, and secrets management. It gives identity and security practitioners a common framework for governing delegated software actors across modern programmes.
NHIMG Editorial Note
Published by the NHIMG editorial team on August 20, 2026.
NHI Mgmt Group — the independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org