/** * herdctl trigger - Manually trigger an agent * * Commands: * - herdctl trigger Trigger with default schedule * - herdctl trigger --schedule Trigger specific schedule * - herdctl trigger --prompt "..." Custom prompt * - herdctl trigger --wait Wait for job to complete * - herdctl trigger --json JSON output */ export interface TriggerOptions { schedule?: string; prompt?: string; wait?: boolean; json?: boolean; state?: string; config?: string; /** Suppress the default output display */ quiet?: boolean; } /** * Trigger an agent (herdctl trigger) */ export declare function triggerCommand(agentName: string, options: TriggerOptions): Promise; //# sourceMappingURL=trigger.d.ts.map