/** * Coordinator SLOP Agent * * SLOP-native agent that orchestrates all other agents. * Manages pipelines, shared memory, and agent communication. */ import { SLOPAgent } from './base.js'; import { SLOPAgentConfig, SLOPToolCall, SLOPToolResult } from './types.js'; export declare class CoordinatorAgent extends SLOPAgent { private agents; private pipelineHistory; constructor(config?: Partial); handleToolCall(call: SLOPToolCall): Promise; private registerAgent; private listAgents; private callAgentTool; private runPipeline; private findAgentWithTool; private broadcast; /** * Auto-discover and register agents on common ports */ discoverAgents(): Promise; }