fix: add /api/healthz alias for gateway proxy health check

Gateway proxies /api/neko/healthz → /api/healthz on the agent,
but healthz was only on /healthz. Dashboard status bar showed
permanent Offline.

小橘 🍊(NEKO Team)
This commit is contained in:
2026-05-09 10:05:46 +00:00
parent 024dd8c1e8
commit e0577ceefe
@@ -38,6 +38,7 @@ export function createApp(storageRoot: string): Hono {
});
app.get("/healthz", (c) => c.json({ ok: true }));
app.get("/api/healthz", (c) => c.json({ ok: true }));
app.route("/api/workflows", createWorkflowRoutes(storageRoot));
app.route("/api/threads", createThreadRoutes(storageRoot));