Agentic AI Module Added To NHI Training Course

Runtime Orchestration

Runtime orchestration is the process of deciding which agent runs next, what it should do, and when the workflow stops. In agentic systems, this can be handled by an LLM, but that makes the orchestration layer part of the security boundary and not just application logic.

Expanded Definition

Runtime orchestration is the decision layer that selects the next action in an agent workflow, determines tool use, and decides when execution should stop. In NHI security, the important boundary is not the workflow itself, but who or what is authorised to steer it at runtime.

Definitions vary across vendors because some treat orchestration as application logic while others treat it as part of the control plane. For agentic systems, that distinction matters: if an NIST Cybersecurity Framework 2.0 lens is applied, runtime decisions affect identity, access, and governance outcomes, not just code flow. A runtime orchestrator may be a rules engine, a workflow service, or an LLM acting as a planner, but in each case it can issue privileged instructions, pass secrets, or extend trust to downstream agents. That makes it part of the security boundary, especially where MCP, tool APIs, or shared credentials are involved.

The most common misapplication is treating orchestration as harmless application glue, which occurs when engineers allow the planner to inherit broad privileges without policy checks.

Examples and Use Cases

Implementing runtime orchestration rigorously often introduces latency and policy complexity, requiring organisations to weigh flexible agent behaviour against tighter approval and inspection paths.

  • An agent receives a customer ticket, routes it to the correct sub-agent, and stops once the resolution confidence threshold is met.
  • A workflow engine grants JIT access to a secrets vault only after a policy check confirms the task is approved and the agent identity is trusted.
  • An LLM-based orchestrator chooses between retrieval, code execution, and human escalation, while RBAC and ZSP policies constrain which tools can be invoked.
  • A security team reviews whether the orchestrator can delegate actions to downstream agents that hold NHI credentials, using guidance from the Ultimate Guide to NHIs.
  • A platform owner maps workflow checkpoints to the NIST Cybersecurity Framework 2.0 so that runtime decisions are logged, reviewed, and tied to identity governance.

In practice, runtime orchestration is most visible when an agent must choose between competing actions, such as whether to call an API, request more context, or stop and escalate to a human operator.

Why It Matters in NHI Security

Runtime orchestration matters because it determines which identities can act, with what scope, and under which conditions. If the orchestrator can select tools or agents without guardrails, the result is often privilege sprawl, hidden trust chains, and unrecoverable secret exposure. That is especially risky when orchestration logic is embedded inside the same LLM that interprets user intent.

NHIs are already a major exposure surface: Ultimate Guide to NHIs reports that 97% of NHIs carry excessive privileges, which broadens the attack surface when orchestration can impersonate or delegate across identities. The governance lesson is simple: runtime decision-making must be treated as a controlled function, not a casual design convenience. This is where NIST Cybersecurity Framework 2.0 concepts such as access control, monitoring, and recovery become operationally relevant for agentic systems.

Organisations typically encounter orchestration risk only after an agent executes the wrong action, at which point runtime orchestration becomes operationally unavoidable to address.

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 OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Agentic AI Top 10 A1 Agent planners and tool-using workflows are central to runtime orchestration risk.
OWASP Non-Human Identity Top 10 NHI-02 Orchestration can expose or misuse secrets if runtime decisions are not governed.
NIST Zero Trust (SP 800-207) SC-1 Zero Trust requires continuous verification of runtime actions and delegated access.

Constrain planner permissions, inspect tool calls, and require policy checks before agent delegation.