ForcePilot/backend/package/yuxi/channel/extensions/farcaster/plugin.json
Kris 7c6186e9a4 feat(farcaster): 新增Farcaster去中心化社交协议通道插件
该提交完整实现了ForcePilot的Farcaster通道插件,包含:
1. 基础配置适配器与多账户支持
2. Neynar API客户端封装,带重试机制与签名验证
3. 消息去重处理模块
4. 网关服务与健康检查、轮询降级逻辑
5. Webhook回调端点与事件解析
6. 收发消息、 reactions、媒体发送等完整交互能力
7. 插件元数据与系统集成适配
2026-05-21 10:46:17 +08:00

28 lines
709 B
JSON

{
"id": "farcaster",
"name": "Farcaster",
"version": "1.0.0",
"description": "Farcaster decentralized social protocol channel plugin for ForcePilot",
"author": "ForcePilot",
"order": 105,
"enabled": true,
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text"],
"interactions": ["recast"],
"reactions": true,
"typing_indicator": false,
"threads": true,
"edit": false,
"unsend": true,
"reply": true,
"media": true,
"native_commands": false,
"polls": false,
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"block_streaming_chunk_min_chars": 240,
"block_streaming_chunk_max_chars": 300
}
}