ProtectedInternalInternal method that must be implemented by derived action classes. This is where the actual action logic should be implemented.
The action execution parameters including typed context
Promise resolving to the action result
Executes the action with the provided parameters.
The action execution parameters including context
Promise resolving to the action result
Action that executes any top-level AI Agent by name or ID.
Serves two purposes:
utilities.actions.Invoke) can run agents through the uniform Action catalog instead of reaching for the AgentRunner API.AIAgent.ExposeAsActiononce the auto-registration pass lands — every exposed agent becomes callable as an action without a separate Custom class per agent.Not used inside the Runtime Actions bridge. Script code calling
utilities.agents.Run(...)from the sandbox bridges back to the host which invokesAgentRunner.RunAgent()directly — skipping this wrapper because the bridge already runs in-process withcontextUserand doesn't need the action-catalog indirection.Example