A series of fixes for making GPT-5 reliable and effective with anyclaude. ## UX changes - Converts opaque OpenAI service errors into 429s so CC natively retries instead of failing. These are very common. - Rich debugging support via `ANYCLAUDE_DEBUG` - Supports specifying reasoning effort and service tier ## Codebase - Added CI ## Remaining issues - GPT-5 often fails to use the native tool calls. These failures seems intermittent.
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "anyclaude",
|
|
"version": "1.0.5",
|
|
"author": {
|
|
"name": "coder",
|
|
"email": "support@coder.com",
|
|
"url": "https://coder.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/coder/anyclaude"
|
|
},
|
|
"bin": {
|
|
"anyclaude": "./dist/main.js"
|
|
},
|
|
"devDependencies": {
|
|
"@ai-sdk/anthropic": "^2.0.1",
|
|
"@ai-sdk/azure": "^2.0.6",
|
|
"@ai-sdk/google": "^2.0.3",
|
|
"@ai-sdk/openai": "^2.0.6",
|
|
"@ai-sdk/xai": "^2.0.3",
|
|
"@types/bun": "latest",
|
|
"@types/json-schema": "^7.0.15",
|
|
"ai": "^5.0.8",
|
|
"json-schema": "^0.4.0",
|
|
"zod": "3.25.76"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"description": "Run Claude Code with OpenAI, Google, xAI, and others.",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "bun build --target node --outfile dist/main.js ./src/main.ts --format cjs --external ai --external @ai-sdk/* --external zod && node -e \"const fs=require('fs');const p='dist/main.js';fs.writeFileSync(p,'#!/usr/bin/env node\\n'+fs.readFileSync(p,'utf8'))\" && chmod +x dist/main.js",
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@types/yargs-parser": "^21.0.3",
|
|
"yargs-parser": "^22.0.0"
|
|
}
|
|
}
|