feat(channels): add WeChat/Weixin channel support

- Add WeixinAdapter with accounts, api, login, monitor, send modules
- Add channel configure command for interactive setup
- Update TelegramAdapter for consistency

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
tanzhenxin 2026-03-25 06:54:51 +00:00
parent 90236465d3
commit 24c9b0f333
18 changed files with 954 additions and 21 deletions

View file

@ -0,0 +1,19 @@
{
"name": "@qwen-code/channel-weixin",
"version": "0.1.0",
"description": "WeChat (Weixin) channel adapter for Qwen Code",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./accounts": "./src/accounts.ts",
"./login": "./src/login.ts"
},
"dependencies": {
"@qwen-code/channel-base": "file:../base"
},
"devDependencies": {
"typescript": "^5.0.0"
}
}