ForcePilot/backend/package/yuxi/channel/extensions/imessage/plugin.json
Kris 4d52f634fe feat(imessage): 新增iMessage渠道插件完整实现
该提交新增了基于BlueBubbles的iMessage渠道插件,支持单聊和群组消息,包含文本、图片、语音、文件和视频消息收发,支持消息编辑、撤回、回复、 reactions和输入状态提示,同时实现了账号配置、安全校验、配对授权、消息格式化与分片等完整功能。
2026-05-21 10:50:15 +08:00

27 lines
730 B
JSON

{
"id": "imessage",
"name": "iMessage",
"version": "1.0.0",
"description": "Apple iMessage channel plugin for direct and group messaging with text, image, voice, file and video support",
"author": "ForcePilot",
"order": 90,
"enabled": true,
"capabilities": {
"chat_types": ["direct", "group"],
"message_types": ["text", "image", "voice", "file", "video"],
"reactions": true,
"typing_indicator": true,
"threads": false,
"edit": true,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": false,
"streaming": false,
"block_streaming": false,
"block_streaming_chunk_min_chars": 2000,
"block_streaming_chunk_max_chars": 4000
}
}