mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
主要变更: - Skill Learning 闭环系统 (9/9 AC) - Opus 4.7 模型层接入 + adaptive thinking - Prompt 工程优化 (64 审计测试) - Agent Teams 简化门控 (默认启用) - Windows Terminal 后端修复 (EncodedCommand/WT_SESSION) - TF-IDF 技能搜索精准化 (字段加权/CJK 优化) - Autonomy 系统 (/autonomy 命令) - ACP 协议完整实现 - mock.module 泄漏修复 (CI 全绿) - 152+ lint/type 修复
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "acp-link",
|
|
"version": "2.0.0",
|
|
"description": "ACP proxy server that bridges WebSocket clients to ACP agents",
|
|
"author": "claude-code-best",
|
|
"type": "module",
|
|
"main": "./dist/server.js",
|
|
"types": "./dist/server.d.ts",
|
|
"bin": {
|
|
"acp-link": "dist/cli/bin.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ACP_RCS_URL=http://localhost:3000 ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts ccb-bun -- --acp",
|
|
"dev:remote": "ACP_RCS_URL=https://remote-control.claude-code-best.win/ ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts ccb-bun -- --acp",
|
|
"dev:manager": "ACP_RCS_URL=http://localhost:3000 ACP_RCS_TOKEN=test-my-key bun run src/cli/bin.ts --manager",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/selfsigned": "^2.0.4",
|
|
"@types/ws": "^8.18.1",
|
|
"@types/bun": "^1.3.12"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/sdk": "^0.19.0",
|
|
"@hono/node-server": "^1.13.8",
|
|
"@hono/node-ws": "^1.0.5",
|
|
"@stricli/auto-complete": "^1.2.4",
|
|
"@stricli/core": "^1.2.4",
|
|
"hono": "^4.7.0",
|
|
"pino": "^10.3.0",
|
|
"pino-pretty": "^13.1.3",
|
|
"selfsigned": "^5.5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"license": "MIT"
|
|
}
|