ForcePilot/backend/package/yuxi/channel/extensions/flock/plugin.json
Kris 0bad70ec19 feat(flock): 新增Flock团队协作IM渠道插件
实现了完整的Flock渠道接入能力,包含消息收发、Webhook事件监听、账号配置、安全校验、媒体文件处理等功能,支持私聊和群组聊天,适配ForcePilot插件规范。
2026-05-21 10:47:01 +08:00

29 lines
810 B
JSON

{
"id": "flock",
"name": "Flock",
"version": "0.1.0",
"label": "Flock (团队协作 IM)",
"aliases": ["flockos"],
"description": "Flock channel plugin for ForcePilot — Webhook + REST API",
"author": "ForcePilot",
"order": 75,
"dependencies": ["httpx>=0.27.0"],
"capabilities": {
"chat_types": ["direct", "group"],
"message_types": ["text", "image", "file"],
"streaming": true,
"streaming_mode": "block",
"threads": true,
"reactions": false,
"edit": false,
"unsend": false,
"media": true,
"reply": true,
"native_commands": true,
"polls": false,
"typing_indicator": false,
"block_streaming": true
},
"enabled": true,
"python_requires": ">=3.12"
}