ForcePilot/backend/package/yuxi/channel/extensions/generic_webhook/plugin.json
Kris 71e90075e2 feat(generic-webhook): 新增通用Webhook管道插件
实现了完整的通用Webhook通道插件,支持入站请求接收、JSONPath字段映射、多种认证方式、出站Webhook推送,以及端点配置管理、去重、安全校验等功能
2026-05-21 10:47:58 +08:00

29 lines
888 B
JSON

{
"id": "generic-webhook",
"name": "通用 Webhook",
"version": "1.0.0",
"label": "通用 Webhook 管道",
"aliases": ["webhook-generic", "通用管道", "万能适配器"],
"description": "通用 Webhook 管道插件 — 支持 JSONPath 映射的入站 Webhook 接收与 Jinja2 模板出站推送",
"author": "ForcePilot Team",
"order": 85,
"dependencies": ["httpx", "jsonpath_ng", "jinja2"],
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text"],
"reactions": false,
"typing_indicator": false,
"threads": false,
"edit": false,
"unsend": false,
"reply": false,
"media": false,
"native_commands": false,
"polls": false,
"group_management": false,
"streaming": false
},
"enabled": true,
"python_requires": ">=3.12"
}