feat: 为 4 个 builtin 技能添加 skill.json 市场元数据

- create-agent: 创建智能体(元技能,medium 风险)
- delete-agent: 删除智能体(元技能,high 风险)
- discover-agent: 发现智能体(流程型,low 风险)
- update-agent: 更新智能体(元技能,high 风险)

使 market-sync 的 scanSkills() 能够索引这些技能,
在市场 UI 中正常展示。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 09:15:32 +08:00
parent 15e8d1f0c8
commit a787208db9
4 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"id": "update-agent",
"name": "更新智能体",
"icon": "user-cog",
"shortDesc": "安全更新智能体配置、人格、规则与技能,支持 diff 预览与版本回滚",
"fullDesc": "更新智能体是一个元技能,允许通过自然语言对话修改 Agent 的各项配置。所有修改都会生成可审阅的 diff 补丁,经用户确认后才会应用,并通过 Git 支持版本回滚。\n\n功能特性\n- 多维更新:支持 persona、principles、skills、memory、tools 等全方位修改\n- Diff 预览:变更以直观的 diff 形式展示,清晰明了\n- 风险分级:低/中/高/受保护四级,按风险等级要求不同确认流程\n- 受保护路径:核心身份与安全红线自动阻断修改\n- 版本回滚:通过 Git 管理版本历史,支持回滚到任意时间点",
"category": "productivity",
"tags": ["智能体", "更新", "元技能", "配置管理", "版本控制"],
"version": "1.1.0",
"latestVersion": "1.1.0",
"updatedAt": "2026-02-17",
"maintainer": {
"name": "DesireCore Official",
"verified": true
},
"downloads": 0,
"rating": 0,
"ratingCount": 0,
"installStatus": "not_installed",
"riskLevel": "high",
"requires": {
"tools": ["fetch_api"],
"connections": []
},
"compatibleAgents": [],
"changelog": "v1.1.0: 新增受保护路径检查与共享配置引用"
}