Files
wechat-access-unqclawed/openclaw.plugin.json

43 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"id": "wechat-access-unqclawed",
"name": "WeChat Access",
"description": "微信通路插件 — 扫码登录 + AGP WebSocket 双向通信",
"version": "1.0.0",
"channels": ["wechat-access-unqclawed"],
"configSchema": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "是否启用服务号渠道"
},
"token": {
"type": "string",
"description": "WebSocket 连接 token手动配置时使用留空走扫码登录"
},
"wsUrl": {
"type": "string",
"description": "WebSocket 网关地址(留空使用环境默认值)"
},
"bypassInvite": {
"type": "boolean",
"description": "跳过邀请码验证"
},
"authStatePath": {
"type": "string",
"description": "自定义 token 持久化路径"
},
"environment": {
"type": "string",
"enum": ["production", "test"],
"description": "API 环境production / test"
},
"accounts": {
"type": "object",
"description": "多账号配置",
"additionalProperties": true
}
}
}
}