Skip to content

v0.7.0

Latest

Choose a tag to compare

@elias-ba elias-ba released this 28 Feb 22:21
· 1 commit to main since this release
1ff563e

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.