Installation
How to install GitBot on your system
Installation
GitBot requires Rust to build from source.
Quick Install
git clone https://github.com/DecOperations/GitBot.WTF.git
cd GitBot.WTF/apps/cli
./scripts/install.sh
Manual Install with Cargo
If you already have Cargo installed:
git clone https://github.com/DecOperations/GitBot.WTF.git
cd GitBot.WTF
cargo install --path apps/cli
Verify Installation
gitbot --version
gitbot --help
API Key Setup
GitBot uses the Anthropic API (Claude) to answer questions. You'll need an API key:
- Get a key at console.anthropic.com
- Set it up:
# Option 1: Environment variable
export ANTHROPIC_API_KEY=sk-ant-...
# Option 2: GitBot config
gitbot config set-api-key
GitBot will prompt you for the key on first run if not configured.