Adds a new swarm to the system for managing client sessions.

This function registers a new swarm, which serves as the root entity for initiating and managing client sessions within the system. The swarm defines the structure and behavior of agent interactions and session workflows. Only swarms registered through this function are recognized by the system. 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 swarm's name upon successful registration.

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

const swarmSchema = { swarmName: "TaskSwarm", defaultAgent: "AgentX" };
const swarmName = addSwarm(swarmSchema);
console.log(swarmName); // Outputs "TaskSwarm"
  • Parameters

    • swarmSchema: ISwarmSchema

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

    Returns string

    The name of the newly added swarm (swarmSchema.swarmName), confirming its registration.