fix: routing-map.json 添加 domains 字段 + 接口 method 属性 (修复 brain health scan ⚠️→✅)
Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com> Agent-Logs-Url: https://github.com/qinfendebingshuo/guanghulab/sessions/f580d17d-c639-48c6-919c-45818ce8ac08
This commit is contained in:
parent
4de170552d
commit
9afa28bf69
|
|
@ -31,6 +31,38 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"domains": {
|
||||||
|
"AUTH": {
|
||||||
|
"route_prefix": "/hli/auth",
|
||||||
|
"interfaces": [
|
||||||
|
{ "id": "HLI-AUTH-001", "path": "/hli/auth/login", "method": "POST", "status": "active" },
|
||||||
|
{ "id": "HLI-AUTH-002", "path": "/hli/auth/register", "method": "POST", "status": "active" },
|
||||||
|
{ "id": "HLI-AUTH-003", "path": "/hli/auth/verify", "method": "POST", "status": "active" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"BRAIN": {
|
||||||
|
"route_prefix": "/hli/brain",
|
||||||
|
"interfaces": [
|
||||||
|
{ "id": "HLI-BRAIN-001", "path": "/hli/brain/prompt", "method": "POST", "status": "active" },
|
||||||
|
{ "id": "HLI-BRAIN-002", "path": "/hli/brain/route", "method": "POST", "status": "active" },
|
||||||
|
{ "id": "HLI-BRAIN-003", "path": "/hli/brain/context", "method": "GET", "status": "active" },
|
||||||
|
{ "id": "HLI-BRAIN-004", "path": "/hli/brain/memory", "method": "GET", "status": "active" },
|
||||||
|
{ "id": "HLI-BRAIN-010", "path": "/hli/brain/bridge", "method": "POST", "status": "active" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"REGISTRY": {
|
||||||
|
"route_prefix": "/hli/registry",
|
||||||
|
"interfaces": [
|
||||||
|
{ "id": "HLI-REGISTRY-001", "path": "/hli/registry/lookup", "method": "GET", "status": "active" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"NOTIFICATION": {
|
||||||
|
"route_prefix": "/hli/notification",
|
||||||
|
"interfaces": [
|
||||||
|
{ "id": "HLI-NOTIF-001", "path": "/hli/notification/push", "method": "POST", "status": "pending" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"sovereignty_routing": {
|
"sovereignty_routing": {
|
||||||
"version": "2.0",
|
"version": "2.0",
|
||||||
"description": "分布式主权共生架构路由",
|
"description": "分布式主权共生架构路由",
|
||||||
|
|
|
||||||
|
|
@ -35,8 +35,8 @@
|
||||||
},
|
},
|
||||||
"brain_health": {
|
"brain_health": {
|
||||||
"memory_fresh": true,
|
"memory_fresh": true,
|
||||||
"routing_map_aligned": false,
|
"routing_map_aligned": true,
|
||||||
"routing_map_issue": "缺少 domains 字段",
|
"routing_map_fix_applied": "添加 domains 字段(AUTH/BRAIN/REGISTRY/NOTIFICATION 4域 10接口)",
|
||||||
"dev_status_fresh": true,
|
"dev_status_fresh": true,
|
||||||
"knowledge_base_ok": true,
|
"knowledge_base_ok": true,
|
||||||
"copilot_instructions_ok": true
|
"copilot_instructions_ok": true
|
||||||
|
|
|
||||||
|
|
@ -13,10 +13,9 @@
|
||||||
|
|
||||||
"skyeye_scan": {
|
"skyeye_scan": {
|
||||||
"version": "scripts/skyeye/skyeye-main.js v3.0 (6 guards)",
|
"version": "scripts/skyeye/skyeye-main.js v3.0 (6 guards)",
|
||||||
"guards_passed": "4/6",
|
"guards_passed": "5/6",
|
||||||
"red_alerts": [
|
"red_alerts": [
|
||||||
"external-bridges: NOTION_TOKEN 未配置",
|
"external-bridges: NOTION_TOKEN 未配置(CI环境限制,非代码问题)"
|
||||||
"brain-health: routing-map 缺少 domains 字段"
|
|
||||||
],
|
],
|
||||||
"workflow_health": {
|
"workflow_health": {
|
||||||
"total": 102,
|
"total": 102,
|
||||||
|
|
@ -47,6 +46,7 @@
|
||||||
"fixes_applied": [
|
"fixes_applied": [
|
||||||
"生成天眼全局诊断报告 signal-log/skyeye-diag-site-20260326.json",
|
"生成天眼全局诊断报告 signal-log/skyeye-diag-site-20260326.json",
|
||||||
"更新信号日志索引 signal-log/index.json",
|
"更新信号日志索引 signal-log/index.json",
|
||||||
|
"修复 routing-map.json 缺少 domains 字段 → 添加 AUTH/BRAIN/REGISTRY/NOTIFICATION 4域 10接口",
|
||||||
"生成 SYSLOG 回执"
|
"生成 SYSLOG 回执"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue