No download. No install. Just redirect two endpoints — then go to work.
1 Point your AI tool at OuterBot
Your personal AI proxy URL — copy it into your tool's API endpoint setting.
https://api.outer.bot/v2/loading…/
Easiest: paste this prompt directly into Claude Code and it will configure itself.
Please add OuterBot's proxy to my Claude Code settings. Add "env": { "ANTHROPIC_BASE_URL": "https://api.outer.bot/v2" } to my ~/.claude/settings.json, merging with any existing content.
Or add manually to ~/.claude/settings.json:
{
"env": {
"ANTHROPIC_BASE_URL": "https://api.outer.bot/v2"
}
}
# Cursor Settings → Models → API Base URL
https://api.outer.bot/v2/YOUR_TOKEN/
# Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.outer.bot/v2/YOUR_TOKEN/",
api_key="your-openai-key"
)
# Python
import anthropic
client = anthropic.Anthropic(
base_url="https://api.outer.bot/v2/YOUR_TOKEN/",
api_key="your-anthropic-key"
)
# Windsurf Settings → AI → Custom API endpoint
https://api.outer.bot/v2/YOUR_TOKEN/
2 Point your git remote at OuterBot (optional but recommended)
Every push automatically updates OuterBot's knowledge of your project. No webhooks, no setup — just change the remote URL.