mirror of
https://git.openapi.site/https://github.com/desirecore/registry.git
synced 2026-02-28 09:38:09 +08:00
feat: 补全注册表数据
- Apps: 3 → 8(+n8n, Coze, LobeChat, AnythingLLM, OpenClaw) - Services: 2 → 10(+8 个预置服务) - Descriptors: 3 → 18(+15 个服务描述符) - Categories: 4 → 6(+omni, action) - UI Config: 补全分类和状态配置 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,30 +4,42 @@
|
||||
{
|
||||
"id": "ai-platform",
|
||||
"label": "AI 平台",
|
||||
"icon": "cpu",
|
||||
"color": "var(--accent-purple)",
|
||||
"icon": "bot",
|
||||
"order": 1,
|
||||
"description": "AI 应用开发与编排平台"
|
||||
},
|
||||
{
|
||||
"id": "rag",
|
||||
"label": "RAG",
|
||||
"icon": "database",
|
||||
"color": "var(--accent-orange)",
|
||||
"icon": "book-open",
|
||||
"order": 2,
|
||||
"description": "检索增强生成系统"
|
||||
},
|
||||
{
|
||||
"id": "chat",
|
||||
"label": "对话",
|
||||
"icon": "message-circle",
|
||||
"id": "workflow",
|
||||
"label": "工作流",
|
||||
"color": "var(--accent-green)",
|
||||
"icon": "zap",
|
||||
"order": 3,
|
||||
"description": "对话界面与聊天工具"
|
||||
"description": "工作流自动化与编排"
|
||||
},
|
||||
{
|
||||
"id": "tools",
|
||||
"label": "工具",
|
||||
"color": "var(--accent-blue)",
|
||||
"icon": "wrench",
|
||||
"order": 4,
|
||||
"description": "实用工具与辅助软件"
|
||||
},
|
||||
{
|
||||
"id": "chat",
|
||||
"label": "对话",
|
||||
"color": "var(--accent-green)",
|
||||
"icon": "message-circle",
|
||||
"order": 5,
|
||||
"description": "对话界面与聊天工具"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -3,37 +3,62 @@
|
||||
"statusConfig": {
|
||||
"online": {
|
||||
"label": "在线",
|
||||
"color": "green",
|
||||
"color": "var(--accent-green)",
|
||||
"bg": "var(--accent-green)",
|
||||
"icon": "check-circle"
|
||||
},
|
||||
"offline": {
|
||||
"label": "离线",
|
||||
"color": "gray",
|
||||
"color": "var(--sys-tertiary)",
|
||||
"bg": "var(--sys-tertiary)",
|
||||
"icon": "minus-circle"
|
||||
},
|
||||
"degraded": {
|
||||
"label": "降级",
|
||||
"color": "var(--accent-orange)",
|
||||
"bg": "var(--accent-orange)",
|
||||
"icon": "alert-triangle"
|
||||
},
|
||||
"error": {
|
||||
"label": "错误",
|
||||
"color": "red",
|
||||
"label": "异常",
|
||||
"color": "var(--accent-red)",
|
||||
"bg": "var(--accent-red)",
|
||||
"icon": "alert-circle"
|
||||
},
|
||||
"starting": {
|
||||
"label": "启动中",
|
||||
"color": "blue",
|
||||
"icon": "loader"
|
||||
"disabled": {
|
||||
"label": "已禁用",
|
||||
"color": "var(--sys-tertiary)",
|
||||
"bg": "var(--sys-fill)",
|
||||
"icon": "slash"
|
||||
}
|
||||
},
|
||||
"protocolConfig": {
|
||||
"mcp": {
|
||||
"label": "MCP",
|
||||
"color": "var(--accent-purple)",
|
||||
"icon": "plug",
|
||||
"description": "Model Context Protocol"
|
||||
},
|
||||
"http": {
|
||||
"label": "HTTP",
|
||||
"color": "var(--accent-blue)",
|
||||
"icon": "globe",
|
||||
"description": "RESTful HTTP API"
|
||||
},
|
||||
"websocket": {
|
||||
"label": "WebSocket",
|
||||
"icon": "radio",
|
||||
"description": "WebSocket 实时通信"
|
||||
}
|
||||
},
|
||||
"originConfig": {
|
||||
"app": {
|
||||
"label": "应用提供",
|
||||
"color": "var(--accent-green)"
|
||||
},
|
||||
"manual": {
|
||||
"label": "手动注册",
|
||||
"color": "var(--accent-blue)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user