feat: 初始化 DesireCore Registry 数据仓库

- 添加应用商店数据(Dify, RagFlow, Open WebUI)
- 添加服务注册表数据(Filesystem MCP, GitHub MCP)
- 添加服务描述符(chat, reasoning, embedding)
- 添加服务分类(language, voice, vision, vector)
- 添加 UI 配置文件
- 添加仓库元数据和说明文档

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-16 21:57:07 +08:00
commit b49809d4b0
9 changed files with 318 additions and 0 deletions

47
services/descriptors.json Normal file
View File

@@ -0,0 +1,47 @@
[
{
"id": "chat",
"version": "1.0.0",
"category": "language",
"display": {
"label": "主对话",
"shortLabel": "Chat",
"groupLabel": "Chat 模型",
"icon": "message-circle",
"description": "通用对话服务Agent 核心交互能力"
},
"modelFields": [],
"origin": "builtin",
"mutable": false
},
{
"id": "reasoning",
"version": "1.0.0",
"category": "language",
"display": {
"label": "推理",
"shortLabel": "Reason",
"groupLabel": "推理模型",
"icon": "brain",
"description": "复杂推理服务,适合深度思考和分析任务"
},
"modelFields": [],
"origin": "builtin",
"mutable": false
},
{
"id": "embedding",
"version": "1.0.0",
"category": "vector",
"display": {
"label": "向量化",
"shortLabel": "Embed",
"groupLabel": "Embedding",
"icon": "bar-chart-3",
"description": "文本向量化,用于语义搜索和检索"
},
"modelFields": [],
"origin": "builtin",
"mutable": false
}
]