When to use a Manager Agent
Use a Manager Agent when a single task requires handoffs across multiple domains. A customer request that needs to check a knowledge base, query a database, and then send a confirmation email is a good fit: three discrete sub-agents, each doing one thing well, coordinated by a manager. Example: An HR assistant workflow where:- A
Policy Q&Asub-agent answers questions from the employee handbook Knowledge Base - A
Leave Calculatorsub-agent queries the HR database via Semantic Model - A
Mail Sendersub-agent sends summaries to the employee’s inbox
Single responsibility principle
The Manager Agent’s job is routing and coordination, not answering questions directly. Follow these practices to keep orchestration predictable:- Do not attach a Knowledge Base to the Manager Agent. Sub-agents should own retrieval. If the manager has its own KB, it will attempt to answer directly instead of delegating, which defeats the purpose of the architecture.
- Do not attach tools to the Manager Agent. Tools belong on the sub-agents that need them. A manager with its own tools creates ambiguity about which layer is responsible for an action.
- Keep the manager’s instructions focused on routing. Describe what types of requests it should delegate and to which sub-agents, not how to answer specific questions.
Set up a Manager Agent in Studio
In Lyzr Studio, an agent becomes a Manager Agent the moment you add the first sub-agent. There is no separate toggle: the Managerial Agent section at the bottom of any agent’s Build tab is where sub-agents are managed, and adding one automatically enables manager behavior.Step 1: Open the agent you want to use as the manager
Navigate to Agents in the sidebar and select the agent. If you are starting from scratch, create a new agent first and configure its role, goal, and instructions around coordination and routing.Step 2: Add a sub-agent
Scroll to the Managerial Agent section at the bottom of the Build tab. Select + Agent. Studio shows a list of all existing agents in your workspace. Select the agent you want to add as a sub-agent.
Policy Pro Insight sub-agent:
