A local AI-powered terminal assistant that converts natural language to shell commands. Runs 100% locally — no API key, no internet required.
$ hey "show disk usage"
df -h
$ hey "kill the process using port 8080"
ps aux | grep 8080 | awk '{print $2}' | xargs kill -9
$ hey "find all python files modified in the last 7 days"
find . -type f -name "*.py" -mtime +7- Python 3
- Ollama installed and running
# 1. Install Ollama and pull the model
ollama pull llama3.2
# 2. Install requests
pip install requests
# 3. Clone and install
git clone https://github.com/pokhrelmishan/hey-cli.git
cd hey-cli
sudo cp hey.py /usr/local/bin/hey
# 4. Use it
hey "your query here"- No API key needed
- Works offline
- Fast — powered by Llama 3.2 running locally
- Linux/Ubuntu focused
Built by @pokhrelmishan
