mirror of
https://git.openapi.site/https://github.com/desirecore/registry.git
synced 2026-02-28 09:38:09 +08:00
- 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>
65 lines
1.4 KiB
JSON
65 lines
1.4 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"statusConfig": {
|
|
"online": {
|
|
"label": "在线",
|
|
"color": "var(--accent-green)",
|
|
"bg": "var(--accent-green)",
|
|
"icon": "check-circle"
|
|
},
|
|
"offline": {
|
|
"label": "离线",
|
|
"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": "var(--accent-red)",
|
|
"bg": "var(--accent-red)",
|
|
"icon": "alert-circle"
|
|
},
|
|
"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)"
|
|
}
|
|
}
|
|
}
|