Quick Start
Get up and running in under a minute
Install Codi
git clone https://github.com/laynepenney/codi.git
cd codi
corepack enable
pnpm install && pnpm build
pnpm link --global
Configure your API key
# For Claude (default - uses Opus 4.5)
export ANTHROPIC_API_KEY="your-key-here"
# For OpenAI
export OPENAI_API_KEY="your-key-here"
# For Ollama (free, runs locally)
ollama pull llama3.2
# For Ollama Cloud (after signin)
ollama signin
Start coding with AI
# With Claude (default: Opus 4.5)
codi
# With OpenAI
codi --provider openai --model gpt-5
# With Ollama (local, free)
codi --provider ollama --model llama3.2
# With Ollama Cloud
codi --provider ollama-cloud --model llama3.2