/shell-ai

A fantastic little AI Shell Assistant powered by GPT4.

Primary LanguageGo

ShellAI

A fantastic little AI Shell Assistant powered by GPT.

Turn natural language into shell commands, and ask open-ended questions!

Install

brew tap ibigio/ibigio
brew install shell-ai

or

curl https://raw.githubusercontent.com/ibigio/shell-ai/main/intsall.sh | bash

and set your OPENAI key (get one here) like so:

export OPENAI_API_KEY=[your key]

Usage

Type q followed by a description of a shell command you want to write!

Nice for beginners...

$ q make a new git branch
git checkout -b "new-branch"

...and those who forget how to use find, like me.

$ q find files that contain "administrative" in the name
find . -name "*administrative*"

You can get really specific too.

$ q print my local ip formatted like so "ip: [ip]" for mac
ifconfig | grep "inet " | grep -v 127.0.0.1 | awk '{print "ip: " $2}'

Or general.

$ q how do i set up a new nextjs project
To set up a new Next.js project, first make sure you have Node.js installed. Then, run the following command in your terminal:

npx create-next-app your-project-name

And deep.

$ q what is the meaning of life
42

More

By default this uses the gpt-3.5-turbo model, but if you want to use gpt-4 you can override like so:

export OPENAI_MODEL_OVERRIDE="gpt-4"