ask

Ask

A proof-of-concept Gemini chat client written entirely in sh. [download]


USAGE

INSTALL
curl -fLsSo ~/.local/bin/ask ask.angus.sh/install.sh
FIRST RUN
export GEMINI_API_KEY= # Your key ...
ask 'Ahoy!'
PRESERVE CONTEXT
ask "I like root beer."
ask --related "Do I like root beer?"
ATTACH A FILE
ask --attach README.md "Summarize this."
UNIX PIPES
cat *.js | ask "Consolidate these into a single TypeScript module." > mod.ts
ask --echo