Anythropic banner
zoubingwu zoubingwu

Anythropic

AI community

Description

Use any model in Anthropic tools like Claude Code and Claude Agent SDK

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Anythropic

Use Any model as Anthropic. Any-thropic is a proxy that makes any AI API work like Anthropic's Claude API. Perfect for using OpenAI compatible models in Claude Code.

**Any + Anthropic = anythropic**

Usage

Just set env variables, use `{worker_host}/{original_base_url}` format for your ANTHROPIC_BASE_URL.

[!NOTE] It is recommended to deploy to your own Cloudflare Worker for complete control and privacy. Or Use `anythropic.web7.workers.dev` if you prefer. We don't store or log anything now, and never will. Code is 100% open source

# for gemini
export ANTHROPIC_BASE_URL="https://anythropic.web7.workers.dev/generativelanguage.googleapis.com/v1beta/openai"
export ANTHROPIC_AUTH_TOKEN=your Gemini API key
export ANTHROPIC_MODEL="gemini-3-pro-preview"
export ANTHROPIC_SMALL_FAST_MODEL="gemini-2.5-flash"

# for openai
export ANTHROPIC_BASE_URL="https://anythropic.web7.workers.dev/api.openai.com"
export ANTHROPIC_AUTH_TOKEN=$OPENAI_API_KEY
export ANTHROPIC_MODEL=gpt-5
export ANTHROPIC_SMALL_FAST_MODEL=gpt-5-mini

# for copilot
export ANTHROPIC_BASE_URL="https://anythropic.web7.workers.dev/api.githubcopilot.com"
export ANTHROPIC_AUTH_TOKEN=you personal access token
export ANTHROPIC_MODEL=grok-code-fast-1
export ANTHROPIC_SMALL_FAST_MODEL=grok-code-fast-1

# for q/kiro
export ANTHROPIC_BASE_URL="https://anythropic.web7.workers.dev/q.us-east-1.amazonaws.com"
export ANTHROPIC_AUTH_TOKEN=your_kiro_token

Kiro Authentication Setup

For Amazon Q/Kiro, use `scripts/get_kiro_token.zsh` to get token

# Make the script executable (first time only)
chmod +x get_kiro_token.zsh

# Extract and set your tokens directly
source get_kiro_token.zsh

The script will automatically extract your token from the Kiro CLI database and then set all required environment variables.

Example usage in your `.zshrc`:

function cc_kiro() {
    get_kiro_token
    export ANTHROPIC_BASE_URL="$ANYTHROPIC_HOST/q.us-east-1.amazonaws.com"
    export ANTHR