ForcePilot/backend/package/yuxi/channel/extensions/bluebubbles/plugin.json
Kris b018e3eda4 feat(bluebubbles): 新增BlueBubbles(iMessage)渠道插件完整实现
该提交新增了完整的BlueBubbles渠道插件,支持通过BlueBubbles Server集成iMessage功能,包含以下核心能力:
1.  支持私聊和群聊会话管理,自动区分会话类型
2.  完整的消息收发支持,包括文本、图片、语音、文件、视频消息
3.  支持消息反应、已读回执、消息编辑与撤回
4.  内置去重、防抖处理机制
5.  支持Webhook和WebSocket两种事件接收方式
6.  完善的权限与安全校验机制
7.  历史消息同步与抓包功能
8.  TTS语音合成与发送支持
9.  群组管理能力,包括重命名、修改头像、增减成员等
2026-05-21 10:40:33 +08:00

36 lines
1.0 KiB
JSON

{
"id": "bluebubbles",
"name": "BlueBubbles (iMessage)",
"version": "0.1.0",
"description": "BlueBubbles channel plugin for iMessage integration via BlueBubbles Server, supporting direct and group chats with text, image, voice, file, video messages, reactions, effects, and TTS voice synthesis",
"author": "ForcePilot",
"order": 75,
"dependencies": ["httpx"],
"capabilities": {
"chat_types": ["direct", "group"],
"message_types": ["text", "image", "voice", "file", "video"],
"interactions": [],
"reactions": true,
"typing_indicator": true,
"threads": false,
"edit": true,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": false,
"group_management": true,
"streaming": true,
"block_streaming": true,
"effects": true,
"tts": {
"voice": {
"synthesisTarget": "audio-file",
"audioFileFormats": ["mp3", "caf", "audio/mpeg", "audio/x-caf"],
"preferAudioFileFormat": "caf"
}
}
},
"enabled": true
}