-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.json
More file actions
49 lines (49 loc) · 1.96 KB
/
Copy pathplugins.json
File metadata and controls
49 lines (49 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"hub_name": "VabHub Official Plugin Hub",
"hub_version": 1,
"plugins": [
{
"id": "hello-world",
"name": "Hello World 示例插件",
"summary": "用于文档示例的条目,不代表实际可安装插件。",
"description": "此条目仅作为文档示例使用,实际插件实现可在未来单独仓库中提供。主要用于演示 plugins.json 的标准写法和字段结构。",
"version": "0.1.0",
"repo_url": "https://github.com/strmforge/vabhub-plugin-hello-world",
"author_name": "VabHub 官方",
"author_url": "https://github.com/strmforge",
"channel": "official",
"tags": ["example", "docs-only", "hello-world"],
"homepage": null,
"readme_url": null,
"extra": {}
},
{
"id": "vabhub-hello-world",
"name": "Hello World 示例插件",
"summary": "演示 Search / BotCommand / UI Panel 等扩展点的官方示例插件",
"description": "这是一个官方示例插件,用于演示 VabHub 插件系统的各种扩展点功能,包括搜索扩展、Bot 命令扩展和 UI 面板扩展等。开发者可以参考此插件的实现来了解如何开发自己的插件。",
"version": "0.1.0",
"repo_url": "https://github.com/strmforge/vabhub-hello-world",
"author_name": "VabHub 官方",
"author_url": "https://github.com/strmforge",
"channel": "official",
"tags": ["official", "example", "demo"],
"features": ["search", "bot_commands", "ui_panels"],
"homepage": "https://github.com/strmforge/vabhub-plugins",
"readme_url": "https://raw.githubusercontent.com/strmforge/vabhub-hello-world/main/README.md",
"extra": {
"min_core_version": "0.9.0",
"enabled_by_default": false,
"supports": {
"search": true,
"bot_commands": true,
"ui_panels": true,
"workflows": false
},
"panels": [
"home_dashboard"
]
}
}
]
}