mirror of
https://github.com/dtzp555-max/ocp.git
synced 2026-07-19 09:44:07 +00:00
- Rework replenishPool to accept isCrash flag: initial fills spawn immediately with no delay; only crash-triggered respawns apply backoff - Exponential backoff on crash: 2s, 4s, 8s, 16s, 32s, capped at 60s - After 5 consecutive fast crashes (< 10s lived) within a 60s rolling window, mark model as "degraded" and stop all respawning to prevent CPU spin loops - Degraded state resets automatically if a subsequent spawn lives > 10s - stderr from crashed pool workers is captured and logged on exit - Bump version to 1.6.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
614 B
JSON
23 lines
614 B
JSON
{
|
|
"name": "openclaw-claude-proxy",
|
|
"version": "1.6.0",
|
|
"description": "OpenAI-compatible proxy that routes requests through Claude CLI — 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"
|
|
}
|
|
}
|