refactor: 清理废弃字段,同步 Schema 定义

- Agent 文件:删除 downloads、rating、ratingCount、installStatus、source
- Skill 文件:删除 downloads、rating、ratingCount、installStatus、source、version
- Skill 文件:新增 files 字段,指向配置文件路径
- 字段说明:source 和 installStatus 改为运行时计算

Refs: desirecore/desirecore#field-recovery
This commit is contained in:
2026-02-17 18:09:08 +08:00
parent b09592338c
commit 1a39d91249
11 changed files with 246 additions and 90 deletions

View File

@@ -5,23 +5,37 @@
"shortDesc": "本地文件系统的智能管理者,支持批量操作与内容分析",
"fullDesc": "文件管家为 Agent 提供安全的本地文件系统访问能力。支持文件读写、目录遍历、批量重命名、格式转换,以及基于内容的全文搜索。所有操作都在用户授权的沙箱内进行。\n\n功能特性\n- 文件操作:读写、复制、移动、删除(带回收站)\n- 批量处理:正则重命名、格式批量转换、目录同步\n- 内容分析:全文索引、重复文件检测、敏感信息扫描\n- 格式支持文本、图片、PDF、Office 文档、代码文件\n- 安全沙箱:路径白名单、操作审计、自动备份",
"category": "development",
"tags": ["文件管理", "批量处理", "全文搜索", "格式转换", "本地存储"],
"version": "2.4.1",
"tags": [
"文件管理",
"批量处理",
"全文搜索",
"格式转换",
"本地存储"
],
"latestVersion": "2.4.1",
"updatedAt": "2025-02-12",
"maintainer": {
"name": "DesireCore Official",
"verified": true
},
"downloads": 56720,
"rating": 4.6,
"ratingCount": 1876,
"installStatus": "not_installed",
"riskLevel": "high",
"requires": {
"tools": ["file_system", "image_processor", "pdf_parser", "text_extractor"],
"tools": [
"file_system",
"image_processor",
"pdf_parser",
"text_extractor"
],
"connections": []
},
"compatibleAgents": ["code-reviewer", "writing-coach", "data-analyst", "task-master"],
"changelog": "v2.4.1: 新增文件版本历史,支持回溯任意时间点的文件状态"
"compatibleAgents": [
"code-reviewer",
"writing-coach",
"data-analyst",
"task-master"
],
"changelog": "v2.4.1: 新增文件版本历史,支持回溯任意时间点的文件状态",
"files": {
"config": "skills/file-manager/skill.json"
}
}