-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.json
More file actions
37 lines (37 loc) · 1.42 KB
/
Copy pathMANIFEST.json
File metadata and controls
37 lines (37 loc) · 1.42 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
{
"name": "dshub-plugin",
"description": "可复用的插件项目:pipeline(agent-first/article-lab 等)+ 独立插件(filelist 等),每个插件自带技能、确定性工具、Schema 与 DSH 运行时适配器。",
"license": "MIT",
"author": "Nuos",
"repository": "https://github.com/Nuos/dshub-plugin",
"python_requires": ">=3.9",
"pipelines": [
{
"id": "article-lab",
"version": "1.1.0",
"title": "Article Lab 微信公众号文章创作流水线",
"summary": "15 阶段文章创作、审核、微信 HTML 适配与发表历史去重管线(质量优先 v1.1)。",
"entry": "agent-first/article-lab/pipeline.yaml",
"skill": "agent-first/article-lab/SKILL.md",
"stages": 15,
"artifacts": 18,
"dsh_adapter": {
"host": "agent-first/article-lab/plugin-host.js",
"client": "agent-first/article-lab/plugin-client.js"
},
"requires": ["python3"],
"wechat": true
}
],
"plugins": [
{
"id": "filelist",
"title": "本地文件/目录输入列表",
"summary": "把本地文件/目录加入常驻列表,作为任务处理输入口;支持新增、删除、在系统文件管理器中一键打开(Mac/Windows/Linux)。",
"host": "filelist/plugin-host.js",
"client": "filelist/plugin-client.js",
"slot": "conversation.input.dock",
"platforms": ["mac", "windows", "linux"]
}
]
}