/** * herdctl init agent - Add a new agent to the fleet * * Interactive command that walks through agent configuration: * - Name, description, permission mode * - Docker, runtime * - Discord/Slack chat integration * * Generates agents//agent.yaml and appends a reference to herdctl.yaml. */ export interface InitAgentOptions { description?: string; permissionMode?: string; docker?: boolean; runtime?: string; discord?: boolean; slack?: boolean; yes?: boolean; force?: boolean; } export declare function initAgentCommand(nameArg: string | undefined, options: InitAgentOptions): Promise; //# sourceMappingURL=init-agent.d.ts.map