UNPKG

snow-flow

Version:

Snow-Flow v3.2.0: Complete ServiceNow Enterprise Suite with 180+ MCP Tools. ATF Testing, Knowledge Management, Service Catalog, Change Management with CAB scheduling, Virtual Agent chatbots with NLU, Performance Analytics KPIs, Flow Designer automation, A

21 lines 687 B
/** * Dynamic Agent Discovery Methods * To be integrated into snow-flow-mcp.ts */ export declare const agentDiscoveryMethods: { handleAgentDiscover(args: any): Promise<{ content: { type: string; text: string; }[]; }>; getBaseAgentTypes(): string[]; generateAgentName(type: string): string; discoverAgentForCapability(capability: string): any; createAgentBatches(agents: any[], dependencies: { [key: string]: string[]; }): string[][]; findCriticalPath(batches: string[][]): string[]; storeAgentDiscovery(taskAnalysis: any, agents: any[]): void; }; //# sourceMappingURL=agent-discovery-methods.d.ts.map