ForcePilot/backend/package/yuxi/channel/extensions/bluesky/plugin.json
Kris bb85da1ca2 feat(bluesky): 新增Bluesky (AT Protocol) 频道插件
实现了完整的Bluesky频道功能,支持私信轮询、@提及通知、账号会话管理、重复消息过滤、配对授权机制以及完整的API调用能力,包含配置schema和插件元数据定义
2026-05-21 10:40:50 +08:00

27 lines
742 B
JSON

{
"id": "bluesky",
"name": "Bluesky",
"version": "1.0.0",
"description": "Bluesky (AT Protocol) channel plugin for ForcePilot. Supports DM via chat.bsky.convo polling and public @mention interactions.",
"author": "ForcePilot",
"order": 101,
"enabled": true,
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text"],
"reactions": true,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": false,
"streaming": true,
"streaming_mode": "block_streaming",
"block_streaming": true,
"block_streaming_chunk_min_chars": 800,
"block_streaming_chunk_max_chars": 2000
}
}