File size: 1,079 Bytes
454f1d5 cc826a1 454f1d5 cc826a1 454f1d5 9bdc593 | 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 | {
"name": "doc",
"version": "1.0.0",
"description": "文档合并和拆分插件,支持md和txt文档的合并排序和按章节拆分",
"author": "System",
"ui_path": "/tool/doc",
"requirements": [],
"enabled": true,
"category": "utility",
"capabilities": ["document_processing", "merge", "split"],
"governance": {
"status": "active",
"handling_decision": "正常使用",
"dependency_risk": null
},
"ui": {
"type": "static"
},
"tools": [
{
"name": "merge_documents",
"display_name": "文档合并",
"purpose": "将多个文档合并为一个",
"applies_to": ["文档整理", "内容合并"],
"not_for": ["图片处理"],
"parameters": {
"documents": {
"type": "array",
"required": true,
"description": "文档列表"
}
},
"input_examples": [
{"documents": ["doc1.md", "doc2.md"]}
],
"output_examples": [
{"merged_doc": "merged.md"}
],
"common_errors": [],
"risk_level": "low"
}
]
}
|