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.

If the agent schema is invalid or if registration fails due to conflicts or service errors (e.g., duplicate agent name).

const agentSchema = { agentName: "AgentX", prompt: "Handle tasks" };
const agentName = addAgent(agentSchema);
console.log(agentName); // Outputs "AgentX"
  • Parameters

    • agentSchema: IAgentSchema

      The schema defining the agent's properties, including its name (agentName) and other configuration details.

    Returns string

    The name of the newly added agent (agentSchema.agentName), confirming its registration.