Download & Install
Set up Claudible in your development environment. One-line install for quick setup, or manual configuration for custom needs.
1 Run install command
This will configure ANTHROPIC_BASE_URL, ANTHROPIC_AUTH_TOKEN, and update ~/.claude/settings.json
curl -fsSL "https://claudible.io/install.sh?key=YOUR_KEY" | sh
View script source — the script only sets environment variables and updates settings.json.
2 Restart your terminal
Source your shell profile to apply changes:
source ~/.bashrc # or ~/.zshrc
3 Start using Claude Code
You're all set! Run claude to start.
claude
1 Set environment variables
Add to ~/.bashrc or ~/.zshrc:
export ANTHROPIC_BASE_URL="https://claudible.io"
export ANTHROPIC_AUTH_TOKEN="YOUR_KEY"
2 Update settings.json
Create or edit ~/.claude/settings.json:
{
"env": {
"ANTHROPIC_BASE_URL": "https://claudible.io",
"ANTHROPIC_AUTH_TOKEN": "YOUR_KEY",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4.6",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4.6",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "claude-haiku-4.5"
},
"disableLoginPrompt": true
}
Pre-built agents, slash commands, and planning tools for Claude Code.
1 Install to current project
curl -fsSL "https://claudible.io/kit-install.sh" | bash
2 Install by tags
Research + Development:
curl -fsSL "https://claudible.io/kit-install.sh" | bash -s -- -research -development
All components:
curl -fsSL "https://claudible.io/kit-install.sh" | bash -s -- -all
See documentation for available tags and commands.
Telegram AI bot framework that connects to Claudible. Auto-generates ~/.openclaw/config.json.
1 Install & configure
curl -fsSL "https://claudible.io/openclaw-install.sh?key=YOUR_KEY" | sh
View script source — generates ~/.openclaw/config.json with your credentials.
2 Restart gateway
Restart OpenClaw to apply the new configuration:
openclaw gateway restart
Answer Engine (Web Search)
claude mcp add --transport http --scope user my-answer-engine https://claudible.io/mcp/answer-engine --header "Authorization: Bearer YOUR_KEY"
Context7 (Library Docs)
Get your API key from context7.com
claude mcp add --scope user context7 -- npx -y @upstash/context7-mcp --api-key YOUR_CONTEXT7_KEY
Remove Claudible configuration
curl -fsSL "https://claudible.io/uninstall.sh" | sh
Remove Claudible Kit
curl -fsSL "https://claudible.io/kit-uninstall.sh" | bash
Need help?
Check out the documentation or go to the dashboard to manage your key.