mirror of
https://github.com/dtzp555-max/ocp.git
synced 2026-07-21 21:15:09 +00:00
- Default timeout: 300s → 120s (CLAUDE_TIMEOUT) - New: first-byte timeout at 30s (CLAUDE_FIRST_BYTE_TIMEOUT) — aborts early if Claude CLI produces no stdout, triggering faster fallback - Pool disabled by default (POOL_SIZE=0) — on-demand spawning is now the default; set CLAUDE_POOL_SIZE>0 to re-enable - Health endpoint now reports timeout and firstByteTimeout values - Startup log shows pool mode (disabled/on-demand vs active) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
641 B
JSON
29 lines
641 B
JSON
{
|
|
"name": "openclaw-claude-proxy",
|
|
"version": "2.1.0",
|
|
"description": "OpenAI-compatible proxy that routes requests through Claude CLI \u2014 use your Claude Pro/Max subscription as an OpenClaw model provider",
|
|
"type": "module",
|
|
"bin": {
|
|
"openclaw-claude-proxy": "./server.mjs"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.mjs",
|
|
"setup": "node setup.mjs"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"claude",
|
|
"proxy",
|
|
"openai",
|
|
"anthropic"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dtzp555-max/openclaw-claude-proxy"
|
|
}
|
|
}
|