ForcePilot/backend/package/yuxi/channel/extensions/weibo/plugin.json
Kris 7215418610 feat(channel): 添加企业微信、微博、WhatsApp 和 Workplace 渠道扩展
新增企业微信、微博、WhatsApp、Workplace 四个渠道扩展。

企业微信渠道扩展主要模块:config, gateway, webhook, webhook_bot, outbound, streaming, pairing, security, crypto, dedupe, persistent_dedupe, card, directory, events, externalcontact, media, mentions, menu, message, oauth, status

微博渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, passive_reply, broadcast, message, menu, media, subscription, template, status

WhatsApp 渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, actions, monitor, status

Workplace 渠道扩展主要模块:config, gateway, webhook, outbound, streaming, pairing, security, dedupe, actions, challenge, groups, media, mentions, menu, monitor, persona, quick_reply, signature, subscriptions, template, threading, users, status
2026-05-21 12:01:56 +08:00

38 lines
1.2 KiB
JSON

{
"id": "weibo",
"name": "微博",
"version": "0.1.0",
"label": "微博",
"aliases": ["微博", "weibo"],
"description": "微博粉丝服务平台渠道插件,支持被动回调模式的消息收发",
"author": "ForcePilot Team",
"order": 70,
"dependencies": ["httpx"],
"resolve_reply_to_mode": "off",
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text", "image", "voice"],
"reactions": false,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": false,
"reply": false,
"media": true,
"effects": false,
"native_commands": false,
"polls": false,
"group_management": false,
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"block_streaming_chunk_min_chars": 200,
"block_streaming_chunk_max_chars": 900,
"block_streaming_chunk_break_preference": "paragraph",
"block_streaming_coalesce_min_chars": 80,
"block_streaming_coalesce_max_chars": 300,
"block_streaming_coalesce_idle_ms": 500
},
"enabled": true,
"python_requires": ">=3.12"
}