mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-16 13:03:31 +08:00
This captures the pending worktree fixes before applying them to the current local main. The changes tighten IM adapter path and credential handling, preserve retry behavior for failed desktop notifications, and make Azure/OpenAI provider auth and stop reasons reflect actual runtime state. Constraint: Worktree was detached from an older local main with pending uncommitted fixes Rejected: Merge the detached HEAD directly | would also replay unrelated stale history Rejected: Leave notification dedupe as fire-and-forget | failed sends consumed retry keys Confidence: high Scope-risk: broad Directive: Keep adapter absolute-path matching constrained to configured work roots Tested: git diff --check Not-tested: full quality gate before local main integration
33 lines
828 B
JSON
33 lines
828 B
JSON
{
|
|
"name": "claude-code-im-adapters",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"telegram": "bun run telegram/index.ts",
|
|
"feishu": "bun run feishu/index.ts",
|
|
"wechat": "bun run wechat/index.ts",
|
|
"dingtalk": "bun run dingtalk/index.ts",
|
|
"test": "bun test",
|
|
"test:common": "bun test common/",
|
|
"test:telegram": "bun test telegram/",
|
|
"test:feishu": "bun test feishu/",
|
|
"test:wechat": "bun test wechat/",
|
|
"test:dingtalk": "bun test dingtalk/"
|
|
},
|
|
"dependencies": {
|
|
"@larksuiteoapi/node-sdk": "^1.60.0",
|
|
"dingtalk-stream": "2.1.4",
|
|
"grammy": "^1.42.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"overrides": {
|
|
"follow-redirects": "^1.16.0",
|
|
"protobufjs": "^7.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.5.0",
|
|
"bun-types": "latest"
|
|
}
|
|
}
|