|
| 1 | +{ |
| 2 | + "remote_skills": [ |
| 3 | + { |
| 4 | + "name": "docx", |
| 5 | + "display_name": "DOCX 文档处理", |
| 6 | + "description": "远程创建、编辑、分析 Word .docx 文档,支持修订、批注、格式保留和文本提取等专业文档任务。", |
| 7 | + "input_schema": { |
| 8 | + "type": "object", |
| 9 | + "properties": { |
| 10 | + "operation": { |
| 11 | + "type": "string", |
| 12 | + "enum": ["create", "edit", "analyze", "extract_text", "comment", "redline"], |
| 13 | + "description": "期望执行的文档操作" |
| 14 | + }, |
| 15 | + "input_files": { |
| 16 | + "type": "array", |
| 17 | + "items": {"type": "string"}, |
| 18 | + "description": "远端沙箱可访问的 .docx 文件路径或文件 URL" |
| 19 | + }, |
| 20 | + "output_requirements": { |
| 21 | + "type": "string", |
| 22 | + "description": "输出格式、命名、修订/批注等要求" |
| 23 | + } |
| 24 | + }, |
| 25 | + "required": ["operation"] |
| 26 | + }, |
| 27 | + "timeout_seconds": 1800 |
| 28 | + }, |
| 29 | + { |
| 30 | + "name": "pdf", |
| 31 | + "display_name": "PDF 处理", |
| 32 | + "description": "远程处理 PDF 文档,包括文本和表格提取、生成 PDF、合并拆分、表单识别与填写等批量 PDF 任务。", |
| 33 | + "input_schema": { |
| 34 | + "type": "object", |
| 35 | + "properties": { |
| 36 | + "operation": { |
| 37 | + "type": "string", |
| 38 | + "enum": ["extract", "create", "merge", "split", "fill_form", "analyze"], |
| 39 | + "description": "期望执行的 PDF 操作" |
| 40 | + }, |
| 41 | + "input_files": { |
| 42 | + "type": "array", |
| 43 | + "items": {"type": "string"}, |
| 44 | + "description": "远端沙箱可访问的 PDF 文件路径或文件 URL" |
| 45 | + }, |
| 46 | + "output_requirements": { |
| 47 | + "type": "string", |
| 48 | + "description": "输出文件、表格、表单字段或分析结果要求" |
| 49 | + } |
| 50 | + }, |
| 51 | + "required": ["operation"] |
| 52 | + }, |
| 53 | + "timeout_seconds": 1800 |
| 54 | + }, |
| 55 | + { |
| 56 | + "name": "pptx", |
| 57 | + "display_name": "PPTX 演示文稿处理", |
| 58 | + "description": "远程创建、编辑和分析 PowerPoint .pptx 演示文稿,支持版式、备注、批注、内容修改和结构化抽取。", |
| 59 | + "input_schema": { |
| 60 | + "type": "object", |
| 61 | + "properties": { |
| 62 | + "operation": { |
| 63 | + "type": "string", |
| 64 | + "enum": ["create", "edit", "analyze", "extract_text", "add_notes", "add_comments"], |
| 65 | + "description": "期望执行的演示文稿操作" |
| 66 | + }, |
| 67 | + "input_files": { |
| 68 | + "type": "array", |
| 69 | + "items": {"type": "string"}, |
| 70 | + "description": "远端沙箱可访问的 .pptx 文件路径或文件 URL" |
| 71 | + }, |
| 72 | + "output_requirements": { |
| 73 | + "type": "string", |
| 74 | + "description": "页数、风格、版式、备注或输出文件要求" |
| 75 | + } |
| 76 | + }, |
| 77 | + "required": ["operation"] |
| 78 | + }, |
| 79 | + "timeout_seconds": 1800 |
| 80 | + }, |
| 81 | + { |
| 82 | + "name": "xlsx", |
| 83 | + "display_name": "XLSX 表格处理", |
| 84 | + "description": "远程创建、编辑和分析电子表格,支持公式、格式、数据分析、可视化、模板保留和公式重算。", |
| 85 | + "input_schema": { |
| 86 | + "type": "object", |
| 87 | + "properties": { |
| 88 | + "operation": { |
| 89 | + "type": "string", |
| 90 | + "enum": ["create", "edit", "analyze", "visualize", "recalculate", "extract_data"], |
| 91 | + "description": "期望执行的表格操作" |
| 92 | + }, |
| 93 | + "input_files": { |
| 94 | + "type": "array", |
| 95 | + "items": {"type": "string"}, |
| 96 | + "description": "远端沙箱可访问的 .xlsx、.xlsm、.csv 或 .tsv 文件路径/URL" |
| 97 | + }, |
| 98 | + "output_requirements": { |
| 99 | + "type": "string", |
| 100 | + "description": "公式、格式、图表、分析维度或输出文件要求" |
| 101 | + } |
| 102 | + }, |
| 103 | + "required": ["operation"] |
| 104 | + }, |
| 105 | + "timeout_seconds": 1800 |
| 106 | + }, |
| 107 | + { |
| 108 | + "name": "tos-file-access", |
| 109 | + "display_name": "TOS 文件访问", |
| 110 | + "description": "远程上传文件或目录到 TOS 兼容对象存储,或从 URL 下载文件供沙箱后续处理。", |
| 111 | + "input_schema": { |
| 112 | + "type": "object", |
| 113 | + "properties": { |
| 114 | + "operation": { |
| 115 | + "type": "string", |
| 116 | + "enum": ["upload_file", "upload_directory", "download_file"], |
| 117 | + "description": "上传或下载操作" |
| 118 | + }, |
| 119 | + "paths_or_urls": { |
| 120 | + "type": "array", |
| 121 | + "items": {"type": "string"}, |
| 122 | + "description": "需要上传的沙箱路径,或需要下载的 URL" |
| 123 | + }, |
| 124 | + "output_requirements": { |
| 125 | + "type": "string", |
| 126 | + "description": "期望返回签名 URL、TOS 路径或本地保存路径" |
| 127 | + } |
| 128 | + }, |
| 129 | + "required": ["operation", "paths_or_urls"] |
| 130 | + }, |
| 131 | + "timeout_seconds": 1800 |
| 132 | + }, |
| 133 | + { |
| 134 | + "name": "skill-creator", |
| 135 | + "display_name": "Skill 创建与更新", |
| 136 | + "description": "远程指导创建或更新 Skill,包括需求澄清、内容规划、初始化、编辑、打包和快速校验。", |
| 137 | + "input_schema": { |
| 138 | + "type": "object", |
| 139 | + "properties": { |
| 140 | + "operation": { |
| 141 | + "type": "string", |
| 142 | + "enum": ["create", "update", "package", "validate", "review"], |
| 143 | + "description": "期望执行的 Skill 工作流" |
| 144 | + }, |
| 145 | + "skill_name": { |
| 146 | + "type": "string", |
| 147 | + "description": "要创建或更新的 Skill 名称" |
| 148 | + }, |
| 149 | + "requirements": { |
| 150 | + "type": "string", |
| 151 | + "description": "Skill 的触发场景、能力范围、资源和输出要求" |
| 152 | + } |
| 153 | + }, |
| 154 | + "required": ["operation"] |
| 155 | + }, |
| 156 | + "timeout_seconds": 1800 |
| 157 | + } |
| 158 | + ] |
| 159 | +} |
0 commit comments