ForcePilot/backend/package/yuxi/channel/extensions/irc/plugin.json
Kris 061cc7076b feat(channel): 添加 IRC 渠道扩展插件
新增 IRC 渠道的完整扩展实现,包括客户端连接管理、消息收发与流式处理、安全策略与配对验证、消息去重与规范化、状态监控与健康探测、配置模型与账户管理、错误处理等模块。
2026-05-21 10:59:12 +08:00

29 lines
684 B
JSON

{
"id": "irc",
"name": "IRC",
"version": "1.0.0",
"label": "IRC",
"aliases": ["internet-relay-chat"],
"description": "IRC (Internet Relay Chat) channel plugin for ForcePilot",
"author": "ForcePilot",
"order": 80,
"dependencies": [],
"enabled": true,
"python_requires": ">=3.12",
"capabilities": {
"chat_types": ["direct", "group"],
"message_types": ["text"],
"reactions": false,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": false,
"reply": true,
"media": false,
"native_commands": false,
"polls": false,
"streaming": true,
"streaming_mode": "block",
"block_streaming": true
}
}