/** * `adapters run` command implementation. * * @see docs/10-cli-reference.md Section 6 */ import type { AgentMuxClient } from '@a5c-ai/comm-adapter'; import type { ParsedArgs } from '../parse-args.js'; import type { FlagDef } from '../parse-args.js'; /** Run-specific flag definitions. */ export declare const RUN_FLAGS: Record; /** * Validate mutual exclusion rules. * Returns an error message or null if valid. */ export declare function validateRunFlags(flags: Record): string | null; /** * Build RunOptions from parsed args. */ export declare function buildRunOptions(args: ParsedArgs, registeredAgents: Set): { agent?: string; prompt?: string; options: Record; }; /** * Execute the run command. */ export declare function runCommand(client: AgentMuxClient, args: ParsedArgs): Promise;