A proxy for popular AI Coding Assistants. The proxy adds a shared memory and monitors AI adoption. CodingProxy.com
- Shared memory across sessions and users
- Monitors usage and adoption of AI coding assistants
- Supports multiple AI coding assistants
- Easy to deploy and configure via Cloudflare Workers
- Make sure you have paid CloudFlare account, 5 USD per month
- Crate a new API key for Anthropic
- Click Deploy to Cloudflare button above
- Click create private repository in CloudFlare
- After the deploy a new private repository with this code will be created in your GitHub account
- Create a new queue in your CloudFlare account with name "coding-proxy"
- Update wrangler.jsonc with
"queues": {
"producers": [
{
"binding": "QUEUE_NEW_REQUESTS",
"queue": "coding-proxy"
}
],
"consumers": [
{
"queue": "coding-proxy",
"max_batch_size": 10,
"max_batch_timeout": 30,
"max_retries": 3
}
]
},
- Find url of newly created worker in your CloudFlare account
- Go to {url}/sign-up to create an account
- Enjoy!
- Create a new proxy in the app
- For Claude Code update .claude/settings.local.json with this:
{
"env": {
"ANTHROPIC_BASE_URL": "https://{url}/api/proxy/{api_key}/anthropic"
}
}
Upstream repository: https://github.com/shchahrykovich/coding-proxy