/** * Agent CLI Commands for NeuroLink * Implements comprehensive multi-agent orchestration commands * * Commands: * - agent create: Create a new agent definition * - agent list: List registered agents * - agent execute: Execute a single agent * - network create: Create an agent network * - network execute: Execute a network */ import type { CommandModule } from "yargs"; /** * Agent CLI command factory */ export declare class AgentCommandFactory { /** * Create the main agent command with subcommands */ static createAgentCommands(): CommandModule; /** * Create the network command with subcommands */ static createNetworkCommands(): CommandModule; private static buildCreateOptions; private static buildListOptions; private static buildExecuteOptions; private static buildNetworkCreateOptions; private static buildNetworkListOptions; private static buildNetworkExecuteOptions; private static executeCreate; private static executeList; private static executeAgent; private static executeNetworkCreate; private static executeNetworkList; private static executeNetwork; }