From 1f4035c2c3d83c5f63703537ed9b00af513bffe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=80=E3=80=85=E6=96=8E?= Date: Tue, 23 Jun 2026 09:35:28 +0000 Subject: [PATCH 1/2] refactor: normalize health check response shape (#8) --- apps/api/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 1648ba43fa..6786e88f78 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -8,7 +8,7 @@ const port = process.env.PORT || 4000; app.use(express.json()); app.get("/health", (_req, res) => { - res.json({ status: "ok", service: "taskflow-api" }); + res.json({ status: "ok", data: { service: "taskflow-api" } }); }); app.use("/users", usersRouter); From 966bcfbb133bd539d4aaa34b547261ad467cd6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=80=E3=80=85=E6=96=8E?= Date: Tue, 23 Jun 2026 09:35:35 +0000 Subject: [PATCH 2/2] chore: update agents.json for issue #8 --- contributors/agents.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/contributors/agents.json b/contributors/agents.json index a3fbd7156d..7a7e659432 100644 --- a/contributors/agents.json +++ b/contributors/agents.json @@ -1,5 +1,13 @@ { - "agents": [], - "last_updated": "2026-06-03", + "agents": [ + { + "github_username": "syu-toutousai", + "model": "opencode-agent", + "version": "1.0", + "pr_number": 0, + "issue_number": 8 + } + ], + "last_updated": "2026-06-23", "total_contributions": 0 -} +} \ No newline at end of file