ForcePilot/backend/package/yuxi/channel/extensions/alipay/plugin.json
Kris 71364ea579 feat(alipay): 新增支付宝渠道插件完整实现
实现了支付宝生活号渠道的完整功能,包括消息接收回调、发送、安全验证、去重、配对绑定、流式回复支持等完整能力。
2026-05-21 10:39:23 +08:00

29 lines
989 B
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": "alipay",
"name": "支付宝",
"version": "0.1.0",
"description": "支付宝生活号+渠道插件,支持 RSA2 签名认证、被动回调消息接收、客服消息发送。覆盖 P0+P1 适配器meta/capabilities/config/gateway/outbound/status/streaming/security/pairing/agentPrompt",
"author": "ForcePilot Team",
"order": 50,
"dependencies": ["httpx>=0.27.0", "cryptography>=42.0.0"],
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text", "image"],
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"reactions": false,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": true,
"reply": false,
"media": true,
"effects": false,
"native_commands": false,
"polls": false,
"group_management": false
},
"enabled": false,
"python_requires": ">=3.12"
}