ForcePilot/backend/package/yuxi/channel/extensions/slack/plugin.json
Kris bfc7755137 feat(channel): 添加 Slack 渠道扩展
新增 Slack 渠道扩展,支持在 Yuxi 平台中集成 Slack 团队协作平台。

包含以下功能模块:
- config: 渠道配置管理
- gateway: SSE/WebSocket 网关接入
- outbound: 外发消息管理
- streaming: 流式消息处理
- pairing: 用户配对与绑定
- security: 安全校验
- monitor: 渠道状态监控
- status: 会话状态管理
- actions: 交互动作处理
- interactive: 交互式消息
- commands: 斜杠指令
- threading: 线程管理
- mentions: @提及
- constants: 常量定义
- types: 类型定义
2026-05-21 11:43:23 +08:00

32 lines
1.0 KiB
JSON

{
"id": "slack",
"name": "Slack",
"version": "0.1.0",
"label": "Slack",
"aliases": ["slack-bot"],
"description": "Slack channel plugin for ForcePilot — Socket Mode + Native Streaming",
"author": "ForcePilot",
"order": 60,
"dependencies": ["slack-sdk>=3.33.0", "slack-bolt>=1.20.0"],
"capabilities": {
"chat_types": ["direct", "channel", "thread"],
"message_types": ["text", "image", "file", "voice"],
"interactions": ["button", "select", "command", "modal", "datepicker", "timepicker", "radio", "checkbox"],
"reactions": true,
"threads": true,
"edit": true,
"unsend": true,
"reply": true,
"media": true,
"native_commands": true,
"pins": true,
"group_management": true,
"streaming": true,
"streaming_mode": "native",
"block_streaming": false,
"adaptive_cards": true,
"polling_fallback": false
},
"enabled": true,
"python_requires": ">=3.12"
}