/** * crewx execute handler. * Parses args, loads config via Crewx SDK, and executes the task. * * Flags: * --thread Conversation thread name * --provider Provider override * --metadata Extra metadata JSON (double-quoted object). Propagated to events/hooks/tracing. * e.g. --metadata='{"workflow_id":"wf-1"}' * --verbose Debug output mode (default: raw agent response only) * --config/-c Config file path override * --output-format Output format (json|text|stream-json) * --effort Model effort (high|medium|low) * -f/--prompt-file Read task body from file (bypasses cmd.exe argv truncation) * * Stdin support: * Pipe or redirect content into crewx x to supply the task body via stdin. * e.g. cat task.md | crewx x "@agent label" * Stdin is ignored when running in an interactive TTY. */ /** * Handle `crewx execute ` command. * * Default output: raw agent response only (stdout). * --verbose: debug info written to stderr, response to stdout. */ export declare function handleExecute(args: string[]): Promise;