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:
2026-02-17 18:25:17 +08:00
parent b49809d4b0
commit efedf34991
7 changed files with 705 additions and 37 deletions

View File

@@ -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)"
}
}
}