Command-Only Mode
New -x and -X flags for when you just need the command, not an explanation.
ask -x 'your task'— outputs just the shell command to stdout. No markdown, no explanation, no preamble. Pipe-friendly.ask -X 'your task'— shows the command and prompts to execute it. One-step agent mode without the plan overhead.
Examples
ask -x 'find duplicate files by checksum'
ask -x 'compress all PNGs recursively' | pbcopy
ask -X 'show disk usage of top 5 largest directories'Works in both bash (-x / -X) and PowerShell (-CommandOnly / -CommandExecute).
Safety blocklist is enforced on -X — destructive commands are blocked before execution.