Adds a new agent to the agent registry for use within the swarm system.
This function registers a new agent by adding it to the agent validation and schema services, making it available for swarm operations.
Only agents registered through this function can be utilized by the swarm. The execution is wrapped in beginContext to ensure it runs
outside of existing method and execution contexts, providing a clean execution environment. The function logs the operation if enabled
and returns the agent's name upon successful registration.
Throws
If the agent schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate agent name).
Adds a new agent to the agent registry for use within the swarm system.
This function registers a new agent by adding it to the agent validation and schema services, making it available for swarm operations. Only agents registered through this function can be utilized by the swarm. The execution is wrapped in
beginContext
to ensure it runs outside of existing method and execution contexts, providing a clean execution environment. The function logs the operation if enabled and returns the agent's name upon successful registration.Throws
If the agent schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate agent name).
Example