- Create @llm-gateway/claude-code-bridge package - Support explain, refactor, test, document, fix commands - Automatic fallback to local Ollama when gateway unavailable - Health monitoring and confidence tracking - Comprehensive test suite covering all completion methods - Follows ADR-0005 agent integration protocol
32 lines
646 B
JSON
32 lines
646 B
JSON
{
|
|
"name": "@llm-gateway/claude-code-bridge",
|
|
"version": "1.0.0",
|
|
"description": "Claude Code IDE integration with LLM Gateway",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@llm-gateway/client": "workspace:*",
|
|
"@anthropic-sdk/sdk": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^1.0.0"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"code",
|
|
"llm",
|
|
"gateway",
|
|
"ide"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Rene Fichtmueller"
|
|
}
|