Ask a question and get back to your shell:
$ ask how do i find TODO or FIXME comments in src
Use ripgrep:
rg -n 'TODO|FIXME' src
$ rg -n 'TODO|FIXME' src
src/generated/client.ts:18:// TODO: generated placeholder
src/generated/schema.ts:204:// FIXME: compatibility shim
src/api.ts:42:// TODO: retry failed requests
$ ask -c how do i exclude generated files
Add an exclude:
rg -n --glob '!generated/**' 'TODO|FIXME' src
$ rg ...Or just run ask to start a session:
$ ask
> why is this container restarting?
Check its exit code:
docker inspect -f '{{.State.ExitCode}}' my-container
> it says 137. what does that mean?
Exit code 137 usually means SIGKILL, often from running out of memory.
> thank you
You're welcome.
> ^D
$ ...Every answer is saved. Use ask -c to continue the latest one in this folder.
I made ask because I wanted a normal terminal command for asking AI questions, whichever agent or model I used. I didn't want a TUI. I wanted to ask something, read the answer, and get my shell back.
Coding agents do a lot in the background, and I don't always want that. With ask, the agent stays read-only. I run the commands and make the changes myself. That way I actually learn.
curl -fsSL https://benja.dev/ask/install.sh | shThe installer supports Intel/ARM Macs and x86_64/ARM64 Linux. It verifies the release checksum and installs to ~/.local/bin/ask. Set ASK_INSTALL_DIR to change the destination.
ask [QUESTION...] ask once
ask start a session
ask -c [QUESTION...] continue the latest session here
ask --sessions reopen a saved session
ask --settings set defaults for new sessions
ask --upgrade update ask
ask -V print the version
Answers go to stdout. Prompts and errors go to stderr, so one-shot answers are safe to pipe. Agents start in the current directory and run read-only.
ask checks for updates at most once a day. If a new version is available, it lets you know when you get your shell back. You won't get another notice for that version. Set ASK_NO_UPDATE_CHECK=1 to turn this off. ask only updates when you run ask --upgrade.
Under the hood, ask runs Codex, Claude Code, Pi, or OpenCode using the CLI already installed and logged in on your machine.
For a new session, ask uses your default agent, model, and reasoning. Continuing a session restores those saved choices and the underlying agent session ID. Answer instructions come from the current global setting. Ask starts the selected CLI read-only in your current folder, prints the answer to stdout, and saves the turn automatically.
Run ask --settings to choose the default agent, model, reasoning, and answer instructions. Use /settings inside a session to change that session's model or reasoning, or to edit the global answer instructions. Start a new session to switch agents.
Requires Rust 1.88 or newer. Before opening a pull request:
cargo fmt --check
cargo test --locked
cargo clippy --locked --all-targets -- -D warningsInstaller changes also need shellcheck install.sh tests/install.sh and sh tests/install.sh.
MIT. Have fun :)