$GITHOOD on 🔴 Robinhood · DexScreener · Buy on Pons ↗
Open Source · Free · v0.2.0

Your Git workflow,
supercharged by AI

GitHood lives in your terminal. Generate commit messages, review code, fix bugs from error output, and chat with AI about your entire repo. No browser. No IDE plugin. Just the command line.

~/my-project
xAI Grok OpenAI Anthropic Ollama

$GITHOOD on Robinhood Chain

The token powering the GitHood ecosystem. Live on Robinhood Chain network.

Contract Address
⏳ COMING SOON
🔴 Robinhood Chain

Everything you need,
nothing you don't

📝

GitHood commit

Reads your staged diff and recent commit history to generate a perfect Conventional Commits message. One command — done.

$ GitHood commit --dry-run
🔍

GitHood review

Instant AI code review covering bugs, security issues, performance, and style — on your staged or unstaged changes.

$ GitHood review
💡

GitHood explain

Plain-English explanation of any diff or commit. Great for understanding unfamiliar code or onboarding teammates.

$ GitHood explain --commit HEAD~1
🔧

GitHood fix

Paste an error or pipe stderr directly. AI reads your files, generates a patch, previews it with syntax highlighting, then asks before writing.

$ python app.py 2>&1 | GitHood fix
💬

GitHood chat

Interactive REPL with your full git context pre-loaded. Slash commands for diff, status, adding files, and more.

$ GitHood chat --provider ollama
⚙️

GitHood config

Manage providers, models, and API keys in ~/.GitHood.toml. Per-command overrides with --provider and --model.

$ GitHood config show

See GitHood in action

~/my-project — GitHood

One CLI. Any AI.

Switch providers in one command. No lock-in, ever.

xAI Grok

grok-3

Default provider. Fast, capable, and deeply integrated with the xAI ecosystem.

XAI_API_KEY

OpenAI

gpt-4o

Industry standard. Great for code generation and nuanced technical reviews.

OPENAI_API_KEY

Anthropic

claude-sonnet-4-5

Excellent at following instructions precisely. Top choice for code review.

ANTHROPIC_API_KEY

Ollama

llama3 · codellama · mistral

Run fully local. No API key. No data leaves your machine. 100% private.

No key needed
$ GitHood config set defaults.provider openai

GitHood vs aider

aider is great. GitHood is lighter, faster, and opinionated about simplicity.

Feature GitHood aider
AI code editing
Multi-provider (Grok / GPT / Claude / Ollama)
Interactive chat
Auto-fix from error / stderr~
Conventional Commits generation~
Full repo mapping
Auto test / lint runner
Token usage 🟢 Low 🔴 High
Setup complexity 🟢 Simple 🔴 Complex

GitHood — lighter, faster, fewer tokens. Perfect for daily Git workflow.

Up and running
in 60 seconds

01

Clone & install

$ git clone https://github.com/0ailab/GitHood
$ cd GitHood
$ python3 -m venv .venv && source .venv/bin/activate
$ pip install -e .
02

Set your API key

# Pick one (or more)
$ export XAI_API_KEY="your-xai-key"
$ export OPENAI_API_KEY="sk-..."
$ export ANTHROPIC_API_KEY="sk-ant-..."

# Or use config file
$ GitHood config set xai.api_key YOUR_KEY
03

Start shipping

$ git add .
$ GitHood commit        # AI commit message
$ GitHood review        # code review
$ GitHood fix "error"  # auto-fix bugs
$ GitHood chat          # interactive session

Ready to ship faster?

Open source. Free forever. No account required.