# Agent registry for the Matrix bot. # # user_agents: maps a Matrix user ID to an agent ID. # If a user is not listed here, the bot uses the first agent from the list below. # Omit this section entirely for a single-agent setup. # # agents: list of available agents. # id — must match the agent ID known to the platform (used as key in AgentApi connections) # label — human-readable name (shown in logs) # # The agent HTTP endpoint is set globally via AGENT_BASE_URL env var (not per-agent here). # File workspace paths are derived from SURFACES_WORKSPACE_DIR env var. user_agents: "@user0:matrix.example.org": agent-0 "@user1:matrix.example.org": agent-1 agents: - id: agent-0 label: "Agent 0" - id: agent-1 label: "Agent 1"